changing background colours twenty twelve
-
is there some code that allows all the various background element of colour to be changed on 2012?
I found some last night but like an idiot I didnt save it
The blog I need help with is: (visible only to logged in users)
-
Hi,
I don’t know about such a code, but without code you may change the background color, or add a background image, at Customize > Colors & Backgrounds. -
at the same time I changed the main menu bar but the SUB menu has wring colours – how do i change them?
thanks musicdoc1 but Customize > Colors & Backgrounds. is too basic
-
-
-
-
-
after that muscial interlude – lols
does anyone have code for changing all the background colours in 20-12
-
Neither musicdc1 nor I provide CSS editing help. You will have to wait for another Volunteer or Staff to assist you here.
-
-
Hi there, you can change the background color (outside the content area) at Appearance > Customize > Colors & Backgrounds. The content area has an RGB transparent white color applied to it. The easiest way to have it all the same color would be to set the color in the Customizer and then set the color to transparent in the content area with CSS. This would be the code to do that.
.site { background-color: transparent; } -
I want to be able to independently change the colour of each “panel”.
Including the content areas, -
I’m not sure I understand what you mean by panel. Paste the following into your CSS in the Customizer. I’ve set a different color for all the main divs that make up a page. You can identify the divs by the colors I’ve used.
.site { background-color: yellow; } .wrapper { background-color: cyan; } #colophon { background-color: lime; } .site-header { background-color: orange; }You already have a color set for the navigation.
-
Thanks again – is it possible to set colophon and .site-header to go right to the left and right of the page rather than leave a border down the side
-
First change you .site rule to this.
body .site { background-color: #fff; padding: 0; max-width: 71.42854rem; }and then add the following
#content { padding-right: 2.85714rem; padding-left: 2.85714rem; } #colophon { max-width: 100%; padding-left: 20px; padding-right: 20px; } hgroup { padding-left: 20px; padding-right: 20px; } -
now that looks a million miles better thank you
now i can play with the colours !!!just one final thing is how do I “pad” the menu bar to just push it right a bit.
-
-
Thank you so much @thesacredpath I managed to change a bit more on my blog with your help here. Much appreciated.
-
- The topic ‘changing background colours twenty twelve’ is closed to new replies.