The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#11
|
||||
|
||||
It's probably because you misspelled "align". right now I see 2 "algin".
I'll check back later today. It's 3:14am here. |
#12
|
|||
|
|||
Yeah I was in zombie mode last night to. That did work but it didnt center it as much as i would like. It was more like it tabbed it out then anything.
|
#13
|
||||
|
||||
nice
|
#14
|
|||
|
|||
Quote:
|
#15
|
||||
|
||||
You won't be able to center the Admin text exactly if there's a left and right <td> tag in the same row. The reason is that the right column is taking up a bit of space. What's being centered is the left column only; which is relative to the size of your screen.
One way to achieve what you want is to use just one <td> in the row and separate the Admin text and link with " " or left-padding. The other is to use absolute positioning with CSS. |
#16
|
|||
|
|||
Could you possibly show me? :$ I tried the " " but it would take me like 50 of them to achieve the alignments i want.
I really cant thank you enough for taking so much time on this. You have been a great help. |
#17
|
||||
|
||||
Change:
Code:
<table class="tborder" algin="center" border="0" cellpadding="6" cellspacing="0" width="100%"> <tbody> <tr> <td class="tcat" algin="center"> Notice from the ADMINS!</td> <td class="tcat" align="right"><a href="http://www.domsforums.net/profile.php?do=editoptions">Click Here To Disable Marquee</A> </td> </tr> </tbody> <tbody id="collapseobj_forumhome_welcomepanel" style=""> <tr> <td class="alt1" align="center" width="100%" colspan="2"> <if condition="!is_member_of($bbuserinfo, 3)"> <marquee>$vboptions[fhx2h]</marquee></if><if condition="is_member_of($bbuserinfo, 3)"><font size="6"> <MARQUEE>PLEASE CHECK YOUR EMAIL FOR THE LINK TO ACTIVATE YOUR ACCOUNT. IT MUST THEN BE APROVED BY AN ADMIN BEFORE YOU CAN POST!!!</MARQUEE></font></if> </td> </tr> </tbody> </table> Code:
<table class="tborder" align="center" border="0" cellpadding="6" cellspacing="0" width="100%"> <tbody> <tr> <td class="tcat" align="center"> <ul class="txtspacer"> <li>Notice from the ADMINS!</li> <li><a href="http://www.domsforums.net/profile.php?do=editoptions" title="Disable Marquee">Click Here To Disable Marquee</a></li> </ul> </td> </tr> </tbody> <tbody id="collapseobj_forumhome_welcomepanel"> <tr> <td class="alt1" align="center" width="100%" colspan="2"> <if condition="!is_member_of($bbuserinfo, 3)"><marquee>$vboptions[fhx2h]</marquee></if><if condition="is_member_of($bbuserinfo, 3)"><span style="font-size:15px"><marquee>PLEASE CHECK YOUR EMAIL FOR THE LINK TO ACTIVATE YOUR ACCOUNT. IT MUST THEN BE APROVED BY AN ADMIN BEFORE YOU CAN POST!!!</marquee></span></if> </td> </tr> </tbody> </table> Code:
ul { margin:0; padding:0; } ul.txtspacer li { margin:0; padding-left:10px; display:inline; } |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|