PDA

View Full Version : Center your bookmarks


Nintendo-Daily
01-13-2010, 01:24 AM
How can I center my bookmarks? By default, they are left justified. Any help is greatly appreciated.

https://vborg.vbsupport.ru/external/2010/01/48.png

Nintendo-Daily
01-14-2010, 09:53 PM
Bump...

Digital Jedi
01-15-2010, 02:47 AM
Try editing the showthread_bookmarks template.

Hell Bomb
01-15-2010, 02:41 PM
Try editing the showthread_bookmarks template.

Same thing as him but add the align="center"

Trip
01-15-2010, 06:13 PM
Try this...

Open up showthread template and search for bookmark you should see something like this
<if condition="$bookmarksites">
<!-- social bookmarking links -->
<br />
<table cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" class="tborder" align="center">
<tr>
<td class="thead">$vbphrase[bookmarks]</td>
</tr>
<tr>
<td class="alt2" align="center" style="padding-top:0px"><div style="clear:both"></div><ul style="list-style-type:none; margin:0px; padding:0px">$bookmarksites</ul><div style="clear:both"></div></td>
</tr>
</table>
<!-- / social bookmarking links -->

Try jamming what I highlighted in red into that string of code. I never tested it but it's just crazy enough to work ;)

Nintendo-Daily
01-15-2010, 09:55 PM
Try this...

Open up showthread template and search for bookmark you should see something like this
<if condition="$bookmarksites">
<!-- social bookmarking links -->
<br />
<table cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" class="tborder" align="center">
<tr>
<td class="thead">$vbphrase[bookmarks]</td>
</tr>
<tr>
<td class="alt2" align="center" style="padding-top:0px"><div style="clear:both"></div><ul style="list-style-type:none; margin:0px; padding:0px">$bookmarksites</ul><div style="clear:both"></div></td>
</tr>
</table>
<!-- / social bookmarking links -->

Try jamming what I highlighted in red into that string of code. I never tested it but it's just crazy enough to work ;)

YAY! That worked! Thanks so much everyone!