Hello
I am working on a site with the de naani theme.
It is very easy to customize and I enjoy working with it but I encountered an issue with the header menu (the standard WordPress one or if I use a custom one).
The menu does not want to center itself completely. There is a larger space on the right of the menu.
I tried several CSS modification but nothing has worked so far. Do you have any idea to make it work ?
Site address : https://www.lesheuresdujour.com
]]>Warning: call_user_func_array() [function.call-user-func-array]: First argument is expected to be a valid callback, ‘none’ was given in /home/content/v/i/c/vicollins2003/html/SCCC10TH/wp-includes/plugin.php on line 235
]]>I am using the de naani theme and I can’t see how to change the sidebar title spacing of the posts. I would like each post TITLE to be separated by at least one line break, rather than to be listed without a break between them. My site is https://www.journalofchinesehumanities.com. Can someone tell me what part of the .css I need to change and what that code would look like? Thanks
]]>I used this and it worked for hiding the page title on the front page. Again, its up to individual choice on how you tweak. I’m simply sharing what I have tried that has worked at any given time. the code below should actually work for just about any theme, child or not.
‘
function remove_front_page_title($title) {
if ( is_front_page() && in_the_loop() ) {
return false;
} else {
return $title;
}
}
add_filter(‘the_title’,’remove_front_page_title’);
‘
There are different ways for doing this but I found using the CSS file easiest. I use denaani for smoke testing different ways of doing things so sure I could have used a function, coded the header for it or even coded the front page template. I settled on this though. If you don’t use it, use developer mode in your browser (F12 or Firebug in Firefox) to get most IDs and classes you might want to hide or alter.
.page-id-2137 #site-navigation {
display: none;
}
]]>
Just thought I would add. I forgot the website that helped put this together but here it is as I use in denaani child theme. Its commented.
function my_theme_styles() {
global $wp_styles;
$parentOriginalHandle = 'twentytwelve-style';
$parentNewHandle = 'parent-style';
// Deregister our style.css which was enqueued by the parent theme so we control
// the versioning ourself.
$parentStyleVersion = $wp_styles->registered[$parentOriginalHandle]->ver;
$parentDeps = $wp_styles->registered[$parentOriginalHandle]->deps;
wp_deregister_style($parentOriginalHandle);
// Enqueue the parent theme's style.css with whatever version it used instead
// of @import-ing it in the child theme's style.css
wp_register_style($parentNewHandle, get_template_directory_uri() . '/style.css',
$parentDeps, $parentStyleVersion);
// Enqueue our style.css with our own version
$themeVersion = wp_get_theme()->get('Version');
wp_enqueue_style($parentOriginalHandle, get_stylesheet_directory_uri() . '/style.css', [$parentNewHandle], $themeVersion);
}
// Run this action the parent theme has enqueued its styles.
add_action('wp_enqueue_scripts', 'my_theme_styles', 20);
]]>
This is a nice theme with the right balance of offering that I had been searching for and I am loving every minute of it. My question is in regards to the plugins, am I correct in thinking the plugins are not completely necessary and that I can remove the code sections pertaining to the TGM plugin? Just asking because I don’t want to step on anyone’s toes.
]]>Hello,
I’ve recently changed my theme to de naani but it automatically changed so that my posts are shown summarised on my front page. I want to have them in full length, how do I change this?
Thank you
]]>Hello,
I use the “de naani” them for my website (www.organizingaddicts.com) and i want to edit the footer, that is to put some color as a background and add some widgets.
At the Theme Customization i have the options “Footer 1, 2, 3 and 4”, which all add widgets at the left side of the page. I want my page centered. Or at least symmetrical.
Also, can i edit the “Proudly powered by WordPress” label and replace it with one of my own?
Thank you in advance for a quick response.
]]>Using “de naani” version 1.0.4.
Created a couple of sidebar widgets. But they always appear at bottom, below the post or page content and above the footer.
The theme Twenty Twelve correctly displays them on the right side.
Using “de naani” version 1.0.4.
Created a couple of sidebar widgets. But they always appear at bottom, below the post or page content and above the footer.
The theme Twenty Twelve correctly displays them on the right side.
hi
how can i make this theme full with ( i dont need any side bar)
thnks
Azriel
Hello,
I’m trying to create a child theme, and I keep getting a broken message. I’m putting it as de-naani for the parent theme. Is this the parent theme?
]]>I just upgraded to version 1.0.4 now every thing is centered.
]]>