Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #155332
    passiveincomeguys
    Participant

    Hello,

    I have a few questions about the Adonis free theme.

    1. How can I remove the masthead from individual pages? I’d like to keep the hero image, logo, site title, etc. on the homepage, but I do not want it on other pages.

    2. Is it possible to slow down the testimonials slider?

    3. In the Featured Content section, I’ve removed links from the pictures. After doing so, the Featured Content button is now ‘dead.’ How can I remove the button OR make it point to another page?

    4. How can I remove the Blog feed from the homepage?

    5. Is it possible to remove the Menu button on mobile?

    Thanks so much for your help. Your support has been great!

    My url is: nolanbulger.com

    Thanks again.

    #155359
    Skandha
    Participant

    @passiveincomeguys:
    1. To remove masthead from individual pages.
    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    body:not(.home) .custom-header {
    	display:none;
    }
    body:not(.home) #site-header-main {
    	background-color:#000;
    }
    body:not(.home) .breadcrumb-area.custom {
    	margin-top:90px;
    }

    2. To slow down the testimonial slider you will need to create a child and do a bit of customization. Let me know if you are familiar with child theme customization other wise I suggest you to hire a customizer.

    3. To make button to other page.
    Go to => Appearance => Customize => Additional CSS and Replace
    #featured-content-section{pointer-events:none}
    BY the following code.

    #featured-content-section article {
    	pointer-events:none;
    }

    4. To remove the Blog feed from the homepage
    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    .home #content {
         display:none;
    }

    5. To remove the Menu button on mobile
    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    .menu-toggle-wrapper {
    	display:none;
    }

    Let me know if this helps you out!
    Kind Regards,
    Skandha

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Theme questions’ is closed to new replies.