• Resolved Helpkidswithmath

    (@helpkidswithmath)


    hi since wp-starter is not supported by wordpress, does this mean that we can no longer use this in our website?

    I have tried to download it but its not downloading

    thanks

Viewing 8 replies - 1 through 8 (of 8 total)
  • Thread Starter Helpkidswithmath

    (@helpkidswithmath)

    ok so i decided to create a child theme of my own!!

    I am trying to copy the header.php file from the wp-forge folder to my child folder but the copy function is greyed out so it won’t let me copy the file over.

    I tried downloading the file to my desktop and then upload back to my child folder but the file size is showing up as 0KB.

    I tried duplicating and renaming the header.php to header-child.php with the intention of renaming back to header.php. While the file copies over fine when renamed, once I try to change the name back to header.php, the file size goes back to 0KB from 2.8KB

    Any suggestions as to what I am doing wrong?

    Thanks

    Theme Author ThemeAWESOME

    (@tsquez)

    WP-Starter is available for download from my website, under themes in the menu.

    I don’t know why you ate having issues copying the file over.it may have something to do with your server configuration.

    Thread Starter Helpkidswithmath

    (@helpkidswithmath)

    Thanks for the reply. I have now successfully downloaded the wp-starter theme.

    Thank you.

    I will now attempt to make the changes you mentioned in a different thread about editing css file to remove date and author.

    Theme Author ThemeAWESOME

    (@tsquez)

    Awesome. Please let me know how it goes.

    Thread Starter Helpkidswithmath

    (@helpkidswithmath)

    Ok.

    I thought that I would be able to go to ‘Editor’ in the appearance tab and change the code there. But I don’t see the code, just tabs that reference the code.

    Can you tell me instructions about how to make the changes. Eg where should I go to get the Css code to make my changes.

    Thanks
    (I still feelings way in the dark:(

    Theme Author ThemeAWESOME

    (@tsquez)

    Which code are you referring to? I think you may need to review just exactly what a child theme is and how it works. Please look at the following links:

    https://codex.ww.wp.xz.cn/Child_Themes

    http://www.elegantthemes.com/blog/resources/wordpress-child-theme-tutorial

    http://premium.wpmudev.org/blog/how-to-create-wordpress-child-theme/?utm_expid=3606929-32.jVSGECWYSiWZJXI3ODEEGA.0&utm_referrer=https%3A%2F%2Fwww.google.com%2F

    or you can do a search for yourself: wordpress child themes

    there are a ton of how to’s and tutorials. Keep in mind that they apply to all child themes

    If you are referring to css then you need to find the element you want to style and add it to your child theme css. Your child theme css is pulled in first before the parent theme, so any changes you make in the child theme come first.

    So for example, lets assume you want to add colors to the main container that wraps around the header. You would look for .header_container in the parent style css. When you find it you will notice it looks like this:

    /* main containers */
    .header_container,
    .nav_container,
    .content_container,
    .sidebar_container,
    .footer_container {
    	background-color: transparent;
    	max-width: 100%;
    	width: 100%;
    }

    So the .header_container background color is set to transparent, but you want it to be blue. So you open up your child theme style sheet and add the following:

    .header_container {
    	background-color: blue;
    }

    Now the .header_container will have a background color of blue.

    Now if you want to change something in the header, lets say for example you want to add some code, you would copy header.php from the parent theme into the child theme. Then you would add your code.

    Hope this made sense. I suggest you review anything and everything you can on child themes and how to use theme.

    Thread Starter Helpkidswithmath

    (@helpkidswithmath)

    Thanks. I’ll get into reading more on child themes.

    And thank you for the prompt support. Much appreciated.

    Theme Author ThemeAWESOME

    (@tsquez)

    You are very welcome. Please leave a review if possible, thank you. Enjoy!

Viewing 8 replies - 1 through 8 (of 8 total)

The topic ‘child theme’ is closed to new replies.