UKBusinessLive |
01-05-2009 05:47 PM |
Quote:
Originally Posted by Fungsten
(Post 1702495)
Sorry. Now try it. I had that style hidden. :erm:
|
Thats because the url to your .gif files is not right
Code:
#tabs1 a {
float:left;
background:url("styles/Experimental/Upload/misc/tableft1.gif") no-repeat left top;
margin:0;
padding:0 0 0 4px;
text-decoration:none;
}
#tabs1 a span {
float:left;
display:block;
background:url("styles/Experimental/Upload/misc/tabright1.gif") no-repeat right top;
padding:5px 15px 4px 6px;
color:#627EB7;
}
Where you have styles/Experimental/Upload/misc/tableft1.gif, Thats not correct you need to use the full url for example
Code:
http://yourforum.com/styles/Experimental/Upload/misc/tableft1.gif
Just edit those and it will work :D
Have fun :)
|