Page 1 of 1
What's wrong?
Posted: Fri Mar 02, 2012 3:35 pm
by artgalstyle
Not sure what I'm doing or not doing. I've started over twice and done it differently each time and it still comes out like this. Everything is there but all at the left. Even when I align it. Laramie
Re: What's wrong?
Posted: Fri Mar 02, 2012 6:37 pm
by R3YNO
from the looks of your code (cant see all of it) your div-tags look like
<div id"sample1"> Content </div>
<div id"sample2"> Content </div>
this doesn't allow the tags to go within each other. It could help if we can see the code
It may also be as browser issue, I don't know macs well but is that safari? If so you may want to launch it though Firefox or Chrome.
Re: What's wrong?
Posted: Fri Mar 02, 2012 9:47 pm
by artgalstyle
I was in Safari, Chrome and Firefox wouldn't even show it. I won't be able to check it until Monday.
Re: What's wrong?
Posted: Sat Mar 03, 2012 11:55 am
by Instructor
According to that screenshot your CSS is not controlling the layout for whatever reason. I'd need to see your code to diagnose it further, but I'd first check to see if your external CSS file is linked to your web page HTML and then see if your DIVs are named correctly and in accordance with your CSS styles. i.e. your DIVs are named "<div id="blah1">Content</div>" and your CSS for it looks like:
#blah1 {
position:absolute;
left:54px;
top:452px;
width:187px;
height:117px;
}