inherit
260295
0
Aug 6, 2020 8:45:57 GMT -8
lololark
10
January 2020
lololark
|
Post by lololark on Jan 28, 2020 17:34:05 GMT -8
Hello, is there a way to move the Edit, Quote and Like buttons to the bottom of each post?
Thanks.
|
|
inherit
252032
0
Apr 26, 2024 23:51:41 GMT -8
Retread
Tribbial Pursuit.
5,017
January 2018
retread
|
Post by Retread on Jan 29, 2020 9:35:24 GMT -8
Hello, is there a way to move the Edit, Quote and Like buttons to the bottom of each post? Thanks. Yes. From your Admin panel, navigate: Admin Home> Themes> Layout Templates, then click on the Post List tab. In a stock layout template for Post List, you'll find the variables $[post.quote_button], $[post.edit_button], and $[post.likes.button] on lines 21~23. Remove those and place them wherever you like, but be sure to NOT place them within an {if}{/if} section. It would also be a good idea to wrap them in a div with a new class name so you can have some control of how they're being displayed. For instance, you might place: <div class="controls-2">$[post.quote_button]$[post.edit_button]$[post.likes.button]</div> after the existing line: <td class="foot"> Then add this to the bottom of the Style Sheet for the same theme: /* Move relocated buttons to the right side */ .posts .post .foot .controls-2 {float:right; border-collapse:separate; margin:0px 5px 0px 10px;} .posts .post .foot .signature {clear:right;}
|
|
inherit
260295
0
Aug 6, 2020 8:45:57 GMT -8
lololark
10
January 2020
lololark
|
Post by lololark on Jan 29, 2020 16:57:21 GMT -8
Thanks a lot, you're a life saver!
|
|
inherit
260295
0
Aug 6, 2020 8:45:57 GMT -8
lololark
10
January 2020
lololark
|
Post by lololark on Jan 29, 2020 19:52:56 GMT -8
When I try to add the last part to the style sheet, I just get a Syntax error.
naberriefields.freeforums.net
|
|
inherit
252032
0
Apr 26, 2024 23:51:41 GMT -8
Retread
Tribbial Pursuit.
5,017
January 2018
retread
|
Post by Retread on Jan 29, 2020 20:51:54 GMT -8
When I try to add the last part to the style sheet, I just get a Syntax error. naberriefields.freeforums.net Ooops! I had an extraneous semicolon in there. I edited that post and removed it. Try it now.
|
|
inherit
260295
0
Aug 6, 2020 8:45:57 GMT -8
lololark
10
January 2020
lololark
|
Post by lololark on Jan 30, 2020 10:33:07 GMT -8
Ah, no worries, thanks a lot for the help!
|
|
inherit
260949
0
Jun 23, 2022 4:22:23 GMT -8
freedomtochoose
6
April 2020
freedomtochoose
|
Post by freedomtochoose on Jun 21, 2022 2:04:02 GMT -8
Hello, is there a way to move the Edit, Quote and Like buttons to the bottom of each post? Thanks. Yes. From your Admin panel, navigate: Admin Home> Themes> Layout Templates, then click on the Post List tab. In a stock layout template for Post List, you'll find the variables $[post.quote_button], $[post.edit_button], and $[post.likes.button] on lines 21~23. Remove those and place them wherever you like, but be sure to NOT place them within an {if}{/if} section. It would also be a good idea to wrap them in a div with a new class name so you can have some control of how they're being displayed. For instance, you might place: <div class="controls-2">$[post.quote_button]$[post.edit_button]$[post.likes.button]</div> after the existing line: <td class="foot"> Then add this to the bottom of the Style Sheet for the same theme: /* Move relocated buttons to the right side */ .posts .post .foot .controls-2 {float:right; border-collapse:separate; margin:0px 5px 0px 10px;} .posts .post .foot .signature {clear:right;} I am sorry but I am not a technical guy, I am almost 71 years old. I do have some know-how but not much. Can you or anyone please tell me how to do this? Where to put the code? All I want to do is put the top button at the bottom. Thank you in advance.
|
|
#e61919
Support Staff
224482
0
Member is Online
1
Nov 22, 2024 10:39:27 GMT -8
Scott
“Asking for help isn't giving up... it's refusing to give up.”
24,512
August 2015
socalso
|
Post by Scott on Jul 1, 2022 7:03:19 GMT -8
freedomtochoose - Are you referring to the 'back to top' button? That's from the Back to Top plugin. In the plugin's settings there is the option for the vertical position. From the dropdown selector choose bottom. (And make sure to click the Save Changes button.)
|
|