Forum Replies Created
-
AuthorPosts
-
simhem74
MemberSorry, ignore my above post (#5104). Everything suggested regarding the child theme functions.php file and the child-custom.css in this thread works for me.
simhem74
MemberI does not work for me!?
My child functions.php looks like this: `<?php
add_action(‘wp_loaded’, ‘child_create_objects’, 11);
function child_create_objects() {
}
add_action(‘wp_print_styles’, ‘add_child_custom_styles’);
function add_child_custom_styles() {
wp_register_style(‘style-child-custom’, get_stylesheet_directory_uri(). ‘/child-custom.css’, array(‘style-skin-css’), false, ‘all’);
wp_enqueue_style(‘style-child-custom’);
}?>`
Do I need to add @import url(“../extinct/custom/custom.css”) to the child-custom.css also?
simhem74
MemberI tested with a child @import url(“../extinct/css/skins/default.css”) but it does not work.
simhem74
MemberIt is wired because I also tried to delete the page and create a new one, but it also breaks the line!
Your suggestion did not work 100% for me. But when I added your suggestion to the CSS and changed float from left to none in #primary-menu > ul.menu > li > a it worked.
Anyways I will post the URL when it is online for you to see.
simhem74
MemberMaybe I should mention that setting it to 130 fixes the issue, but I can not figure out how to do that.
-
AuthorPosts