@Calin What’s happening, this has been happening for quite some time now, everything I click on appears with an orange outline and I don’t know what to do to fix it, I spent hours and hours trying to find a solution via the hosting terminal, the only thing I found via the terminal and was interpreting along with it. This is the REAL CAUSE OF THE ORANGE OUTLINE
The orange is NOT coming from:
❌ the td-cloud-library
❌ external minified CSS
❌ a separate plugin
It’s coming from the Newspaper theme (TagDiv) directly from:
text
wp-content/themes/Newspaper/style.css
And mainly from the files:
text
/wp-content/themes/Newspaper/includes/td_css_generator.php
/wp-content/themes/Newspaper/includes/wp_booster/td_wp_booster_functions.php
What’s happening:
✅ Newspaper has a global primary color variable (accent color)
✅ This color is set to #ff6600
✅ The theme uses this color to generate dynamically: I’ve looked everywhere to see how to remove this in some theme setting and nothing, nothing, look how it is That’s bad, https://ibb.co/xKbTTBg2
https://ibb.co/wFs0qrBw
https://ibb.co/VYDF9sgJ
https://ibb.co/gZczySt5 Everything I click on shows this orange outline, I don’t know what to do, I’m asking for your help to solve this.
Hi,
It appears that after the first ad, the rest of the theme is affected by a style that sets visibility: hidden. This is being applied via inline CSS coming from the ad itself – https://prnt.sc/4tm7UsK2NSIA – https://prnt.sc/cjTlchm8C0O_
Hi
In case you used the label for a custom label, then you must add the link where you want to go to that custom label when it is clicked https://prnt.sc/mtJLYp-svk8z. Otherwise, it will act as it does now.
Now, in case you do not want to manually set the links and you want those elements to no longer be clickable, you can use this custom css:
.td-post-extra-category {
pointer-events: none;
cursor: default;
}
Set the code in the theme panel > custom code > custom css.
Thank you!
Hi,
No, there’s no issue. The CSS code is targeting an element within the TagDiv Composer that supports custom styling. This approach is commonly used when you want the styles to apply only to a specific page or template. https://prnt.sc/AvVniXmsT4SB
In this case, the RTL demo requires some additional CSS adjustments to ensure certain elements display correctly in the RTL version.
Thank you Calin,
here is the situation: https://www.pignetotv.it/wp-content/uploads/Default-PRO-vs-Default-RTL-PRO.png
Above is the “Header Template – Default PRO”, below is the “Header Template – Default RTL PRO”: in the “Header Template – Default RTL PRO” there is a line of code (CSS code) that i don’t see in “Header Template – Default PRO”.
The exact same situation also occurs for “Homepage Template”, “Footer Template”, etc.
Thank you very much for your attention.
Hello,
I’m using the Newspaper theme on my website and I’m experiencing an issue on mobile devices.
When the user scrolls down the page, the mobile header disappears as expected (sticky hide on scroll), but it leaves a horizontal line.
It looks like some kind of leftover header height or placeholder is still being rendered even when the header is hidden.
I tried disabling sticky header and adding custom CSS, but the issue still persists.
Could you please help me fix this or let me know the correct way to completely remove the header space when it is hidden on scroll?
Website: http://www.terraadentroexpedicoes.com
Thank you in advance.
Ok Calin,
a last question: opening with the TD Composer my Pre-designed Templates (Default PRO) of the Cloud Library, i don’t see graphically a line of code (CSS code) that i see in other Pre-designed Templates (for example, Default RTL PRO): this apparent lack of code (CSS code) in my templates is a problem? Or i see the line of code (CSS code) in other templates because are different templates than mine?
Thank you!
Hi,
You can try to set the cs sin a different place, for example, in the theme panel > custom code> custom css. Also, the above example will work if you are using a cloud template for an article; if it is a standard template, it will not work.
Thank you!
I understand what you mean, thanks.
I added a css rule in the template .css of Newspaper or in .css rule of WordPress.
Unfortunately that didn’t work. Will search further.
-
This reply was modified 3 months by
DocDigit.
I see, in this situation, you could use a css like this one:
.tdb_single_content p:first-child.dropcapp3:first-letter{
font-weight: 900;
}
Just add any css you need for the first Drop Cap, the css will apply only on the drop cap that is on the first paragraph inside the post
Hi Calin,
Let me explain:
We can change the dropcap style for every block of text. It would be great if it would be possible to set the drop cap in the first block of the article to BOLD in .css
Thank you!
This looks like a frontend issue, not a content or backup problem.
Since the error appears on all pages, persists after restoring backups, and keeps multiplying when the page is left open, it’s very likely caused by JavaScript or caching interfering with the builder.
Please try the following steps:
Disable all JS/CSS optimization:
Turn OFF JS Combine
Turn OFF JS Delay/Defer
Turn OFF CSS Combine
If Cloudflare is active:
Disable Rocket Loader
Purge all Cloudflare cache
Clear all caches:
LiteSpeed Cache
Server cache (Hostinger)
Browser cache
Test the site in Incognito mode
Temporarily disable all plugins except the theme and see if the issue persists
This should help identify whether it’s caused by caching or a plugin conflict, which is the most likely reason for this error.
Hello,
i just imported the Pre-designed Templates for my Newspaper theme (Default PRO) from the Cloud Library and i noticed a difference between the “Default PRO” and “Default RTL PRO” templates (header, footer, etc.): opening the templates with the TD Composer, the “Default RTL PRO” templates displays a line of code (CSS code), while the “Default PRO” templates don’t. To properly use my theme’s original template (“Default PRO”), which of the two templates do you recommend? Could the lack of code (CSS code) in the “Default PRO” templates be a problem? (I’ve always noticed problems with my site’s indexing)
Thanks a lot!
Can you tell us how I can default the drop cap style of only the first character of the first block text to BOLD in CSS?
See for an example https://cloudzeeland.nl/de-onzichtbare-westerse-bril-van-ai/
Hi,
Another thing you can check is whether the general option in the theme panel is on or off: https://prnt.sc/Y0L4-pH_sQXP . If the option is enabled and the author is still not showing, it’s possible that custom CSS is being used. In that case, please provide a link to your website so I can check it further.
Hi,
Thank you for providing a link to your site, please try this custom css:
.td-post-content p.dropcapp3:first-letter{
margin: 0 6px 0 0;
padding: 0 6px 0 0;
}
Adjust the padding and margins as needed.
I hope this will help you!
Hi,
If you can provide a link to that article, then I can create a css that will 100% apply to your situation.
Thank you!
Hi,
Unfortunately, there are no options to adjust the paddings and margins on drop cap, so it will be need to use a custom CSS like this:
.single .dropcap,
.single .dropcap1,
.single .dropcap2 {
margin: 0 3px 0 0;
padding: 0 6px 0 0;
}
The code can be set in the theme panel > custom code > custom css.
I hope this will help you!
Hi,
The hero image can be replaced using the tagDiv Composer, edit the page and select the row element https://prnt.sc/026P7AMwJ1Sn – and look in css tab for the backgroun image https://prnt.sc/ElCD7lyLt1Iz
Thank you!
Hi,
The tagDiv Standard Pack, as the name suggests, includes the old theme templates. These templates cannot be edited on the frontend and only offer limited control through the theme panel, where you can enable or disable certain elements.
They are based on an older code structure (from several years ago, before the transition to Cloud Templates), and unlike the newer system, they load all CSS and JS files regardless of whether those elements are actually used.
If you are using Cloud Templates, there is no need to keep the Standard Pack plugin enabled. After disabling it, check your website:
If you don’t see any shortcodes, it means no standard templates or elements are in use, and you can safely keep the plugin disabled (or even remove it).
If you do see shortcodes, I recommend re-enabling the plugin. Then, using the Theme Builder, replace those old elements (for example, swap them with Flex Blocks). Once everything is updated, you can disable or remove the plugin.
This way, tagDiv Composer and Cloud Templates will load only the necessary CSS and JS for each page/template, improving overall performance.
Thank you!
Hi,
If you want to edit the Big Grid 3 block on mobile, unfortunately, there are no options available. What you could do is use CSS to increase the size of the grids so there is more space and the images can be seen a bit better.
.home .td_block_big_grid_3 .td-big-grid-post {
height: 300px;
}
Set the above css in the theme panel > custom code > advance css in the phone section. You can adjust the height numerically.
I’m running the latest version of Newspaper and WordPress (using WordPress.com hosting). I’m currently working on optimizing my page for improved performance. The page is alpha.roadtovr.com.
And issue I’ve spotted is that there is a huge block of custom CSS files which is duplicated in the page source under “Custom CSS – generated by TagDiv Composer”. You can see here that these are an exact match of each other back to back:
This is present despite disabling all caching/minification/concatenation options that I have access to. It exists on every single page of the site, regardless of the body content of the page.
I can’t tell for certain but it seems this could be a bug with the theme itself?
Website Address:https://thefiscaldaily.com/
Hello tagDiv Team,
I am using the Newspaper theme and facing an issue with image caption rendering.
I am adding text in the image Caption / Picture Caption field in WordPress media settings, such as “Picture Credit: Reuters”. However, this caption is not displayed on the frontend below the image.
Issue details:
The image is visible correctly.
The caption is saved in the media field.
The caption does not render below the image on the frontend.
This appears to happen especially when the image is used as a featured image / profile-style image.
I need clarification on the following:
Does Newspaper theme render WordPress image captions for featured images by default?
Is there any built-in setting in the theme or tagDiv Composer to enable this?
If not, what is the correct template override approach to display the featured image caption below the image?
Is there any recommended hook, template file, or CSS class for adding image credit text under the image?
My intended output is to show a visible line below the image, for example:
Picture Credit: Reuters
Please guide me on the correct implementation.
Regards
Hi,
I tested the website on a few gadgets we have and it seems to be ok on all of them – https://i.imgur.com/oT8ezBg.png
To add a bit of button style on the cart page, you can use this custom css:
.cart .wc-block-cart .wc-block-cart__submit-container a
{
background-color: #17c57a;
color: #fff;
border-radius: 4px;
border: 1px solid transparent;
}
.cart .wc-block-cart .wc-block-cart__submit-container:hover a
{
background-color: #0fa062;
text-decoration: none;
}
Thanks, this css is working on both desktop & mobile device. Will it work on every devices ? I could not check with tab or on iphone !
One moe thing… On the cart page the “Process to Checkout” appearing like a text link. I want to make it a button. Where can I set it in that way ?