This Message Forum is no longer in use

Please use the new Bravenet Help Forums FOUND HERE

General Forum
This Forum is Locked
Author
Comment
colspan and css

I will give a basic code without < > so it shows.

table
tr colspan="3"
td align="left" image src=bla.gif /td
td align="center">some words /td
td align="right""image src=bla.gif /td
/tr /table ect..
What I want is to control that with css so I dont have to change every page.It would be a footer.

Re: colspan and css

I found the answer. Sorry I was stuck on tables been doing it for awhile so the change was weird and trying to put html in css. Anyway you can put it in div like so.
#footer
{color:black;
font-size: 20pt; border:2px solid red;
width:800px;
height:48px;;
position:absolute;
left:100px;
bottom:35px

}
.footer_Left
{
background-image: url(I:/Arms/muscle.gif);
width:48px;
height:48px;
float:left;
clear:left;
}
.footer_Right
{
background-image: url(I:/Arms/muscle_2.gif);
width:48px;
height:48px;
float:right;
clear:right;
}

Fototer left and right are still part of your footer just given their own space like a td cell.

your html will be.
div id="footer"All content provided by © 2008/div
div id="footerLeft" class="footer_Left"/div
div id="footerRight" class="footer_Right"/div

Remember the < > brackets. Thanks

Re: Re: colspan and css

Just to let you know... you can use < for < and > for >

You can also place code into a textarea to let it show

~~Scutterman~~