[Support request] buttons and anchor

Home Forums Support [Support request] buttons and anchor

Home Forums Support buttons and anchor

Viewing 3 posts - 16 through 18 (of 18 total)
  • Author
    Posts
  • #1290596
    David
    Staff
    Customer Support

    On this site: http://www.tolle.ch

    1. This CSS:

    @media (min-width: 769px) {
        .main-navigation .main-nav ul li:first-child>a {
            padding-left: 40px;
        }
    }

    change to:

    @media (min-width: 769px) {
        .main-navigation .main-nav ul li:first-child {
            padding-left: 40px;
        }
    }

    2. The Block Button – can you link me to a page where i can see this?

    3. Where is the Smooth Scroll links ?

    #1291476
    pke

    Sorry my fault – did not change in Customizer- general settings the css “Smooth Scroll”!! Stupide!

    Now smooth scroll is working on desktop side – but still not on mobile!

    ***
    The code for primary navigation to put in 40px from left is


    @media
    (min-width: 769px) {
    .main-navigation .main-nav ul li:first-child>a {
    padding-left: 40px;
    }
    }

    the “>a” it needs – so the submenues do not move in 40 px, thats what i want. -> see http://www.tolle.ch

    Thank you
    pius

    #1291516
    David
    Staff
    Customer Support

    Remove that CSS and use this instad:

    @media (min-width: 769px) {
        .main-navigation .menu {
            padding-left: 40px;
            box-sizing: border-box;
        }
    }
Viewing 3 posts - 16 through 18 (of 18 total)
  • You must be logged in to reply to this topic.