• Resolved jespergrip

    (@jespergrip)


    When changing color of my widget area i can change the backround and my font text for 3 links but not for the RSS feeds

    h3, .widget > h1 {
    	color: #fff;
    	text-align: center;
    	background-color: #DC241F;
    	font-size: 14px;
    	font-weight: bold;
    	text-transform: uppercase;
    	border-bottom: 2px solid #fff;
    	padding-bottom: 2px;

    im using the toolbox theme for it. i been trying to read up on what to do and tryed adding

    .widget_rss .widget-title a{
      color:#FF0000;
    }

    To my style.css but can′t get it to work. anyone got any idea of how i could do this?

Viewing 15 replies - 1 through 15 (of 18 total)
  • Moderator t-p

    (@t-p)

    – Try using Firefox with the Firebug add-on for this kind of CSS work. https://getfirebug.com/

    Thread Starter jespergrip

    (@jespergrip)

    Thank you tara for that but it dosen′t help me out much:/ the problem i have is that i have a <a> code overiding my <h3, .widget> code and if i change the colors in the </a><a> code sequence i will change the color of all the text not just the widget headers and i can′t for the sake of me find a way to passby that.

    [Remember to wrap code in backticks]

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    If you can’t link the webpage, can you reproduce the issue in CSSDesk and then share us a link to that?

    Thread Starter jespergrip

    (@jespergrip)

    I can ofcourse link you the site the only problem is that the site is in swedish. hope thats no problem since the code should be the same https://hassleholmtoday.se/

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Try adding;

    .rsswidget h3 {
     background: deeppink;
     color: deepskyblue;
    }

    Thread Starter jespergrip

    (@jespergrip)

    it did not work:/
    This string of code

    a {
    	text-decoration: none;
    	color: black;
    }

    keeps overwriting this string of code

    h3, .widget > h1 {
    	color: #fff;
    	text-align: center;
    	background-color: #DC241F;
    	font-size: 14px;
    	font-weight: bold;
    	text-transform: uppercase;
    	border-bottom: 2px solid #fff;
    	padding-bottom: 2px;
    }

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Where are you adding it?

    Thread Starter jespergrip

    (@jespergrip)

    inside the style.css i tried adding it both on top and underneath and in different places.

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Do you have a section of the dashboard named “Custom CSS” or “Edit CSS”?

    Thread Starter jespergrip

    (@jespergrip)

    Yea i do i did try to add it in there as well no result:( (i tried everything i could think of just in case it was me being stupid like it usualy is;P) but around were in the custom CSS whould you add the code in?

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Add the code to the very end of your Custom CSS code.

    Thread Starter jespergrip

    (@jespergrip)

    did not work:(

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Something’s wrong with the method you’re using to add the CSS because it’s not in your Custom CSS file.

    If your theme’s Custom CSS is not saving your changes, try downloading this Custom CSS Manager plugin and using that.

    Thread Starter jespergrip

    (@jespergrip)

    I dident update the CSS file befor just used the previewe mode. it should be updated now. also tryed the CSS manager plugin but still no luck..

    I can′t get how hard it should be to override this damn thing:P haha

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    If all else fails, put !important on your CSS style;

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

Viewing 15 replies - 1 through 15 (of 18 total)
  • The topic ‘i can′t change the color of my rss feed header font’ is closed to new replies.