Hi all,
I am trying to get a logo to show above some links using nested DIVs. However, the text always appears on top of the logo and the logo is about 100px lower than it should be on the screen.
Can anyone spot the problem? I have been looking for this for so long it is all starting to look the same to me.
I have tried it in NN4, NN6 and IE6, I get the same issue in all.
Any ideas suggestions are greatly appreciated.
Jim
Styles:
HTML:
I am trying to get a logo to show above some links using nested DIVs. However, the text always appears on top of the logo and the logo is about 100px lower than it should be on the screen.
Can anyone spot the problem? I have been looking for this for so long it is all starting to look the same to me.
I have tried it in NN4, NN6 and IE6, I get the same issue in all.
Any ideas suggestions are greatly appreciated.
Jim
Styles:
Code:
#divSlideCont {
HEIGHT: 350px; LEFT: 0px; POSITION: absolute; TOP: 100px; VISIBILITY: hidden; WIDTH: 150px; Z-INDEX: 10
}
A.clSlideLinks {
COLOR: #FFCC33; FONT-FAMILY: Verdana, Helvetica, Helv, Serif; FONT-SIZE: 14px; FONT-WEIGHT: bold; TEXT-DECORATION: none; WIDTH: 130px
}
A.clSlideSubLinks {
COLOR: #FFCC33; FONT-FAMILY: Verdana, Helvetica, Helv, sans-serif; FONT-SIZE: 12px; TEXT-DECORATION: none; WIDTH: 125px
}
.Logo {
top: 0px;
left: 0px;
margin-left: 5px;
margin-top: 5px;
}
HTML:
Code:
<DIV Class="LeftSide">
<DIV id="divSlideCont">
<DIV ID="Logo">
<IMG src="Images/rcdsmall2.png" width="115" height="96">
</div>
<DIV id="divSlide0" class="clSlide"><A href="index.html" onclick="swmenu(0,-1,-1); if(bw.ie || bw.ns6) this.blur(); " class="clSlideLinks"> Home</a><BR></div>
<DIV id="divSlide1" class="clSlide"><A href="#" onclick="swmenu(1,-1,-1); if(bw.ie || bw.ns6) this.blur(); return false" class="clSlideLinks"> Portfolio</a><BR></div>
<DIV id="divSlideSub1_0" class="clSlideSub"><A onclick="swmenu(1,0,-1); if(bw.ie || bw.ns6) this.blur(); " href="webportfolio.html" class="clSlideSubLinks"> Web Portfolio</a><BR></div>
<DIV id="divSlideSub1_1" class="clSlideSub"><A onclick="swmenu(1,1,-1); if(bw.ie || bw.ns6) this.blur(); " href="printportfolio.html" class="clSlideSubLinks"> Print Portfolio</a><BR></div>
<DIV id="divSlide2" class="clSlide"><A href="about.html" onclick="swmenu(2,-1,-1); if(bw.ie || bw.ns6) this.blur(); " class="clSlideLinks"> About Us</a><BR></div>
</div>
</div>