I want all of my pages to be in accordance with ‘Scheme 6’. I have created Scheme six to look like this (my homepage as an example: https://americancampsupply.com/)
However, when I create new pages, there is no menu option to make them look like Scheme six (in general, the white background look). Instead, there is the default yellow color. This is currently happening in 2 pages:
Does anyone know how to make those pages appear like the others? Thank you for the help!
You can either throw this code into your header section:
Or you can put this code in your base.css file located in your assets folder:
#MainContent{
background-color: white;
}
@beauxbreaux awesome thank you! The color is now good. Do you know how I can change the font to 1) be black and 2) be Sans-serif?
Oh yeah. You can go to your theme customizer.
Click your contacts page from the editor then click the title contact on that page to highlight it. You will still a CSS custom block there:
You can add the styles like this:
h1{
color:black;
font-family:sans-serif
}
You could also try adding this globally by going back to your base.css but then you would need to add !important on the end of each line like this
h1{
color:black!important;
font-family:sans-serif!important
}
1 Like
@beauxbreaux awesome - this worked! Thanks so much for your help. Spent so much time on this and you helped me big time.
No problem was always here to help out!