• Resolved kallepe

    (@kallepe)


    – My main menu changes size when I scroll down. how do i do it constantly it’s the same?

    -How do I minimize page margins on all my pages?

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Theme Author themevision

    (@themevision)

    Hello,@kallepe!

    1.
    Have you tried to turn off the Header shrinking?

    https://prnt.sc/l68oqg

    or, you can insert a next Custom CSS code into Customize->General->Additional CSS:

    .sticky-header nav a,
    .sticky-header-shrink nav a{
    font-size: 13px!important;
    }

    2.

    On the Full-width page template, margins are already 0px, but if you want to stretch the width of the page content, try to insert the next Custom CSS code into Customize->General->Additional CSS:

    .vision-row {
        max-width: 100%;
    }

    Change the max-width value per your needs.

    Regards

    Thread Starter kallepe

    (@kallepe)

    Super! width problem solved ??
    The head continues shrinking even though I have used the code and turned off the shrinkimg feature

    • This reply was modified 6 years, 1 month ago by kallepe.
    Thread Starter kallepe

    (@kallepe)

    I also wonder if you have any good solution for making my product page (woocommerce) to full width, now having a leftover position

    Theme Author themevision

    (@themevision)

    Hi, @ kallepe!

    If for some reason the function to disable the shrinkage of the head is not working,
    To prevent a header decrease, try adding the following custom CSS codes to Customizing-> General-> Additional CSS:

    .sticky-header nav a,
    .sticky-header-shrink nav a{
    font-size: 13px!important;
    }
    
    #masthead .logo,
    #masthead .sticky-header-shrink .logo{
        max-height: 93px;
    }

    Set the font-size and the max-height values per your needs.

    To make your woocommerce product page full width,insert next code to Customizing-> General-> Additional CSS:

    @media (min-width: 992px){
    .woocommerce .col-md-9 {
        width: 100%!important}
    }

    Regards

    Thread Starter kallepe

    (@kallepe)

    Thanks! as always, great help ??
    Now I just want to center the woocommerce page.

    • This reply was modified 6 years, 1 month ago by kallepe.
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘meny and margins’ is closed to new replies.