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!
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!
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
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.
Hey Andrew,
That worked, thanks for the quick response and help!! 🙂
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 🙂
Another question, any way I can change the color of the footer? It’s a little too dark for my site.
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.
Thanks! And to change the font color in that?
Sure, in the above snippet, each time color is mentioned, that’s text color, background is background color.
Thanks! I don’t know a whole lot of CSS or code so it’s still a little confusing at times.
No problem at all 🙂
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.
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;
}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.
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.
Oh okay, that’s fine. I can play around with my menus. Thanks for explaining everything and the help!