• I am assuming that adding the appropriate CSS code in the Additional CSS area for the Argent Theme will resolve my issue but I cannot determine the correct CSS coding to change the color of the main menu bar/header of the theme. Also would like to be able to change the footer color.

    What is the correct CSS code to accomplish this for the Argent theme?

    Appreciate any help provided… tga

Viewing 1 replies (of 1 total)
  • The following should work

    .main-navigation, .site-footer {
    	background: red;
    }

    If you want to set each one to a different color you can break them up into 2 different lines

    .main-navigation {
    	background: red;
    }
    
    .site-footer {
    	background: blue;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Changing Main Menu and Footer Area Colors’ is closed to new replies.