The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
||||
|
||||
![]()
I'm creating a module in vBa where three logos are going to placed. I want the three images to be spaced evenly from each other and the sides so that it looks like *space - logo- space - logo - space - logo - space* So far I have the following but I don't know what's missing.
Code:
<table align="center" border="0"><tr><td><div align="center"><img src="/files/bizlogos/arnoldpalmer.jpg" alt="alt" title="alt" /></div></td><td><div align="center"><img src="/files/bizlogos/ritas.jpg" alt="alt" title="alt" /></div></td><td><div align="center"><img src="/files/bizlogos/pologrill.jpg" alt="alt" title="alt" /></div></td></tr></table> |
#2
|
||||
|
||||
![]()
i would first make a CSS class and like this
Code:
.spacer { padding-right: 25px; padding-left: 25px; } HTML Code:
<table align="center"><tr> <td class="spacer"><img src="/1color[1].jpg" alt="" width="200" height="200" /></td> <td class="spacer"><img src="/1color[1].jpg" alt="" width="200" height="200" /></td> <td class="spacer"><img src="/1color[1].jpg" alt="" width="200" height="200" /></td> </tr></table> |
#3
|
||||
|
||||
![]()
I've never messed with CSS classes before. Where specifically would I enter that?
|
#4
|
|||
|
|||
![]()
You can lose the table and do it too!
goes in Main CSS in the Additional CSS at the bottom of the page: HTML Code:
.spacer { padding-right: 25px; padding-left: 25px; } HTML Code:
<div align="center"> <span class="spacer"><img src="/1color[1].jpg" alt="" width="200" height="200" /></span> <span class="spacer"><img src="/1color[1].jpg" alt="" width="200" height="200" /></span> <span class="spacer"><img src="/1color[1].jpg" alt="" width="200" height="200" /></span> </div> |
#5
|
||||
|
||||
![]() Quote:
HTML Code:
</head> <style> .spacer { padding-right: 25px; padding-left: 25px; } </style> <body> if its on vbulletin powered page, you can in your admincp goto styles and templates click Go on your style, and way at the botton is a box named Additional css. where you just enter .spacer { padding-right: 25px; padding-left: 25px; } and save, then its availible on all vb pages. Might want to change the name .space is common might be dublicated with a mod or something other.. ![]() |
#6
|
||||
|
||||
![]()
Thanks, I'll give it a try in a little bit.
--------------- Added [DATE]1234722670[/DATE] at [TIME]1234722670[/TIME] --------------- Worked perfectly. Thanks. |
![]() |
Thread Tools | |
Display Modes | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|