itmattersaz
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Jolene] Centering and changing size of header text.site-info-text-top {
margin-left: 25%;
}
I added this to my CSS I it shifted the header “box” over which would be great but now the background shows through in the upper left corner of the page.
I really like this theme so I don’t want to change. Didn’t think this one thing would be so difficult.Forum: Themes and Templates
In reply to: [Jolene] Centering and changing size of header textThat did great for changing the font size and color but does nothing to center the text on the page. It appears that the Site title is in a box that only fits part of the way across the header. I’m thinking this because if I enlarge the fond to say 64px it starts a second line of text.
Forum: Themes and Templates
In reply to: [Jolene] Centering and changing size of header textThis is still in testing, the domain name will change after it goes live but ….
http://eae.ed0.myftpupload.com/Forum: Themes and Templates
In reply to: [Jolene] Centering and changing size of header textThat didn’t seem to make a difference. Also when I view the source of the published page I don’t see my CSS entries anywhere. does that mean that my “custom” child CSS is not being “injected” into the page?
Forum: Themes and Templates
In reply to: [Jolene] Centering and changing size of header textI thought I had tried that already. Is it possible that my CSS is not combining properly with parent CSS? And thank you for your help.
Child CSS
/*
Theme Name: Jolene Child
Theme URI: http://example.com/jolene-child/
Description: Jolene Child Theme
Author: John Doe
Author URI: http://example.com
Template: jolene
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready
Text Domain: jolene-child
*/<style type=”text/css”>
.site-title {
font-size: 36px;
}
.header-is-on .site-info-text {
left: 35%;
}
</style>Child functions.php
<?php
add_action( ‘wp_enqueue_scripts’, ‘theme_enqueue_styles’ );
function theme_enqueue_styles() {
wp_enqueue_style( ‘parent-style’, get_template_directory_uri() . ‘/style.css’ );
wp_enqueue_style( ‘child-style’,
get_stylesheet_directory_uri() . ‘/style.css’,
array(‘parent-style’)
);
}Forum: Themes and Templates
In reply to: [Jolene] Centering and changing size of header textSorry about that header text/title of the site.