inherit
142718
0
Aug 26, 2024 21:33:45 GMT -8
Tiffamu
187
July 2009
tiffamu
|
Post by Tiffamu on Mar 7, 2017 17:55:14 GMT -8
Hello! I have my tabbed sidebar and I want to add another tab, but they're all getting squished together and I don't know how to make them two rows. If I add anything they just collide together. merwinproject.proboards.com/I would like to make them two rows of 3 if possible. Thank you.
|
|
#e61919
Support Staff
224482
0
1
Nov 22, 2024 17:59:24 GMT -8
Scott
“Asking for help isn't giving up... it's refusing to give up.”
24,521
August 2015
socalso
|
Post by Scott on Mar 9, 2017 9:38:11 GMT -8
Tiffamu , If you go to your Forum Wrapper layout template, line 47, you will see this: <ul class="tabs"> <li><a href="javascript:void(0);">HOME</a></li> <li><a href="javascript:void(0);">INFO</a></li> <li><a href="javascript:void(0);">STAFF</a></li> <li><a href="javascript:void(0);">LINKS</a></li> </ul>
You'll want to make a 'new list' for each row. So to split the above into two rows, the code would look like this: <ul class="tabs"> <li><a href="javascript:void(0);">HOME</a></li> <li><a href="javascript:void(0);">INFO</a></li> </ul> <ul class="tabs"> <li><a href="javascript:void(0);">STAFF</a></li> <li><a href="javascript:void(0);">LINKS</a></li> </ul>
|
|
inherit
142718
0
Aug 26, 2024 21:33:45 GMT -8
Tiffamu
187
July 2009
tiffamu
|
Post by Tiffamu on Mar 9, 2017 12:58:52 GMT -8
Oh! Okay thank you!
|
|