The Arcive of vBulletin Modifications Site. |
|
|
#1
|
|||
|
|||
|
Anyone available for a quick question? I need to center a header graphic and it's got me flummoxed. Yeah I'm a newb
|
|
#2
|
||||
|
||||
|
<div align="center">{image}</div> should work
|
|
#3
|
|||
|
|||
|
I think this is the code that is affecting it?:
Code:
<!-- logo --> <a name="top"></a> <table border="0" width="$stylevar[outertablewidth]" cellpadding="0" cellspacing="0" align="center"> <tr> <td align="$stylevar[left]"><a href="$vboptions[forumhome].php$session[sessionurl_q]"><img src="$stylevar[titleimage]" border="0" alt="$vboptions[bbtitle]" /></a></td> <td align="$stylevar[right]"> </td> </tr> </table> <!-- /logo --> Code:
<td align="$stylevar[left]"> Code:
<td align="$stylevar[right]"> |
|
#4
|
|||
|
|||
|
Simply replace the above with align="center". You can also drop the align="" altogether and replace it with style="text-align: center;" and it will work just the same
.
|
|
#5
|
|||
|
|||
|
Quote:
|
|
#6
|
|||
|
|||
|
Replace the align="" with either align="center" or style="text-align: center;"
|
|
#7
|
||||
|
||||
|
Quote:
|
|
#8
|
|||
|
|||
|
Quote:
Nope that didn't work. |
|
#9
|
||||
|
||||
|
It should if you have only one <td> tag. Try replacing:
Code:
<!-- logo --> <a name="top"></a> <table border="0" width="$stylevar[outertablewidth]" cellpadding="0" cellspacing="0" align="center"> <tr> <td align="$stylevar[left]"><a href="$vboptions[forumhome].php$session[sessionurl_q]"><img src="$stylevar[titleimage]" border="0" alt="$vboptions[bbtitle]" /></a></td> <td align="$stylevar[right]"> </td> </tr> </table> <!-- /logo --> Code:
<!-- logo --> <a name="top"></a> <table border="0" width="$stylevar[outertablewidth]" cellpadding="0" cellspacing="0" align="center"> <tr> <td style="text-align:center"><a href="$vboptions[forumhome].php$session[sessionurl_q]"><img src="$stylevar[titleimage]" border="0" alt="$vboptions[bbtitle]" /></a></td> </tr> </table> <!-- /logo --> |
|
#10
|
|||
|
|||
|
Ahhhh....I see, that makes sense...I'll try that and let you know...thanks!
That did it!!! Thanks a bunch guys! I love this place...support from the user community is awesome! Thanks again! :banana: |
![]() |
|
|
| X vBulletin 3.8.12 by vBS Debug Information | |
|---|---|
|
|
More Information |
|
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|