Link to home
Start Free TrialLog in
Avatar of burnedfaceless
burnedfaceless

asked on

Why won't this text float to the left

Why won't this text float to the left on the attached file?

edit: I want it to wrap around the image
Avatar of Juan Ocasio
Juan Ocasio
Flag of United States of America image

No file attached
Please post HTML and CSS code or provide a link so we can see the problem.
Avatar of burnedfaceless
burnedfaceless

ASKER

Hope it attaches.
Try this

consolidatedutilities.com/interests.zip
ASKER CERTIFIED SOLUTION
Avatar of Julian Hansen
Julian Hansen
Flag of South Africa 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
Your validation error - on line 38 of stylesheet.css you have a ; after the closing }
.image {
  float: left; 
  padding-right: 10px
};

Open in new window

Should be
.image {
  float: left; 
  padding-right: 10px
}

Open in new window

thanks
You are welcome.