html - Margin hiding link in link behind div -
on our website have div holds content, @ top have image behind content div. div has slideshow has images plugin. in back-end i'm adding links , trying make slides clickable...
the problem i've got reason 350px margin have above content box seems blocking link being clicked.
this it's being added:
#content.homepage { margin-top: 350px; }
this slider adding:
position: fixed; overflow: hidden; width: 100%; height: 908px;
and style on link:
display: block; left: 1544px; position: absolute; overflow: hidden; height: 100%; width: 1544px; top: 0px; z-index: 99; opacity: 0; transition-property: opacity; transition-duration: 700ms; transition-timing-function: linear;
if make #content
display:none;
the link clickable. if remove padding, link clickable @ bottom of page, behind margin seems unclickable?
the link http://www.applecoredesigns.co.uk
the slider has z-index of -1, maybe part of original slider's functionality. changing higher value allows clicking on each slide.
Comments
Post a Comment