Icons of "WP Search" and "WP Categories"

Posted in: Newspaper
Post count: 65

Hello,

I´d like to highlight the functionalities of “WP Search” and “WP Categories”, and so I´d like to change their “icon” colors (“WP Search”: letters in white, and background in black that turns blue when the cursor hovers; “WP Categories”: letters in white, and background in black).

So, I ask: how can I change that colors?

Thanks.

Best regards.

Post count: 23312

Hello Pedro,

If you want to make these changes, you should use a bit of CSS code to do that. Try the code below and place it in Theme panel->Custom CSS area.

The code is ->

.widget_search .td-search-form-widget .wpb_button:hover {
background-color:green!important;
}
.widget_search .td-search-form-widget .wpb_button {
background-color: red!important;
color:pink!important;
}
.widget_categories .widgettitle{
background-color:blue!important;
color:pink!important;
}

The result is here -> https://www.screencast.com/t/j2VxwHOzrg

Notice that you can change the values of color and background-color as you wish.

Thanks for your understanding!

Post count: 65

Hello,

Thanks for the reply.

I ask you another favor, please: in the funcion “WP Categories”, what is the CSS code that I have to put in order that the title of “Categories” doesn´t appear and in that space it is placed the table of the categories (I mean, the table of the categories goes up and occupy the space that is now with the title “Categories”).

My problem is that if I just put the title without colors, there will be an empty space; so, I want that the title disappears completly and in his place appears the table of the categories.

Thanks again!

Best regards.

Post count: 23312

Hello Pedro,

I guess that you want to remove the widget title, right? If you want this, you should simply use the code below and place it in Theme panel->Custom CSS code.

The code is ->

.wpb_wrapper .widgettitle{
display:none!important;
}

The result is here -> https://www.screencast.com/t/E2qjzftX

Thanks for the message!

Viewing 4 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic.