If you set the left-right frame to 0% you could then just use normal rows with background colours as a divider. Then you could just use the x/y offsets to create a margin for your content. Bit of a hack but it'll work.
D
If you set the left-right frame to 0% you could then just use normal rows with background colours as a divider. Then you could just use the x/y offsets to create a margin for your content. Bit of a hack but it'll work.
D
Hey man, I figured this out last week but then ended up not using the smooth scroll!
So in custom head content put this:
<!--SMOOTH SCROLL ANCHOR POINTS-->
<script>
jQuery(document).ready(function(){
jQuery('body').on('click', '.yourclasshere', function(event) {
event.preventDefault();
var id = jQuery(this).attr('href');
jQuery('html, body').animate( { scrollTop: jQuery(id).offset().top }, 750, 'swing' );
});
})
</script>
So obviously you need to replace 'yourclasshere' with your own class name.
What I was using this script for was for several text links at the top of the page which would just scroll down to a certain point underneath where each image was.
In that case I assigned the point I wanted to arrive at an #id and then in the text editor using the 'link' button entered this id '#youridhere'.
I then had to go into the html editor in the text editor and manually add in the class in my JS script before the href link.
That way all my anchors were smooth scrolling.
I'm not entirely clear what you want to smooth scroll but hope you can adapt my code :)
Best,
Duncan
In the gridder, select 'More' and you will see an option for "Horizontal Line' - you can then add it anywhere in the gridder.
To change the line thickness go to 'Lay Options' - 'Lay Options' and under 'Horizontal Lines' you can set the horizontal line height.
Hope that helps,
D
@Hayo-Gebauer I think that is just a border on the top of the footer - not a horizontal line that you can add in the gridder.
If you want a horizontal line on your footer like your link, add this to your custom CSS:
#footer-region {border-top: 1px solid black;}
Best,
D
@arminunruh Works perfectly! Thanks so much man! If i could buy you a beer i would! :beer:
@DMB Actually its ok, seems to have sorted itself out now - weird! :v:
@arminunruh Brilliant that fixed it - thanks so much man, and keep up the great work :)
@arminunruh Genius! Thanks so much Armin! I'm honoured to get an update for my problem ;)
Hi @ArneRobot !
Great websites! I just wondered how you integrated the full screen slider menus with the burger in the desktop site? Been wondering how to implement that for a while..
Best,
D