[Resolved] Remove Default Slider

  • Author
    Posts
  • #5675

    jko
    Participant

    Hello,

    I went into Customization and selected “None” to remove the demo slider but it still is appearing on my site. http://www.mwcloudsolutions.com/Developer2. Help please!

    #5676

    Andrew Misplon
    Keymaster

    Hi jko

    Sorry to hear about the problem. We’ll investigate. In the mean time, go to Pages > Home Page and use the Page Slider meta box in the right column to select None. Let me know how that goes.

    Thanks

    #5677

    Andrew Misplon
    Keymaster

    I’m unable to replicate the issue locally at the moment. Hopefully, the page setting adjust works on your side. We’ll certainly keep an eye out for this problem arising in the future.

    #5678

    jko
    Participant

    Hey Andrew,

    That worked, thanks for the quick response and help!! 🙂

    #5679

    Andrew Misplon
    Keymaster

    Awesome, glad to hear that did the trick. Sorry for the hassle. If you have any questions in the future, please, let me know.

    Cheers 🙂

    #5680

    jko
    Participant

    Another question, any way I can change the color of the footer? It’s a little too dark for my site.

    #5681

    Andrew Misplon
    Keymaster

    Sure. The full set of color settings is included in the premium version which is available for as little as $5 once off.

    Alternatively, head over to Appearance > Customize > Additional CSS and insert:

    /* Footer */
    
    .site-footer .footer-main {
    	background: #272a2d;
    }
    .site-footer .footer-main h3 {
    	color: #fff;
    }
    .site-footer .footer-main .widget h3.widget-title~* {
    	color: #acaeaf;
    }
    
    /* Bottom Bar */
    
    .site-footer .bottom-bar {
    	background: #313539;
    	color: #acaeaf;
    }

    Edit as required.

    #5682

    jko
    Participant

    Thanks! And to change the font color in that?

    #5683

    Andrew Misplon
    Keymaster

    Sure, in the above snippet, each time color is mentioned, that’s text color, background is background color.

    #5684

    jko
    Participant

    Thanks! I don’t know a whole lot of CSS or code so it’s still a little confusing at times.

    #5685

    Andrew Misplon
    Keymaster

    No problem at all 🙂

    #5686

    jko
    Participant

    Hey Andrew, in the very bottom footer, the font color itself will not change, no matter what color I try to change it to. It’s the very bottom with my footer menu and copyright info.

    #5687

    Andrew Misplon
    Keymaster

    Here we go:

    .site-footer .bottom-bar a {
    	color: #acaeaf;
    }
    .site-footer .bottom-bar a:hover {
    	color: #fff;
    }
    .bottom-bar-menu .menu li a {
    	color: #acaeaf;
    }
    .bottom-bar-menu .menu li:hover>a {
    	color: #fff;
    }
    #5688

    jko
    Participant

    Great, that did it! Now another question, is there a way to make that bottom menu span across the whole footer? It looks like it’s just half of the footer right now.

    #5689

    Andrew Misplon
    Keymaster

    Glad to hear you’ve made progress.

    The bottom bar menu is on the same line as the copyright statement. It’s intended to be single line.

    The document flow makes it quite tricky to change this because the copyright statement comes before the bottom bar menu.

    It would be best to try and narrow down your bottom bar menu to one line. You can allow a bit more space by adding:

    site-footer .bottom-bar .site-info {
        width: 24%;
    }
    
    .bottom-bar-menu {
        width: 76%;
    }

    Alternatively, you’d need to copy footer.php and add it to your child theme and then move the entire bottom bar statement above the copyright statement and then add additional CSS to make the menu and copyright statement full width.

    We don’t formally offer customizations like this but do our best to advise where possible.

Viewing 15 posts - 1 through 15 (of 27 total)

You must be logged in to reply to this topic.

Scroll to top