• Hi

    I have got different colour tabs on my horizontal nav bar. I would like to have a different color border on each page, so that the page with the red tab has a red border, the purple tab page has a purple border etc…

    This is the code that changes the thickness and colour/color of the border but I don’t know how to edit it to individual pages.

    border: 5px solid #00BB55;
    	background: #FFF;
    	padding: 25px 25px 15px 25px;
    	clear: both;
    	overflow: hidden;
    	padding-bottom: 1em;

    I am using I blog 2 – any help with coding would be very much appreciated!

    Cheers

Viewing 1 replies (of 1 total)
  • 1.) Remove the mentioned style from style.css

    2.) Create a template for each page as needed and add:

    <style type="text/css">
    border: 5px solid #00BB55;
    	background: #FFF;
    	padding: 25px 25px 15px 25px;
    	clear: both;
    	overflow: hidden;
    	padding-bottom: 1em;
    </style>

    Edit each pages style as needed.

Viewing 1 replies (of 1 total)
  • The topic ‘Change Border Colours/ Colors By Page’ is closed to new replies.