AnthonyJ Posted December 6, 2011 Report Posted December 6, 2011 Hi all, I can't get my logo to stay put. If I move the logo within the logical div it moves my title down. It sounds like a float problem but it escapes me. Would you have a look? <body> <section class="container"> <section> <h2>ARJ Communications & Technologies</h2> <h3>Bringing art and science together</h3> </section> <header id="logo"> <img src="asset/arjcommunications.com 2011-12-3 10-56-19.png" alt="ARJ Communications" width="83" height="129" longdesc= "asset/arjcommunications.com 2011-12-3 10-56-19.png"> </header> Thanks,
benjaminmorgan Posted December 6, 2011 Report Posted December 6, 2011 Hopefully you have <section class="container"> closed. .container { width: /* total width */ } .contaner section { width: /* part width */ float: left; } #logo { float: left; width: /*other part of width */ I'm pretty sure that should work.
Andrea Posted December 6, 2011 Report Posted December 6, 2011 Aside from any positioning issues - if Benjamin's solution doesn't work, post a link - we really need to see ALL the code (HTML and CSS), not just what's in the area - I noticed the file name you are using for the image: arjcommunications.com 2011-12-3 10-56-19.png This is the wrong way to name files and you're only asking for problems. There should only be ONE period in a file name, and that's the one just before the file extension, in this case, the 'png'. Also, spaces in file names can cause problems. so you might consider renaming all your images following basic file naming conventions.
adkls5555 Posted December 9, 2011 Report Posted December 9, 2011 Hello Nice to meet you _______________________________________________________ [Link Deleted]
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now