I am attempting to change the color of the bar behind “Archives” on my sidebar..
Archives widget was added to the sidebar and there are no options to change the headline background color like the other segments.
This is an urgent situation. Can I get some help on this topic?
vaporwavezone
good idea to learn to use Chrome web browser and the F12 inspector. You can highlight any CSS element on page to find it, then add custom CSS over-ride to your panel CSS box, or often at bottom of your style.css file.
SO, for example on your page:
.block-title > span, .block-title > a, .block-title > label, .widgettitle, .widgettitle:after, .td-trending-now-title, .td-trending-now-wrapper:hover .td-trending-now-title, .wpb_tabs li.ui-tabs-active a, .wpb_tabs li:hover a, .td-related-title .td-cur-simple-item, .woocommerce .product .products h2, .td-subcat-filter .td-subcat-dropdown:hover .td-subcat-more {
background-color: #4db2ec;
}
so, just an example you might “try” something like this:
.widgettitle, span {background-color: #990000}
or
.widget, .widgettitle, span {background-color: #990000}
or something like that.
Remember TagDiv support only open M-F during their local business hours, closed weekends. Might be the weekend “now” in their timezone.
But experiment with the above. You can also simply edit the style.css file at line 11045.
Note that the widget is a default widget from WordPress, and *not* the theme, hence no admin panel settings on that element.
Sorry if that isn’t exact CSS to use; just pointing you in right direction. 🙂
(I don’t work here.)
-
This reply was modified 9 years by
simchris.
Copy that,
Not exactly urgent, I was making a joke, so I will get to that.
Can you provide more information on the Google Maps API issue.
I will look into the resolve.
Thanks for your help. I do appreciate it.
regards,
Hey… ! Using the F12 “console view” in Chrome it will tell you any javascript or major nutso errors on page, sometimes from plugins, sometimes from pasting wrong thing into a post box or sidebar widget.
Couple of years ago I told people to shut up when they’d say “check it in console…” like I could use my superhuman brain or psychic abilities to sort it out on my own! — but last couple of years I’ve come to reply on it as invaluable.
🙂
Hi
Thanks @Chris for your answers and for your helps.
@vaporwavezone if yopu still need assistance n this please provide more details about the desired result and we will get back to you as soon as possible.
Thanks!
@andrei_luca Yes, the CSS I’ve used previously did not work.
I am still attempting to change the color of the “Archives” title on the right sidebar.
Sorry for the confusion on my end.
Thanks.
Hi
Try this css in theme panel > custom code > custom css; http://screencast.com/t/hcIWtDF1
.widget .block-title span{
color: red;
background-color: green;
}
.widget .block-title {
border-color: green;
}
Thanks!