- This topic has 26 replies, 2 voices, and was last updated 7 years, 10 months ago by Andrew Misplon.
Tagged: demo demo slider home page home page slider slider
- AuthorPosts
- December 30, 2016 at 6:30 pm #5675
jkoParticipantHello,
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!
December 30, 2016 at 6:40 pm #5676
Andrew MisplonKeymasterHi jko
Sorry to hear about the problem. We’ll investigate. In the mean time, go to
Pages > Home Page
and use thePage Slider
meta box in the right column to selectNone
. Let me know how that goes.Thanks
December 30, 2016 at 6:41 pm #5677
Andrew MisplonKeymasterI’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.
December 30, 2016 at 6:53 pm #5678
jkoParticipantHey Andrew,
That worked, thanks for the quick response and help!! 🙂
December 30, 2016 at 7:15 pm #5679
Andrew MisplonKeymasterAwesome, glad to hear that did the trick. Sorry for the hassle. If you have any questions in the future, please, let me know.
Cheers 🙂
December 30, 2016 at 9:07 pm #5680
jkoParticipantAnother question, any way I can change the color of the footer? It’s a little too dark for my site.
December 30, 2016 at 9:23 pm #5681
Andrew MisplonKeymasterSure. 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.
December 30, 2016 at 9:31 pm #5682
jkoParticipantThanks! And to change the font color in that?
December 30, 2016 at 9:33 pm #5683
Andrew MisplonKeymasterSure, in the above snippet, each time
color
is mentioned, that’s text color,background
is background color.December 30, 2016 at 9:35 pm #5684
jkoParticipantThanks! I don’t know a whole lot of CSS or code so it’s still a little confusing at times.
December 30, 2016 at 9:40 pm #5685
Andrew MisplonKeymasterNo problem at all 🙂
December 30, 2016 at 9:43 pm #5686
jkoParticipantHey 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.
December 30, 2016 at 9:56 pm #5687
Andrew MisplonKeymasterHere 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; }
December 30, 2016 at 10:42 pm #5688
jkoParticipantGreat, 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.
December 30, 2016 at 11:47 pm #5689
Andrew MisplonKeymasterGlad 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.
- AuthorPosts
You must be logged in to reply to this topic.