I am very new to Javascript, and am in need of some assistance! The issue I am having is rooted in my slideshow header. I need my header's width set to 100% so that it occupies the entire screen. However, because it's a slideshow, my images are all absolutely positioned, which takes my header div out of the flow of everything else, and so things overlap and look messy.

I've got a cheap and lame "fix" right now where I've set my footer's margin-top to 38% to compensate for the header. But at high resolutions, this does not work, and it still overlaps.

What I want to do is use Javascript or JQuery to detect the height of the images in the slideshow (which changes depending on the width of the browser) and then set the header's height to that value, thus eliminating my crappy CSS bandaids that aren't really working in the way I need them to.

Here's the site, so you can get a sense of what I am dealing with: http://www.legacyofdesigns.com/

THE HTML:

<div id="header">
<img src="images/header1.png" alt="" class="active" />
<img src="images/header2.png" alt="" />
<img src="images/header3.png" alt="" />
<img src="images/header4.png" alt="" />
<img src="images/header5.png" alt="" />
</div>

<div id="footer">         
    <ul>
    <li><a href="latest-projects.html"><img src="images/project_button.png"></a></li>
    <li><a href="start-your-legacy.html"><img src="images/start_button.png"/></a></li>
    <li><a href="https://www.facebook.com/legacyofdesigns" target="_blank"><img src="images/facebookFanButton.png"/></a></li>

    </ul>

    <p>© 2011 Legacy of Designs. All rights reserved.
    <br/>Website designed by <a href="http://www.indulgemedia.ca" target="_blank">Indulge Media</a></p>
</div>

THE CSS:

#header {position: absolute; margin-top: -150px; width: 100%;} 

#header img {position: absolute; top: 0px; width: 100%;} 

#footer {position: relative; margin-left: auto; margin-right: auto; margin-top: 38%; width: 1000px;}

It should be noted that both the header and the footer are contained by a container div with relative positioning.

link|improve this question
I'm sorry; I'm having difficulty visualizing the problem. Could you provide a bit of code I could use to easily reproduce the issue locally, and/or an example page showing the original issue? – Nicholas Bostaph Dec 9 '11 at 13:55
Hi! Thanks for your reply. The issue is on the homepage of wwww.legacyofdesigns.com. There is presently no JS other than the preloader and the slideshow function. This is the CSS for the problem areas: #header {position: absolute; margin-top: -150px; width: 100%;} #header img {position: absolute; top: 0px; width: 100%;} #footer {position: relative; margin-left: auto; margin-right: auto; margin-top: 38%; width: 1000px;} I want JS to detect the height of the header div so I don't have to use margin-top: 38% on the footer. I hope this helps you get an idea of what I'm trying to accomplish! – Savae Dec 9 '11 at 17:09
I have added code here to hopefully help! – Savae Dec 12 '11 at 22:34
feedback

1 Answer

up vote 1 down vote accepted

I figured it out!

The CSS: I changed the position of #header to relative...

#header {position: relative; margin-top: -150px; width: 100%;} 

#header img {position: absolute; top: 0px; width: 100%;} 

#footer {position: relative; margin-left: auto; margin-right: auto; margin-top: 38%; width: 1000px;}

...and I added this functionality to calculate the height of the header div based on the height of img.active:

$(document).ready(function() {
$('#header').css("height",$("IMG.active").innerHeight());
});

$(window).resize(function() {
$('#header').css("height",$("IMG.active").innerHeight());
});
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.