Hi,
thanks for your post.
If you really have check the “Use Default CSS” checkbox, this likely is a similar problem as the one with wp_footer();:
It seems that your theme is missing the call to wp_head(); right before the closing </head> HTML tag in its “header.php”.
Regards,
Tobias
Thanks a lot for you fast answer !!
wp_head(); solved the problem !
But i have a huge problem now with my template ! :/
Only the table is on the page and full size …
I tried to change wp_footer(); by get_footer(); then i just got the footer without Css.
I still dont understand !
I think my template is bad written …i m still a noob with wordpress …
If you know what happen, thanks a lot,
if not, tanks a lot for this plugin !
Edit: I checked the wp where i did my first try and i use get_header();
NEVER mind, its working find now, i still have a problem with my footer and the js but its ok.
I have to know how to use wp_head() ! (i just put it inside my header and it worked…i dont know why but it solved 😉
Thanks again !
Hi,
get_header(); and get_footer(); are theme functions, they are necessary for the actual layout of the theme. Nothing should be changed with them!
wp_head(); and wp_footer(); are functions that allow plugins to add certain things (like CSS or JavaScript code) to the page. They should be standing before </head> and before </body>, respectively.
Best wishes,
Tobias
I love you !
Thanks again !
Hi,
sure, no problem 🙂 You are very welcome!
Best wishes,
Tobias