• I′m obviously not putting code in the correct places because no matter how many times I try to do what the help pages say, I cannot make my header the full width of the page, nor make the content sit in full width of the page. I have a child theme and I have read a ton of help pages on it but I am not a coder so I must be placing it wrong somewhere. I have been working on this for way too long to not be successful.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Please post a link to your site. It will be easier to see what you’ve done so far and what needs to be done to get it the way you want.

    Thread Starter fenocin2014

    (@fenocin2014)

    wordpress.fenocin.org

    Thread Starter fenocin2014

    (@fenocin2014)

    oh and I′ll pretty soon also need to know how to get it to just be fenocin.org (you know, take the wordpress away so it′s official).

    OK, the first thing you should know is that it doesn’t look like you created the child theme correctly. You are supposed to create a separate folder for the child theme, either by using an FTP client like FileZilla or your host’s control panel (cPanel). For example, the Twenty Fourteen theme’s folder looks like this:
    /wp-content/themes/twentyfourteen
    So you normally create a child folder that looks like this:
    /wp-content/themes/twentyfourteen-child
    And then you create your new style.css file in that folder.

    Second, you don’t copy the entire contents of the parent style.css file over to the child theme’s file. This line of code automatically does that:

    @import url("../twentyfourteen/style.css");

    The only rules you need to include are any rules which you create that overrides or adds to the parent style.css file.

    With all that being said, in most cases, if the only changes you are making is to the CSS, then you can do it much easier by using a CSS plugin. That way, you don’t need to create a child theme, you just add your CSS to the plugin’s custom CSS field. The plugin that I like is Custom CSS Manager.

    When you say you can’t get the header to go all the way across, are you referring to the featured content? You are trying to move the left sidebar down and move the featured content to the left?

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘[Theme: Twenty Fourteen] Home Page Help’ is closed to new replies.