Reply To: GeneratePress Child Theme

Home Forums Support GeneratePress Child Theme Reply To: GeneratePress Child Theme

Home Forums Support GeneratePress Child Theme Reply To: GeneratePress Child Theme

#146076
bdbrown

Hi Peter. You would download the child theme zip file to your local computer. Then go to Appearance > Themes > Add New > Upload Theme > Choose File. Select the zip file you downloaded, then install and activate it. Then add some CSS to the child theme style.css file using the Editor.

This will align it to the left:

/* move logo above site title left aligned */
.site-logo {
    display: table-header-group;
}
.site-branding {
    display: table-footer-group;
}

This will center it:

/* move logo above site title and centered */
.inside-header {
    display: table;
}
.site-logo {
    display: table-header-group;
}
.site-branding {
    display: table-footer-group;
    text-align: center;
}

Adding CSS: https://generatepress.com/knowledgebase/adding-css/