This is how I want it to look, (content beginning directly under top nav)
it won’t stay where I want it to I’ve tried all position types even AP but it’s useless.
Please stop trying to AP everything, the only thing on your entire page that needs to AP is the badge image.
If you will take that badge out of your header image like I keep explaining then the top navbar can be floated and your main content will start directly under the navbar.
The header image needs to slice off at the bottom of your nav portion.
Then we can just AP the badge only and set a top margin on your left sidebar to get below the badge.
Just make the badge with a transparent background, gif or png.
The old one is 804px and the spacing was not the same on the left and right side. It threw the whole page of center in the browser because of the extra 4px on the left side. It caused problems with the content div after the heder also.
I need that image if you want me to set this up properly for you.
EDIT:
I just saw your last post after I replied. Your new image looks nothing like I have explained it should in this post or the previous posts where I tried to explain it. Look at the link I just posted for an example to go by.
Your new image is off center worse than the other one was.
Ok, what you will need to do is study through the css to see how it relates to the html. I have changed most everything and it would be a long post for me to try to explain it all. If you look at each div/element in the html you will be able to look back at the css and see how it works.
I also trimmed down that door image in the left column since it was off center also. Then I set it as a block level in the css and centered it up with auto margins. Here is the zip file with everything in it.
Let’s take the width and left padding off that top navbar. That will keep the list items from dropping if the text is zoomed. It does not need the width and left padding anymore since the BG color is on the header image now.
I just made an edit to the css above but it has not been changed in the links I posted.
The 30px right padding is just to keep it from jamming all the way to the right, you can adjust that to your liking.
Hey, it seems that the slider is overflowing the slider div and it’s floating on top on it making it like we had never put a div there, http://www.mediafire.com/?ktxvkgwtfmw
The slider is too wide for the element that it sits in. It’s set to 620px but it looks as though you only have about 580px space there.
I also assume you don’t want the default padding and margins on the ul?
e.g.
#slider1 {
[B] width: 580px; [/B]/* important to be same as image width */
height: 200px; /* important to be same as image height */
position: relative; /* important */
overflow: hidden; /* important */
}
#sliderContent, #slider1Content {
[B]width: 580px; /*[/B] important to be same as image width or wider */
position: absolute;
position: absolute;
[B] top: 0;
left:0;
margin:0;
padding:0;[/B]
}
That made it go to the other corner but now there’s space on top and right when I adjust the width it moves out of place and the slide wrapper is doing nothing.