Need help with Digg 3 Column

  • Unknown's avatar

    I’m trying to do some custom CSS with the Digg 3 Column layout. So far I’ve managed to change all the font, colors, etc as I’d like it to appear, but I can’t for the life of me figure out how to change the menu tabs. Could someone please point me in the right direction?? I just want to change the colors!

  • Unknown's avatar

    If you mean the color of the tabs, it looks like they are actually images. From your CSS:

    #menu ul li{
    	float: left;
    	margin: 0 5px 0 0;
    	font-size: 14px;
    	font-weight: bold;
    	background: url(images/bg_tab_right.gif) no-repeat right top;
    	color: #325b0a;
    }
    
    #menu ul li a{
    	display: block;
    	padding: 14px 20px 10px;
    	text-decoration: none;
    	background: url(images/bg_tab_left.gif) no-repeat left top;
    	color: #325b0a;
    }

    Try changing the background to a color instead of the url.

  • The topic ‘Need help with Digg 3 Column’ is closed to new replies.