How to change these elements color?

Posted in: Newsmag
Post count: 56

Hello,

I didn’t find where I can change the color of these elements:

http://take.ms/kHRdB

Please help me out here.

Thanks!

Post count: 7909

Hi,

Unfortunately wordpress blocks don’t have an option to change color or background for titles, but you can do this using css code in Theme Panel > Custom Css: http://screencast.com/t/cGSNoZJV

.widget_search input[type=submit] {
background-color: red;
}
.widget_recent_comments .block-title > span {
background-color: red;
}
.widget_recent_entries .block-title > span {
background-color: red;
}

Thanks!

Post count: 56

Thanks! But I also need to change the color of all other blocks like these:

http://take.ms/uEBB3

Also, I’d like to change the color of the ‘Leave a comment’ button: http://take.ms/40M2X

Hover color too.

And the hover color of the ‘Search’ button here: http://take.ms/JSWxyU

How can I do it?

Thanks!

Post count: 7909

Hi,

You can inspect those widgets, take their classes and change the background like above – http://screencast.com/t/ojU5Wqsq

.widget_archive .block-title > span, .widget_categories .block-title > span, .widget_meta .block-title > span {
background-color: red;
}

Also for search button:

.widget_search input[type=submit]:hover {
background-color: red;
}

Please try this custom css for comments button: http://screencast.com/t/4mQwODlxvfYo

.comments .form-submit input[type=submit] {
background-color: red;
}

Thanks!

Post count: 56

Hello,

Thank you!

I managed to change tag cloud widget headline color. The page is:

https://www.securerr.com/huge-magento-vulnerability/

But I still can’t change the color of this element:

When you hover over it, it becomes black. And there’s black border I need to remove.

Please advice on how to do that. Thanks!

Viewing 5 posts - 1 through 5 (of 5 total)
The forum ‘Newsmag’ is closed to new topics and replies.