@nixonradio:
You're welcome!
@mrstringer2012:
a) Yes, that's what I'm telling you. So yes, the stuff in the CSS editor may eventually become long.
But keep in mind that when you apply the same change to different elements, you combine the respective commands into one. For example, if you want a white bg to both the footer widget area and the credit area, you won't write this:
#colophon {
background-color: #fff;
}
#copyright {
background-color: #fff;
}
you'll write this:
#colophon, #copyright {
background-color: #fff;
}
b) Chateau has four footer widget areas, designed to show up side-by-side below the main column; so the width of each widget area is 1/4 of the main column width (I'm simplifying - actually it's less, because of the margins). Your question can't be answered before you decide how exactly you want to change that: Three widget areas side-by-side in place of four? Four widget areas in two rows of two? Four widget areas side-by-side but spanning the width of main column plus sidebar? Widget areas of unequal width? Other? And don't forget that a) you don't have to use all four areas, b) each area accepts as many widgets as you like.