manwidatan
Member
Posted 2 months ago #
I am trying to remove the blue box marked uncategorised on the following web site
http://www.studentsbenefit.co.uk
I have worked out I need to look in the header.php but i do not know what code I need to remove. I have tried a few thing but to no look . Can any one help by telling me what to look for please
Thanks
Find the following in style.css:
#navigation {
border-bottom:3px solid #15A0D3;
border-top:1px solid #EEEEEE;
float:left;
padding-bottom:10px;
padding-top:10px;
text-align:center;
width:100%;
}
and add a display: none line like so,
#navigation {
border-bottom:3px solid #15A0D3;
border-top:1px solid #EEEEEE;
float:left;
padding-bottom:10px;
padding-top:10px;
text-align:center;
width:100%;
display:none;
}