Silas
Silas

Reputation: 582

CSS properties out of whack when adding button

I have my page set up the way I want but when I try to add a button beneath the image on the left side of the page everything go a little crazy. I've been struggling with this for a little while not sure what to try next

Here's a visual:

http://jsfiddle.net/xFD8q/10/

Thanks

Upvotes: 1

Views: 116

Answers (1)

Henrik Andersson
Henrik Andersson

Reputation: 47172

Revise your HTML, mixing DIVS with Tables isn't usually the best idea. If you're unsure that your HTML is valid you can validate it via W3C Markup Validation found here

I made a fiddle with a revised markup but left the refactoring of the CSS to you. The fiddle has inline CSS which is not recommended but it was the fastest way to do it! :)

Here's the fiddle

Good luck! :D

Upvotes: 4

Related Questions