Forum Replies Created
-
AuthorPosts
-
Hi,
What about if we use a simple image placement with a link target to a video file but instead of loading to a separate page or a light box. it would load into it’s own container. What would be the best way to do that.
Thanks,
D.Thanks you!
Good Lord. No wonder. Thanks.
What about the padding issue on these columns it should work since it is assigned, but not not at this point.
This reply has been marked as private.I am trying to target a specific column (eg: .illu-box) and have dedicated style for colors , H1, h2, h3 and much more.
Thank you!
Didier- This reply was modified 9 years, 5 months ago by dhuet.
Not working!
Also, for some reason the column does not acknowledge the margins for the inner padding.
Let me try that.
Thanks,
DidierSometing like this:http://icant.co.uk/sandbox/boxnavigation/
I guess it would work with a box container not the text content.
I will.
Thank you Yigit.D.
Never mind. Found the issue I had to changed the path on my database.
Oh, Great. I like that you have this option now. Thank you so much.
I use this as css but it does not seem to work.
body {
padding-top: 40px; // same as header height
}#header{ position: fixed !important;
background: #ff4a54 !important;
height: 40px;top: 0;
transition: top 0.2s ease-in-out;
width: 100%;
}
.nav-up {
top: -40px; }Josue,
Is this how you recommend it:
function add_custom_script(){
?>
<script>
(function($){
$(window).load(function() {
// you can use $ here
// Hide Header on on scroll down
var didScroll;
var lastScrollTop = 0;
var delta = 5;
var navbarHeight = $(‘header’).outerHeight();$(window).scroll(function(event){
didScroll = true;
});setInterval(function() {
if (didScroll) {
hasScrolled();
didScroll = false;
}
}, 250);function hasScrolled() {
var st = $(this).scrollTop();// Make sure they scroll more than delta
if(Math.abs(lastScrollTop – st) <= delta)
return;// If they scrolled down and are past the navbar, add class .nav-up.
// This is necessary so you never see what is “behind” the navbar.
if (st > lastScrollTop && st > navbarHeight){
// Scroll Down
$(‘header’).removeClass(‘nav-down’).addClass(‘nav-up’);
} else {
// Scroll Up
if(st + $(window).height() < $(document).height()) {
$(‘header’).removeClass(‘nav-up’).addClass(‘nav-down’);
}
}lastScrollTop = st;
}
});
})(jQuery);
</script>
<?php
}March 30, 2015 at 4:06 pm in reply to: Top Header conflict with external scrip: (eg google, bing, doubleclick) #420536Yes, thank you. I i used a script container from google. Thank you.
Almost there! it does not seem to work on the mobile menu which is mostly the one i want to target.
Thanks,
DThis reply has been marked as private.thanks!
This reply has been marked as private.I have started yet on deploying the design on Enfold, but Once I will. I will provide you with a link. I was just trying to inquiry what would be the best way to eliminate the margins in general on smartphone behavior to get as much screen as as possible in the same spirit as fullwidth box and grid row.
This reply has been marked as private.thank you!
March 13, 2015 at 6:50 pm in reply to: Top Header conflict with external scrip: (eg google, bing, doubleclick) #411213This reply has been marked as private.No, I just wan to revolution slider to use the image roll over that enfold use. The rollover image in the color box was simple to show you that it works by default but it dos not not display by default on the revolution slider container.
This reply has been marked as private.Thanks!
Never mind you were correct! thanks you
-
AuthorPosts