HI,
You can do it with the following css but take into account the important points Pullo mentioned above:
Code:
#advert1 img,#advert2 img{
width:234px;
height:60px;
}
This code is invalid:
Code:
img.young {height:length:450px; width:382px;}
height:length:450px; ??
It should be height:450px;width:382px - if that's what you meant to say.
This is invalid also:
Code:
table {margin:auto;a:link, a:visited {color:#000000; font-size: 15px;font-weight:bold;}}
Look like it should have been:
Code:
table {margin:auto}
a:link, a:visited {color:#000000; font-size: 15px;font-weight:bold;}
Unless you meant to target the links in the table only then it would be:
Code:
table {margin:auto}
table a:link,
table a:visited {
color:#000000;
font-size: 15px;
font-weight:bold;
}
Always run your css through the validator to pick up easily found typos.
Bookmarks