The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
Background Layer positionin help...
I Have a table cell which spans the footer of my page....
For some reason IE does not like my STYLE tag in the TD. Can anyone see something I;m not seeing here: HTML Code:
<td colspan="7" style="background:#00529b url(http://www.xxxxxxxxxxx.com/images/reduce-reuse-recycle_03.jpg)right no-repeat;height:158px;">Yada yada Yada</td> This is what it looks like in IE: cp-footer-ie.jpg This is what it looks like in FireFox: cp-footer-ff.jpg <----good |
#2
|
|||
|
|||
DUH!!!
More and more I am beginning to wonder when IE is going to catch up... Because IE is dumb, you need to spell it out as it does not understand inline extended CSS values. The correct way to do it is: HTML Code:
<td colspan="7" style="background: #00529b url(http://www.xxxxxxxxxx.com/images/reduce-reuse-recycle_03.jpg);background-position: right; background-repeat: no-repeat;"> Yada yada</td> |
#3
|
||||
|
||||
Actually you don't have to spell it out in IE. Same with programming, the code is sensitive so if you were to exclude (let's say a space between values) then the code won't work. The correct shorthand CSS would be:
Code:
<td colspan="7" style="background:#00529b url(http://www.xxxxxxxxxx.com/images/reduce-reuse-recycle_03.jpg) no-repeat bottom right"> Yada yada</td> |
Thread Tools | |
Display Modes | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|