douglas:
I've fixed this on your site as well, the code is now in your header.tpl file and will only show on the index page, let me know if that will work for you.
Hi Douglas,
Wow, You are just The Best. It works. Thanks a lot for fix it for us. What a great support!
I was suspecting that the code should go to the header.tpl because in the index.tpl the full width was not working.
I just did a small change to the fix you provided because although the image was set to full width, the right side of the image was cut on the computer screen.
In the image tag, I've removed width:false heigh:false and I added min-width:100%; max-width:100% in the style tag next to background-position:cover. It fixed that small issue. No more part of the image was cut. Also width:"100%" and height:"100%" instead of min-width:100%; max-width:100% works, I have tried it.
By the way, just for curiosity, the scrolling down arrow on the jamroom.net home page under the full width image, how does it work? Does it use javascript?
I have used:
<div class="down">
<a href="#"></a>
</div>
and added this style to my skin css:
.down {
bottom:-30px;
left:50%;
position:absolute;
transform:translateX(-50%);
width:60px;
z-index:100;
}
.down > a {
background:
border-radius:50%;
display:block;
height:60px;
width:60px;
}
I can't get it work. It seems that I was missing something maybe javascrit to get it work.
Thanks.
updated by @pch: 08/03/16 11:52:44AM