• Resolved Mike

    (@hybridlab)


    Hi folks

    northeasttruth.com is the site in question. As you can see the excess categories are tough to see. im working on a new theme now but ive noticed similar issues with other themes. Can anyone point me where the code is I need to edit?

    Thanks in advance

Viewing 4 replies - 1 through 4 (of 4 total)
  • edit style.css of your theme; find:

    #subnavbar {
    	background: #666666;
    	width: 960px;
    	height: 24px;
    	color: #FFFFFF;
    	margin: 0px;
    	padding: 0px;
    	}

    add ‘float:left;’ and change the ‘height: 24px;’ to ‘height: auto;’ – so it looks like:

    #subnavbar {
    	background: #666666;
    	width: 960px;
        float:left; /*new*/
    	height: auto; /*changed from 24px;*/
    	color: #FFFFFF;
    	margin: 0px;
    	padding: 0px;
    	}
    Thread Starter Mike

    (@hybridlab)

    I’d just figured some of that out using Chrome’s inspector and was coming back to close it but you’ve given me extra too.

    What would be different without the float?

    Thanks

    without the float, the area would not automatically expand.

    Thread Starter Mike

    (@hybridlab)

    Excellent thanks

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Excess category rows v.hard to see unless hovering’ is closed to new replies.