Resolved

Remove Default Slider

Ultra Theme started by jko Dec 30, 2016 26 replies
Andrew Misplon Puro Dec 30, 2016 · 6:40 pm #5676

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

Andrew Misplon Puro Dec 30, 2016 · 6:41 pm #5677

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.

jko Dec 30, 2016 · 6:53 pm #5678

Hey Andrew,

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

Andrew Misplon Puro Dec 30, 2016 · 7:15 pm #5679

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 🙂

jko Dec 30, 2016 · 9:07 pm #5680

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

Andrew Misplon Puro Dec 30, 2016 · 9:23 pm #5681

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.

jko Dec 30, 2016 · 9:31 pm #5682

Thanks! And to change the font color in that?

Andrew Misplon Puro Dec 30, 2016 · 9:33 pm #5683

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

jko Dec 30, 2016 · 9:35 pm #5684

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

Andrew Misplon Puro Dec 30, 2016 · 9:40 pm #5685

No problem at all 🙂

jko Dec 30, 2016 · 9:43 pm #5686

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.

Andrew Misplon Puro Dec 30, 2016 · 9:56 pm #5687

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;
}
jko Dec 30, 2016 · 10:42 pm #5688

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.

Andrew Misplon Puro Dec 30, 2016 · 11:47 pm #5689

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.

jko Dec 30, 2016 · 11:52 pm #5690

Oh okay, that’s fine. I can play around with my menus. Thanks for explaining everything and the help!

27 posts