TAGDIV Composer ok but not Home

Posted in: Newspaper
Post count: 3

Hello,

I have just installed this template and everything is ok except the home. I have imported a default homepage with several elements (flex blocks, social blocks and everything) and when I am on tagdiv composer everything is ok, but when I load the homepage, for example Flex Block 3 is getting full stretch and there is no space for social counter widget on the right.

The template loads both style.css (parent and child theme) but something is getting wrong.

Could you help me please to solve it?

Thank you

Post count: 3

Solved! Problem was the css was not load correctly.

Post count: 4

I’m experiencing a similar issue, how/where did you solve the CSS issue?

Post count: 35449

Hi @jbaldera,

Please make sure that you’ve installed the theme according to our documentation -> https://tagdiv.com/how-to-install-newspaper-theme/

Please make sure that all the settings are like in our requirements, please follow the guide carefully
https://forum.tagdiv.com/requirements-for-newspaper/
and please increase all requirements that are lower, and follow all steps.

Please make sure that you do not have a plugin conflict with untested plugins, please deactivate all non theme plugins and child theme ( if you are using ), clear all cache and try again.

If there is still a problem, please provide some more details and some screenshots.

Thank you!

Post count: 3

Hello @jbaldera,

You should insert this code on your functions.php on your child template:

add_action( ‘wp_enqueue_scripts’, ‘theme_enqueue_styles’, 11);
function theme_enqueue_styles() {
wp_enqueue_style(‘td-theme’, get_template_directory_uri() . ‘/style.css’, ”, TD_THEME_VERSION, ‘all’ );
wp_enqueue_style(‘td-theme-child’, get_stylesheet_directory_uri() . ‘/style.css’, array(‘td-theme’), TD_THEME_VERSION . ‘c’, ‘all’ );

Viewing 5 posts - 1 through 5 (of 5 total)
The forum ‘Newspaper’ is closed to new topics and replies.