Hi again @athomewithazlie.
@sterndata – I requested that she post here as I was going to help, but the original post was on the WordPress.com forums so wanted to keep things separate from there.
There are a few differences between the two themes, but let me let me just quickly run you through the tweaks I looked at.
There’s a few bits to change in the CSS, but the main parts are .header and .container classes. Note, there are multiple versions of these declarations but it’s nothing to worry about!
Under Appearance > Editor you’ll want to edit Styles.css (this should be automatically selected)
FIRST! Copy all of the CSS code from the edit box you’ve just opened and save it to a new text file on your computer just to be safe. This is advised with all large edits you make. ??
Find @media all and (min-width: 1200px)
and under here you want to edit/add to .container and .header classes:
.container {
margin: 0 auto;
width: 1020px;
padding: 0 10px;
overflow: hidden;
background-color:#fff;
and
.header {
position: relative;
width: 1020px;
margin: 0 auto;
padding: 40px 10px;
background-color:#fff;
The things that I’ve changed in this, as you’ll see, is made sure that both declarations have background-color: #fff
(this is a white background) and edited the margins and padding to make sure that they look good on the page and wrap around the content neatly. Make sure you only edit the background-color, margin, and padding. The rest should remain the same!
Repeat this with the section under @media all and (min-width: 481px) and (max-width: 1199px)
making sure you only edit background-color, margin, and padding and you should be golden!
If you get stuck, please don’t hesitate to let me know.
-
This reply was modified 8 years, 1 month ago by
demasiri.
-
This reply was modified 8 years, 1 month ago by
demasiri.
-
This reply was modified 8 years, 1 month ago by
demasiri.