Link to home
Start Free TrialLog in
Avatar of Larry Vollmer
Larry Vollmer

asked on

CSS problems

I have some CSS problems on this page:

http://tinyurl.com/4ttp4yg

The leaderboard ad is supposed to sit under the navigation but it is floating to the right. any idea how to fix this? i attached a screen of what it should look like.
Screen-shot-2011-03-11-at-3.50.1.png
Avatar of Designbyonyx
Designbyonyx
Flag of United States of America image

start with this updating this style:

#inner-eyebrow

by adding this:

float: left;
Avatar of Larry Vollmer
Larry Vollmer

ASKER

i added that, and it didn't seem to do anything
You added it wrong.  You have:

margin-left: 500px;
width: 100px float: left;

it should be:

margin-left: 500px;
width: 100px;
float: left;
ASKER CERTIFIED SOLUTION
Avatar of jjperezaguinaga
jjperezaguinaga
Flag of Mexico image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
thanks!!