- NewspaperCreate Custom Code with the browser’s Inspector or the Live CSS Box
- NewspaperScroll Animation
- NewspaperWP Rocket and Newspaper Theme: Optimization Guide
- NewspaperHow to setup Twitch for Social Counter
- NewspaperModal Popup
- NewspaperFlex Block Settings Guide
- NewspaperAutoptimize Plugin – install and configuration
- NewspaperAdding Multiple Authors to Your Articles
- NewspaperDesign your Post Pages using the Cloud Library Templates
- NewspaperBig Grid Flex Settings
- NewspapertagDiv Composer Tutorial
- NewspaperTheme modules and blocks
- NewspaperThe Mobile Theme
- NewspaperCompare theme files – Winmerge tutorial
- NewspaperUsing Other Ads
- NewspaperBlock settings tutorial
- Using custom fonts
- Using typekit fonts
- NewspaperChild Theme Support
- NewspaperHow to Make the Site Faster
Hi,
You are probably uploading the whole theme package. 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
How to update the theme https://forum.tagdiv.com/how-to-update-the-theme-2/
Requirements for Newspaper => https://forum.tagdiv.com/requirements-for-newspaper/
Thank you!
I am using the doctor search pre-built website and I uploaded a favicon photo. That favicon is also appearing next to the logo in the header. I would like to disable that without using a CSS override. Is this possible?
Hi Bettina,
I was able to figure this out by adding in CSS for the image specifically, instead of the caption. For anyone reading, here is what I used:
[class^=”wp-block-“]:not(.wp-block-gallery)
figcaption{
color: grey;
font-style: normal;
font-size: 11px !important;
text-align: left;
padding: 0 !important;
margin-top: 0 !important;
margin-bottom: 0 !important;
}
[class^=”wp-block-“]:not(.wp-block-gallery)
img{
padding: 0px !important;
margin-top: 0px !important;
margin-bottom: 2px !important;
}
Thanks!
Hi Bettina,
The editor doesn’t fix the space between the image and captions. For the Live CSS, I inputted this:
[class^=”wp-block-“]:not(.wp-block-gallery)
figcaption{
color: grey;
font-style: normal;
font-size: 11px !important;
text-align: left;
padding: 0 !important;
margin-top: 0 !important;
margin-bottom: 0 !important;
}
Everything you see above works, except for the margins. Do you know what the correct text should be to make the margins adjust using the live CSS? Thanks!
I can’t install my theme as WordPress tells me that theme file is missing the style.css sheet. Anyone know how to fix tis?
Hello,
1. You have now the amp plugin but also the mobile theme plugin, but I understand that you want to use the responsive version, therefore non of those plugins are not required (you can disable the tagDiv mobile theme and amp plugin).
2. This is usually related to a cache or optimizing plugin that is interfering with the js from the theme. Is this situation always, for example when you are logged in (and the cache is not apply)? If yes, then please check the browser console to see if there are any errors.
Indeed, I checked the website pagination is working now (because you disable the mentioned options from LiteSpeed cache plugin).
For css I think that you can use some options but not all of theme and for js please try to exclude those:
/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js
/jquery-migrate(.min)?.js
tagdiv_theme.min.js
tdBlocksArray
If this is not work please try this:
/jquery-?[0-9.](.*)(.min|.slim|.slim.min)?.js
/jquery-migrate(.min)?.js
tagdiv_theme.min.js
tdBlocksArray
tdb_globals
td_youtube_list_ids
iosSlider
/td-cloud-library/assets/js/js_files_for_front.min.js
Also, the amp is deprecated – https://i.imgur.com/gipeN7q.png
Thank you!
Hi,
Unfortunately, no link to another website has been added to see the boxes.
You can change the blockquote style from here https://i.imgur.com/Dos41Mb.png or here https://i.imgur.com/vWy0t12.png or using custom code css https://forum.tagdiv.com/topic/blockquote-style-4/
Thank you!
Ok on problem #2 I have found that LiteSpeed cache plugin has a conflict with these two seetings:
1. CSS Combine External and Inline
2. JS Combine External and Inline
When I turn these off, the Pagination works. I would like to take full advantage of my Caching plugin tho. Is there any ideas of what I should exclude in CSS & JS in order to turn these options on?
Hello,
The latest version of the theme is 12.6.3
If you are using the Gutenberg editor, then there will be no sidebar in the editor, this will look like this -> https://i.imgur.com/F6PUBhU.png
If you are using some classic editor plugin, then the sidebar can be removed only from the files, for this, you need to go in -> wp-content/themes/Newspaper/editor-style.css and comment these lines of CSS -> https://imgur.com/EpWJhGZ
Hope this will help you!
Thank you!
How do I edit the different blockquote layouts? For example on my page here , I have two blockquotes. I want to make the background a little darker, the font a little bigger, and change the font color except for the link. How can I do this? If I need custom CSS, please provide it.
Also, take a look at this website. Do you know how I can add similar boxes like the purple rounded boxes and the grey box shown on the website? I want to highlight certain content/paragraphs and this is a good format to do it.
Im trying to hide only an author of my home page but doesn’t work. Please help
User name: IzqWeb / Name: Izquierda Web
I share with you my current css code.
.page-id-53037 .td-post-author-name .izquierda-web { display: none !important; }
Thanks a lot!
Hi Anamaria,
Please could you ask the dev team to remove deprecated code from the theme – it will help with the theme bloat. If CSS analyzer is no longer working/or not getting fixes or updates, please remove the settings from the wordpress dashboard header so users don’t start going down that rabbit hole.
Best,
Alastair
Hi,
Normally, it depends on what you need the CSS, because you can achieve without using CSS.
You can contact us when you need help.
Thank you!
Hello,
You can disable the back to the top from Theme Panel -> Template Settings -> ToTop button => https://www.screencast.com/t/JVYklvqk (if you have the mobile page or mobile resposive)
Also, for the mobile theme plugin, you can only hide using a Custom Code CSS
.td-scroll-up
{
display: none;
}
Set the code in Newspaper -> Theme panel -> Mobile Theme -> Custom code.
Thank you!
Wow thank you! I was able to fix the lines without adding an excerpt by using the following CSS code provided in the post you linked to:
.td_module_flex_1 .td-module-meta-info{
height: 170px
}

Looks exactly like what I was looking for.
By the way are there any resources available in regard to using custom CSS on this theme? I don’t really have any experience using CSS so anything would help!
-
This reply was modified 2 years by
avrpatsfan.
Hi ale, you need to use something that is checking the url, a css like this one:
.td-post-author-name a[href*="/author/izquierda-web2/"] {
display: none;
}
I hope this will help you!
Hi,
Please use this custom code css
.inside-article a:hover
{
color:red;
}
Set the code in theme panel -> custom code -> custom css.
Thank you!
Im trying to hide only an author of my home page but doesnt work. Please help
User name: IzqWeb / Name: Izquierda Web
I share with you my current css code. Thanks a lot!
.page-id-53037 .td-post-author-name .izquierda-web {
display: none !important;
}
-
This reply was modified 2 years by
ale.
Hello,
Usually this is happening when a cache plugin is used, then when you are logged in the logged user see the un-cache version of the website and when is logged out sees the cache version. Also, this can provide some problems when CSS and JavaScript are optimized.
Thank you!
Hello,
Can you help me with the position of category on flexblock 2.
I would like to have it above the title, but I can get only in line with the title, or under the title.
Can you please advise how to get it? CSS?
Many thanks in advance!
Regards.
https://pasteboard.co/dtYpjlsOSakE.png
https://pasteboard.co/NyCoXqAMeWGt.png
Hi,
Please go to the theme panel -> block settings -> inline css and disable the option to minify the css and js and clear the cache.
Thank you!
Hello,
Unfortunately, what you are saying makes zero sense. As of December 29, 2023 in your speed guide “How to Make the Site Faster”, No. 2 step is “Generate Critical CSS” via tagDiv CSS Analyzer.
@Calin, please have a look.
Hi,
1. For the logo, it is not necessary to use custom code css; you can find the settings for logo text here -> https://i.imgur.com/s4ktoe2.png
Please let me know if you want to have the website black, like this -> https://demo.tagdiv.com/newspaper_black_pro/
2. Please provide more details about what you want to achieve. Normally, you shouldn’t need to write custom CSS code, as all design changes are made using the TagDiv Composer to alter the design.
3. You can stretch the row -> https://tagdiv.com/flexibility-rows-columns-newspaper-theme/ and set the width and height on it -> https://i.imgur.com/t4JC9gk.png
4. The live css is the pace where custom code css is saved, but you must ensure that the code works and applies.
Thank you!
Hello,
Please use this custom code css .tdb_single_content a
{
pointer-events: none;
}
Set the code in Theme Panel > Custom code -> Custom css.
Thank you!