Want to make the Slider at the top of Hello Blush show without the navigation text on the sides

QuestionsCategory: QuestionsWant to make the Slider at the top of Hello Blush show without the navigation text on the sides
chicdivageek asked 4 years ago

Hi!

I’m working on setting up the Hello Blush theme for my site and want to remove the navigation text on the sides that say next and “Previous” oh and is there a way to change the border color of the images in the About Images section/widget? Or just remove it?

Thank you

Attachments
1 Answers
Jennifer Staff answered 4 years ago

Add this to your additional CSS

For the Prev/Next

.soliloquy-container .soliloquy-prev,
.soliloquy-container .soliloquy-next {
display: none!important;
}

To remove the about border

.home-about-2 .widget:nth-child(2) {
padding: 0;
}

to change the color, adjust the #fff to whatever hex code you want.

.home-about-2 .widget:nth-child(2) {
background: #fff;
}