wpuser155
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Nisarg] Edits in post not reflected on published pageI am in text mode when editing, thanks.
Forum: Themes and Templates
In reply to: [Swell Lite] Site title off-centerHi,
Still having issues with the site title being off-center on a small screen. Any ideas ?
Forum: Themes and Templates
In reply to: [Swell Lite] Change Headline LinkTo the theme author, any ideas on how to change this ?
Thanks
Forum: Themes and Templates
In reply to: [Swell Lite] Increase number of posts per pageAh, missed that setting, thanks.
Forum: Themes and Templates
In reply to: [Swell Lite] Headline linkIt works perfectly, thanks !
Forum: Themes and Templates
In reply to: [Swell Lite] HTML Changes Disappearing<h7 class=”heading”>CONTACT INFORMATION:</h7>
Forum: Themes and Templates
In reply to: [Swell Lite] Adding Home link to main menuGreat, thanks !
Forum: Themes and Templates
In reply to: [Penscratch] Child themeThis is what I have:
<?php
function theme_enqueue_styles() {$parent_style = ‘parent-style’;
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 )
);
}
add_action( ‘wp_enqueue_scripts’, ‘theme_enqueue_styles’ );
?>Forum: Themes and Templates
In reply to: [Penscratch] Child themeThanks for the reply kafleg. I have tried both code options listed on the codex page (and on your psge as well) in my child themes function.php but my child style.css is still not getting loaded last. I have this working for my twentyeleven theme but not sure why the problem here.