- 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,
I am trying to upload the latest version of Newspaper, and it ends up broken theme all the time. So I have contacted my hosting company, and they tried to upload it, and it also ended up as a broken theme.
They send me a message to send you.
Here it is:
The following themes are installed but incomplete.
Name: Description
Newspaper: Template is missing. Standalone themes need to have a index.php template file. Child themes need to have a Template header in the style.css stylesheet.
Newspaper:Template is missing. Standalone themes need to have a index.php template file. Child themes need to have a Template header in the style.css stylesheet.
Please send these error messages to the theme developer and ask them what can be done to resolve them.
We would like to assist you further with this however we can’t do anything without a complete theme. Thanks for your understanding.
Can you please help me with this?
Thank you!
Hi Bogdan,
Thank you for your prompt response. I have never used Custom CSS before, so please bear with me.
I have entered the code at the end of the Custome CSS box (I have taken those steps: Theme Panel/Custom CSS), however, the white space is still there.
.l-about-me-desc h3{
margin-top: 0;
color: #f1f3ce;
text-transform: uppercase;
120 }
121
122.td-main-page-wrap{
123 padding-top:0!important;
124}
Can you please advise?
Thank you very much,
Anna
Hello,
You should use a bit of CSS code to do that. Try the code below and place it in Theme panel->Custom CSS area.
The code is ->
.td_module_wrap .entry-title{
font-weight:100;
}
The result is here -> http://screencast.com/t/EdcOj91pV
Thanks for the message!
Hello,
1. The border none property you have on your menu seem to come from your end, not the theme. A css that comes from the theme will say it comes from style.css next to it. The border none you exemplify comes from your end as it says index next to it like so: http://screencast.com/t/inmJdte7vT
And you already have a border rewrite below that code but it gets rewritten by the border none. You should use !important in your code to make sure it does not get rewritten by a more powerfull css selector. Try to use this code:
.td-header-wrap .td-header-top-menu-full .td-header-top-menu, .td-header-wrap .td-header-top-menu-full{
border-bottom: 1px solid #2a3657!important;
}
Remove your previous one, do not use duplicate css codes.
2. This ios done fairly simple using this code:
.td-footer-wrapper .td_block_text_with_title{
text-align:center!important;
}
I hope this helps.
Thanks
Hi,
I’d like to disable the category tags so that readers can not click on them. Is there a bit of custom CSS I can put on the site?
Thanks.
Hi,
Enter this code in addition to the one provided above, in the same Custom Css
@media (max-width: 767px) and (min-width: 500px) {
.td-pb-span4 .td_block_11 .td_module_10 .item-details {
padding-left: 0;
padding-right: 95px;
}
}
@media (max-width: 767px) { .td-pb-span4 .td_block_11 .td_module_10 .td-excerpt {
display: block;
margin-top: 20px;
}
}
Let me know if this works
Thanks
Hello nakosar,
Try to use the code below and place it in Theme panel->Custom CSS area.
The code is ->
.td-footer-template-13 .footer-social-wrap .td-social-icon-wrap {
margin-right: 20px;
}
The result is here -> http://screencast.com/t/EXitg6UprsXV
Thanks for the message!
Hello Anna.
You will have to use a css code to remove the top padding on pages.
Add this code in the theme panel->custom css box:
.td-main-page-wrap{
padding-top:0!important;
}
This code will affect all pages. The white space is there for the title and breadcrumb. If you have pages where you want to show the page title and breadcrumb then you will have to adapt the css code above to only affect the specific page. In order to do that you will have to use the page id. You can see the page id like so: http://screencast.com/t/kKkLxEZo
Then you ca use it in the above code like so:
.page-id-147 .td-main-page-wrap{
padding-top:0!important;
}
Thank you!
Hello dennisjpitocco,
1. Copy this code:
title, ENT_COMPAT, ‘UTF-8’)), ENT_COMPAT, ‘UTF-8’) . ‘&source=’ . urlencode(get_bloginfo(‘name’)) . ‘” onclick=”window.open(this.href, \’mywin\’,\’left=50,top=50,width=600,height=350,toolbar=0\’); return false;”><i class=”fa fa-linkedin”></i>
Paste it here: http://screencast.com/t/iKzR3wrLjP
IMPORTANT NOTICE: there are 2 instances of the same code in that page. One is for the top sharing icons and one is for the bottom icons. If you want linked in on both you need to paste the code twice for each instance. If you only want the top or bottom, make sure you place the code in the correct spot.
2. Copy this code:
.td-social-linkedin{
margin-left:8px;
background-color:
#006699!important;;
}
Paste it in the theme panel-> custom css spot
The result is here -> http://screencast.com/t/7dLgIuOpBp
I have tested with the latest version of Newspaper and the Linkedin Button seems to work as properly.
Thanks for your understanding!
Hi,
It seems you have a fixed width of 700 pixels set to your span 5 inside the footer that does not come from the theme: http://screencast.com/t/lRRUqdCYjEx – http://screencast.com/t/DsRXIKzeB9
Please be mindful that any fixed width you add to your custom css will impact responsiveness.
Thank you!
Hi,
Unfortunately after further investigations it seems that when you add a Videoplayer element in a Tab in Visual Composer, it doesn’t display the iframe properly. You should think of another way of implementation. You can try this code that offers a quick fix, until you manage to make some changes in your design.Enter the code in Theme Panel->Custom Css and please let me know if this works for you
@media (min-width: 1140px) {
.wpb_wrapper iframe {
height: 360px!important;
}
}
Thanks
Hi Catalin, thanks for helping
still not working, see the attached files
(i’ve putted the code into mobile css section, general css section)

Hello volleyumbria,
I have made some tests on my side and please notice that this is the default theme behavior for quote box center. The theme panel setting will affect only the vertical border, as you can see here -> http://screencast.com/t/HVhwAb3knw1k -> http://screencast.com/t/XDCripbkYv So, if you want to change this color to be the same, you should use a bit of CSS code. Try the code below and place it in Theme panel->Custom CSS area.
The code is ->
.td-post-content .td_quote_box p{
color:red;
}
The result is here -> http://screencast.com/t/HqyfVfGqN23k
Thanks for the message!
Hello kraftingnetworks,
Try to add the 0. value to your excerpt length, like this -> http://screencast.com/t/eeNbmFCX All the settings for fonts and the weight can be changed from Theme panel, Theme Fonts, like this -> http://screencast.com/t/J72IdOLSf For more information about these settings, please check here -> https://forum.tagdiv.com/font-customization/
If you want to change the theme width you should alter the code from style.css, like this -> http://screencast.com/t/5WZ9NkeKi
Thanks for the message!
I have the same arrangement as the top of the page:
http://demo.tagdiv.com/newspaper_college/
Only the slider I have “stretch row” with black background.
Set CSS code for this demo, and I already fit to my page. Thx.

I assume you are talking about the Smart List – Style 7, and the Back/Next buttons above and below the article, try entering this code in Theme Panel->Custom Css
.td-smart-list-button {
background-color: transparent;
color: #222;
}
.td-smart-list-button:hover {
background-color: transparent !important;
color: #4db2ec;
}
If this not what you are talking about, please provide more info about what you want to change, like a screenshot or link.
Thanks
Our theme is fully compatible with both http and https. Please use these few resources for a few hints on how to properly set up https:
http://www.wpbeginner.com/wp-tutorials/how-to-add-ssl-and-https-in-wordpress/
https://css-tricks.com/moving-to-https-on-wordpress/
https://yoast.com/dev-blog/move-website-https-ssl/
You can also check our forum for some insight on ssl:
https://forum.tagdiv.com/topic/moving-to-ssl/
Thank you!
Hi
i pasted the code into the themepanel custom css section: still not working
also i tried pasting the code in the mobile theme section (custom code): still not working
i tried viewing the site on 2 different browser on mobile
Hello kuolema,
Try the code below and place it in Theme panel->Custom CSS area.
.td-a-rec-id-header_mob {
margin-top: 0;
margin-bottom: 0;
}
The result is here -> http://screencast.com/t/3lqBQoaiZ
Thanks for the message!
Thank you Bogdan for replying,
I am using block 6 with exerpts set to zero as you have suggested but still its the same.
Screenshots > http://pho.to/AZAhY
“As for the title text, please provide an example of what title you are referring to so I can provide the proper answer”
How can i minimize the font weight / bold to regular for post title in homepage ?
Screenshot > http://pho.to/AZAiA
“Unfortunately the theme width is fixed and cannot be changed.”
I am sure there is a class definition for this width. If you can let me know the line number in style.css where this width attribute is defined or just the css class name, i ll try to adjust as per requirements using custom css. If things go south, i ll just undo my changes.
Thank you.
Hello devkabir,
Try the code below and place it in Theme panel->Cusotm CSS area.
.td-header-sp-ads{
display:none!important;
}
The result is here -> http://screencast.com/t/30b2YxDQWfZa
Thanks for the message!
Hello caylean@gmail.com,
For your first request, please notice that you are using the Page Builder plus Latest Articles modules as you can see here -> http://screencast.com/t/wLPILREDTpLZ If you want to have control over this section you should edit your homepage and from Latest Articles section you can change the module for it, like this -> http://screencast.com/t/sVjD8BLt Regarding on footer section, please notice that this type of style is default created and if you want to change it you should edit the theme core files according to this footer template. so, if you want to remove it you simply can use a bit of CSS code to do that. Try the code below and place it in Theme panel->Custom CSS area.
The code is ->
.td-footer-container .td_block_7{
display:none;
}
For your second request, please provide more details, provide some useful screenshots for a better understanding.
Thanks for the message!
Hi,
If you want to remove the white background for the ad, please provide a link to your site so I can see what you are referring to and see if there is a simple css solution for it. I cannot promise anything though but i will give it a shot.
Thank you!
Another strange thing that I have just relized, I am using from the start the child theme in order I have to change something in css, so that it won#t get overwritten.
Block3, Block6 and Block2 the ones I had used for some Categories are not working side by side, but get shown under each other.
Posting
Posting
Posting
Posting
instead of
Posting Posting
Posting Posting
I had checked the css and found when I reduce the width of td-block-span6 from 339px to 329px it is shown normal.
My edited css looks so far like this:
/* ----------------------------------------------------------------------------
This file will load automatically when the child theme is active. You can use it
for custom CSS.
*/
.td-post-featured-image {
display:none;
}
As I am working with the provided Child Theme, I do not see where I went wrong.
Unpacking the package…
Installing the theme…
The package could not be installed. The theme is missing the style.css stylesheet.
Theme install failed.