inherit
207582
0
Jul 25, 2014 12:44:08 GMT -8
Vickie85
24
April 2014
vickie85
|
Post by Vickie85 on Apr 6, 2014 13:35:46 GMT -8
Hello! I am trying to move the quote, edit, like, and settings buttons to the bottom of each post instead of the top. In fact that whole top bar with the time and who like(s) the post. I want where it says last edit and the hour to be right above the buttons. I tried moving certain things in the css editor but it always came out wrong. Any and all help is greatly appreciated!
Forum URL: gounlimited.boards.net
|
|
#eb7100
33409
0
1
Oct 19, 2024 14:37:42 GMT -8
Brian
48,130
November 2004
smashmaster3
|
Post by Brian on Apr 6, 2014 13:40:40 GMT -8
|
|
inherit
207582
0
Jul 25, 2014 12:44:08 GMT -8
Vickie85
24
April 2014
vickie85
|
Post by Vickie85 on Apr 6, 2014 13:43:42 GMT -8
Oh I'm sorry! I'm very new here, so I thought support was where I needed to go! Ah we'll I'll go there instead then! Thanks
|
|
inherit
206046
0
Jan 21, 2016 8:34:30 GMT -8
SollyStartles
60
February 2014
sollystartles
|
Post by SollyStartles on Apr 6, 2014 13:44:08 GMT -8
As Brian stated, this would be better to post on the 'Templates' board, since it revolves around moving HTML and fancy stuff like that.
|
|
inherit
207582
0
Jul 25, 2014 12:44:08 GMT -8
Vickie85
24
April 2014
vickie85
|
Post by Vickie85 on Apr 6, 2014 13:49:50 GMT -8
Are you able to move this thread to the templates board? I'm sorry to be a pest
|
|
#eb7100
33409
0
1
Oct 19, 2024 14:37:42 GMT -8
Brian
48,130
November 2004
smashmaster3
|
Post by Brian on Apr 6, 2014 13:51:42 GMT -8
I moved it to the template request board.
|
|
inherit
207582
0
Jul 25, 2014 12:44:08 GMT -8
Vickie85
24
April 2014
vickie85
|
Post by Vickie85 on Apr 11, 2014 5:42:52 GMT -8
Someone? Please help me here, no matter what I try I can't get the buttons to come out right..
|
|
inherit
209486
0
Mar 6, 2016 15:03:59 GMT -8
T.C.
2,614
May 2014
tacochuck
|
Post by T.C. on Jul 8, 2014 20:03:34 GMT -8
Move Buttons (Quote, Edit, etc) Below Posts in Threads
Admin > Themes > Layout Templates > Thread > Post List
On line 20 you should see: <div class="controls">
And on line 25 you should see: </div>
Highlight lines 20 - 25. Use ctrl+c to copy it, then use backspace or delete to remove it.
Now go down to line 34 and you will see {/if}, place your cursor after that and press enter. Now ctrl+v to paste.
You should hopefully now have:
{/if}
<div class="controls">
$[post.quote_button]
$[post.edit_button]
$[post.likes.button]
$[post.select_options]
</div>
Now we need to add a float and margin to the first part from line 20.
Add the following parts in green:
<div style="margin-top: 10px;" class="float-right controls">
So now you should have:
<div style="margin-top: 10px;" class="float-right controls">
$[post.quote_button]
$[post.edit_button]
$[post.likes.button]
$[post.select_options]
</div>
And finally, click on the save button.
|
|
inherit
207582
0
Jul 25, 2014 12:44:08 GMT -8
Vickie85
24
April 2014
vickie85
|
Post by Vickie85 on Jul 18, 2014 20:11:22 GMT -8
Move Buttons (Quote, Edit, etc) Below Posts in Threads
Admin > Themes > Layout Templates > Thread > Post List On line 20 you should see: <div class="controls"> And on line 25 you should see: </div> Highlight lines 20 - 25. Use ctrl+c to copy it, then use backspace or delete to remove it. Now go down to line 34 and you will see {/if}, place your cursor after that and press enter. Now ctrl+v to paste. You should hopefully now have: {/if} <div class="controls"> $[post.quote_button] $[post.edit_button] $[post.likes.button] $[post.select_options] </div> Now we need to add a float and margin to the first part from line 20. Add the following parts in green: <div style="margin-top: 10px;" class= "float-right controls"> So now you should have: <div style="margin-top: 10px;" class= "float-right controls"> $[post.quote_button] $[post.edit_button] $[post.likes.button] $[post.select_options] </div> And finally, click on the save button. Wow I so wasn't expecting a reply to this a few mths later! As soon as I get to a computer I'll try this! Thank you so much for the suggestion!
|
|