Support » Themes and Templates » Every css property works Except Color property for links in sidebar.

  • I am tryin to change the color of children categories list …
    their color property seems be not working unlike other properties like font size and background which do work ….

    What’s the problem ??

    Cheers!

Viewing 5 replies - 1 through 5 (of 5 total)
  • without a live link to the problem site, there no way anybody could suggest anything.

    [it does not count that you maybe posted a link earlier an any of your other topics]

    Thread Starter Morocco English

    (@rifhawk)

    Thanks

    This part of css may help you to sort the issue out :

    .children a:link {
    	display:block;
    	color: #09F;   /* This is the property which doesn't work */
    			}
    
    /* The CSS include this code which may help you to sort the problem out  */
    		#sidebar .widget li,
    		#meta.widget a {
    			display: block;
    			background: url(library/images/bullet.png) no-repeat right 12px;
    			padding: 9px 15px 9px 0;
    			text-decoration: none;
    			font: bold 13px Arial, Helvetica, sans-serif;
    			color: #fff;
    			border-bottom: 1px solid #242424;
    			border-top: 1px solid #5e5e5e;
    			margin-bottom: 0;
    
    		#sidebar {
    	margin-top: 2.2em;
    }
    
    	#sidebar.col300 {
    		width:270px;
    		margin-left: 0;
    
    	}
    
    	#sidebar .widget {
    		margin: 0 30px 0 0;
    		padding: 0 0 2em 0;
    		font:  Arial, Helvetica, sans-serif;
    		color: #f1f1f1;
    		text-shadow: -1px -1px #000;
    	}
    		#sidebar .widget a {
    			color: #fff;
    			text-decoration: none;
    		}
    
    		#sidebar .widget a:hover {
    			text-decoration: underline;
    		}
    Thread Starter Morocco English

    (@rifhawk)

    may be I should remove

    #sidebar .widget a {
    color: #fff;

    which probably keeps all links in white color …..

    Thread Starter Morocco English

    (@rifhawk)

    Yes I dropped it and the children link color works !

    but other links turned to red color lol

    Thread Starter Morocco English

    (@rifhawk)

    ok I added

    .widget_categories a {
    color: #FFF;

    I think now it’s ok

    ?

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Every css property works Except Color property for links in sidebar.’ is closed to new replies.