• Hey there,
    In my style sheet, all font colors are set for white, grey and orange only, but under my two post and recent comment widgets (placed in the sidebar), the font is appearing as red. I don’t see any other color coding in the style sheet.

    How can I fix? Any help would be appreciated.

    Page is:

    Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • I can see this in your style.css

    #sidebar ul li a,ul.txt li {
    	color: #600;
    	height: 1%;
    	line-height: 1.2em;
    	border-bottom: 1px solid #000;
    	display: block;
    	padding: 6px 0 6px 8px;
    }

    I think that’s where the red #600 is coming from.

    Thread Starter proudtobedad

    (@proudtobedad)

    Thanks–that did it! I was looking for “font-color”!

    Is that also where I’m getting the indent on the left side from? Would that be in the padding or somewhere else?

    I appreciate your help!

    For the padding you may want to look for something like:

    #sidebar ul li instead or #sidebar ul li ul li

    If I were you I would try to add

    #sidebar ul li {
    border:1px solid blue;
    }

    and see what bullet that affects and then try the same with
    #sidebar ul li ul li

    Adding borders is a great way to see what style is applied to what.

    For the padding, you can using padding: #px #px #px #px
    The numbers correspond to top right bottom and left.

    PS: font-color is old skool! 😉

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to change font color in post widget and recent comment widgets’ is closed to new replies.