• Resolved tajanator

    (@tajanator)


    I am using your plugin (and love it). It makes it so easy to change all of the stylings without having to write tons of code. Thank you!!

    Ok, so I recently decided that my sidebars needed more editing: added borders, changed the title colors to stand out a little more, and did this with CSS. However, my RSS widget is titled with a link, and the link remains the color of all global site links no matter what code I use to fix it. Is there a way to alter this?

    The website is BakoBookNerds.com. The widget in question is at the bottom of the left sidebar.

    The css code I used for the title coloring is:

    .widget-title{
    	color: #FF33FF;
    	font-size: 10px;
    	font-weight: 500;
    	text-align: left;
    	margin: -5px;
    	letter-spacing: -0;
    	line-height: 2.6em;
    	text-transform: capitalize;
    	font-family: "Trebuchet MS", Helvetica, sans-serif;
    }	
    
    .widget-title a{
    	color: #FF33FF;
    }

    The first portion works great, but the widget-title link property isn’t budging the color..

    Any suggestions would be appreciated. Thanks!!

    https://www.ads-software.com/plugins/styles/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Ganesh Paygude

    (@ganeshpaygude)

    Just add below CSS in css file:

    .widget-title a{
    color: #FF33FF!important;
    }

    Thread Starter tajanator

    (@tajanator)

    Wow I can’t believe I forgot about the !important code… thank you that totally worked. ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Need to change the color for widget title which is a link, and css isnt working.’ is closed to new replies.