Hello @maxedoutecom,
Please check if you have set CSS in live CSS or custom code -> custom CSS from the theme panel.
Also, please provide some screenshots with your settings and the link.
Thank you!
Hi,
“In this case, can I remove the articles section to read articles completely on AMP posts ?”
Unfortunately, I do not understand exactly what you mean, can you please provide some more details?
Do you want to remove the âLATEST ARTICLESâ section from the amp ? If is so, then it can be done only with custom css.
If you want to use amp only on posts, then you can do this from here -> https://i.imgur.com/KmvG22R.png
Thank you!
Hi,
The homepage from the Newsmag voice can be edited using the tagDiv Composer -> https://forum.tagdiv.com/tagdiv-composer-tutorial-2/ -> https://i.imgur.com/Tr3f6Ed.jpg
The underline from the homepage is set with a custom css from the demo files -> https://prnt.sc/TMc7fh9DPJuS to change it you need to set another custom css for the code -> https://i.imgur.com/1FvjUdi.jpg
.td-newsmag-voice .td-pb-span4 .td_block_template_1 .block-title span:after {
background-color: red;
}
This code need to be set in the theme panel > custom code > custom css.
I hope this will help you!
Thank you!
I am also experiencing this same problem. Can someone take a look at it for me? or provide me with the custom css i should add?
i deleted a section and element but the css code still there
i even added new section and deleted the old one but still wont change.
pls help.
i even try to change my header section
still the same
Hello,
The remain problem seems to be from an inline css -> https://i.imgur.com/qLc5D1x.png this is not changing the opacity from 0 in 1. Most of the time this kind of problems has been caused by cache and optimize plugins (settings related to css minify, image loading).
Thank you!
Hi,
If the tags are removed from the cloud template, you will still be able to ad tags in the post (in backend) only that those will not be displayed for users, practically is the same like when you hide the element but is consuming less resources because the element is no longer need to be loaded.
Now if you want to hide the element, then you can do it using the tagDiv Composer, select the element and in css tab you’ll see an option to display the element, set that on hidden -> https://i.imgur.com/AGYVgBJ.png
Thank you!
Hello,
I just checked and seems this website doesn’t have our theme, is a default theme. https://i.imgur.com/4RUlSvN.png
Please let me know if you remove it.
Also, if you don’t install it, you have to upload only the theme zip file, not the whole package which contains other items
â https://help.market.envato.com/hc/en-us/articles/202821510-Theme-is-missing-the-style-css-stylesheet-error
Install via WordPress -> https://forum.tagdiv.com/install-via-wordpress/
Install via FTP -> https://forum.tagdiv.com/install-via-ftp/
Requirements for Newspaper => https://forum.tagdiv.com/requirements-for-newspaper/
After installing the theme and activating it you will find in the Prebuilt websites all the theme demos and you can import whatever demo you want => https://www.screencast.com/t/6rf5g0Dxc0K
If you have a header template from Cloud Library, you can edit the logo and header with tagDiv Composer => https://www.screencast.com/t/zuhG8uGZe, select the header and you can remove the logo image/text and add a new logo =>https://www.screencast.com/t/WSquHPNqT https://www.youtube.com/watch?v=HXQQygkCCJo
If you have a standard template then you need to go in Theme Panel -> Header -> Logo and Favicon => https://www.screencast.com/t/jk2I1xs4FH2
Hope this helps you!
Thank you!
Hi,
I just tested the embed element and Instagram on a default theme from WordPress and it seem that it is the same (is no longer working), so the only solution remains the embed code.
Now about the center align some how for me when I use the embed code for Instagram, this is in full width and the one from twitter is automatically set center -> https://i.imgur.com/qJmT8Au.png
Can you please provide a link where we can inspect the situation for you? Maybe we can figure it out what is happening or at least we can provide a css to align the embed to center.
Thank you!
Hi,
I believe that the siteground optimizer has some settings for css and js, so it is possible some of them to interfere with the theme. Maye the css is minfy and set as inline or something like this.
Please check the settings related the those.
I hope it will help you!
Hi,
1. To resolve this problem please be sure that the mobile theme and amp settings are like this:
-> https://i.imgur.com/8RWemCR.png -> https://i.imgur.com/mD7Gjgb.png -> https://i.imgur.com/KtdEgAg.png
2. To change the Exclusive text an color can be change for desktop version using the settings from the block -> https://i.imgur.com/ZF02usD.png now for amp it can be changed only with a custom css like this one:
https://i.imgur.com/g53emAn.png
.td-module-exclusive .td-module-title a:before {
content: "Premium";
color: #fff;
background-color: #555;
padding: 2px 8px ;
}
The css need to be set in this place -> https://i.imgur.com/5gmi8Gn.png
I hope this will help you!
Thank you!
Hello again,
After a few days of peace, the css gets crazy again.
It happened when we uploaded a new post.
I found it could be the host problem (Siteground) so I installed the siteground optimizer. It solved the problem.
But now the header dropdown menu stops to work.
Correct (list drops down when hovered): https://imgur.com/2VNRcGL
False (list doesn’t drop when hovered): https://imgur.com/JauZYHH
Do you know what setup I can alter in SG optimizer?
Many thanks!
Best,
Yen
Hi, i think it’s a little late but perhaps this works for somebody đ
This is an add for the function render:
//get the js for this block
$buffy .= $this->get_block_js();
function dismount($object)
{
$reflectionClass = new ReflectionClass(get_class($object));
$array = array();
foreach ($reflectionClass->getProperties() as $property) {
$property->setAccessible(true);
$array[$property->getName()] = $property->getValue($object);
$property->setAccessible(false);
}
return $array;
}
$array=dismount($tdb_state_single);
$parcial1=$array[“wp_query”];
$author=cap_get_coauthor_terms_for_post($parcial1->queried_object_id); //function for get the coauthor for post: #####
Right now i’m suffering with a different implementation for the co-author in the post perhaps you could help me:
function render( $atts, $content = null ) {
parent::render( $atts ); // sets the live atts, $this->atts, $this->block_uid, $this->td_query (it runs the query)
global $tdb_state_single;
$post_author_data = $tdb_state_single->post_author->__invoke();
$add_text_pos = $this->get_att(‘add_text_pos’);
$buffy = ”; //output buffer
$buffy .= ‘<div class=”‘ . $this->get_block_classes() . ‘ tdb-post-meta” ‘ . $this->get_block_html_atts() . ‘>’;
//get the block css
$buffy .= $this->get_block_css();
//get the js for this block
$buffy .= $this->get_block_js();
//NUEVOS AGREGADOS
if ( function_exists( ‘coauthors_posts_links’ ) )
{
wp_reset_query();
wp_reset_postdata();
$buffy .= ‘<div class=”tdb-author-name-wrap”>’;
$buffy .= ‘<style>
.tdb_single_author a{vertical-align:unset !important;}
</style>’;
$buffy .= ‘<span class=”tdb-author-by”>Por ‘ . coauthors_posts_links( null, null, null, null, false ) . ‘</span> ‘;
}
$buffy .= ‘</div>’;
$buffy .= ‘</div>’;
$buffy .= ‘</div>’;
return $buffy;
}
This print two times my post content i know it’s for the wp_reset_query but i don’t know how to make it work in an easy way, not the hard one.
Hi Team,
I am now looking for the way to add a “mobile menu” WITHOUT using the plugin “Mobile theme”.
This plugin (= Mobile theme) is not suitable and does not display as we wish.
To adjust the website with default style + standard pack is the best way to customizing the design (= with CSS).
I do notice that we can change the mobile menu by installing the plugin.
Still, we do not wish to install this and do some more work on mobile. = the default style is the best.
Therefore, I would like to know if there is any way to change the menu ONLY mobile WITHOUT installing the mobile theme.
Creating the menu for Mobile + adding “mobile menu” on the menu list of WP (with Header Menu, Footer Menu and Top Header Menu). This will be a normal way to do it so.
Hooks, shortcode might work. I will check on that too.
Thank you for your support in advance.
Hello Calin
No need for custom css for your newspaper theme composer do the job.
I want to shift text from heather to above image area ( screenshot) but is like having two magnet same poles pushing content in not wanted direction.
Regards
Alex
Hello,
I just did a test and for me the takes the heading -> https://i.imgur.com/XrmpoOk.png
I saw you have LiteSpeed and maybe some settings to optimize the CSS, which can be the cause of this problem, so please remove the CSS generate. https://i.imgur.com/ZEvXTwX.png
Thank you!
Thanks it works.
will be awesome if there is a possibility to resize and center the image, unfortunately the category image now it’s really strange…
i have many categories and create a picture with the exact dimension will be really painful đ
https://elettronauti.it/categoria/auto-elettriche/
let me know if there is a way, maybe with an option or a css to fix this.
thanks!
The CSS has not been altered. There are no plugins yet, other than the SiteGround defaults.
Hi Satyajit,
If you have custom functions then you can set theme in the child theme on functions.php also the css can be set in the style.css (the css code can be also set in the theme panel in custom css section).
I hope this will help you!
Thank you!
Hello,
Please let me know if you have used a plugin to optimize the CSS.
If yes, please remove it.
Thank you!
Hi VeriArtem,
As I can see the problem with the text that is displayed when the submenu is opened it is related to an opacity/transparency that was been set on the submenu element. Or maybe you set a custom css somewhere -> https://i.imgur.com/8Trjpvg.png
Now if you do not find the css option you can use this custom css:
body .tdb_header_menu {
z-index: 9999!important;
}
This need to be set in the theme panel > custom code> custom css.
Also, when you set a row it will display with green in the place where it can be set and it also display if is in the content, footer or header. You can simply drag and drop the elements from the header in the content section.
Thank you!
Hi ilmetu,
For the moment our theme do not use that new css. But our designers will check the code and if this will provide better results, then it will be add.
If I remember correctly, your website is https://elettronauti.it/ and I see that now this has better results -> https://i.imgur.com/NRAz93d.png
Thank you!
Hi there,
following some gtmetrix howto’s i learn the magic content-visibility thing…
my website is really big and i get a really bad score in terms of loading time, so i try my best to solve the problem.
I manage to get from F to D and at the moment, the only thing i need (it seems) it’s to Avoid an excessive DOM size so i search in the web and the only thing i found it’s to paginate or reduce the things inside the page… ok … it’s not my case…
but i found also this CSS properties : https://web.dev/content-visibility/
how can i tag rows or flex blocks with this css rule?
thanks
Hi,
If you want that the code to be apply only on posts and only on b and strong elements, then you need to use a custom css, like this one:
.tdb_single_content b, .tdb_single_content strong {
font-weight: 700;
}
You need to set the code in the theme panel > custom code> custom css.
Thank you!
As I wrote, I am using a template plugin for mobile devices. Probably she does not have any styled classes for mobile devices.
I use manual code insertion in articles because each article has different images.
Please check this problem by inserting in the article:
<div class = “td-visible-desktop”>
</ div >
<div class = “td-visible-tablet-landscape”>
</ div >
<div class = “td-visible-tablet-portrait”>
</ div >
<div class = “td-visible-phone”>
</ div >
Of course, with the plugin of the mobile template running. Because it is rather she does not have added correct styles in css, which will disable graphics for higher resolutions. I conclude this because computers only display one graphic.