- 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
So you want the post tags to appear there. That is not possible at the moment. In the coming theme updates there will be options to position the post elements differently in the post page. So for example placing the post tags below the post title will be an easy task.
If you want to do that now, you will have to make modifications to the post template file and maybe some additional CSS. These are some similar topics
– https://forum.tagdiv.com/topic/post-tags-over-the-post/
– https://forum.tagdiv.com/topic/move-date-and-time-from-top-to-bottom-article/
Hi,
The template design has some opacity transitions in the design for the top header part
– https://www.screencast.com/t/UbRUp2orZ1
There is a 2 second opacity transition for the background image, try removing this transition for mobile (Advanced CSS phones section)
body.single_template_8 .td-backstretch {
transition:none;
}
Check if this has any effect.
About 6 or so months back *I think* I added custom header code as follows. My problem now is that I want to remove this code but cannot for the life of me find where/how it was added.
<style type=”text/css” media=”screen”>
html { margin-top: 32px !important; }
* html body { margin-top: 32px !important; }
@media screen and ( max-width: 782px ) {
html { margin-top: 46px !important; }
* html body { margin-top: 46px !important; }
}
</style>
Any ideas how this can be removed? I am struggling to get this fixed. Thank you!!
I like to hide Ad-Blocks until I need them. In the css tab I found the “Display”-attribute with the values “show” and “hidden”. Hiding was no problem. But how do I find the hidden Element in TagDiv-Composer? The Composer doesn’t show the hidden Element anymore. So I can’t put it back on “show”.
1. If you don’t think you need to make any changes to the main theme core files, then you do not need a child theme. Here are the files that can be changed via a child theme https://forum.tagdiv.com/the-child-theme-support-tutorial/.
2. The custom CSS is saved in your database. So, you will not lose the custom changes on theme update. But to be safe, always backup your site before updating the theme.
3. The Custom CSS panel is the recommended way by the theme developers to add custom CSS. If you want to add the CSS to the main theme, you would have to make changes to the main style.css file by looking at the main instances where each code appears and make the changes there, but you would need to backup the file (and redeploy the changes with each new theme update) or the changes will be overwritten with each update. The custom CSS panel works for both the main theme and the child theme.
4. Again, see this tutorial on how to use the child theme https://forum.tagdiv.com/the-child-theme-support-tutorial/.
5. TD composer is a page builder specifically built and configured to be used with the Newspaper theme. It will continue to receive updates in future and the theme developers recommend it over visual composer. However, the visual composer will still continue to be bundled together with the theme. It is not recommended to use both page builders at the same time. So, it is your choice really on what you want to use between the two (I personally use td composer).
6. The tagDiv Multi-Purpose adds additional elements to the TD composer. It is more beneficial for building landing pages. Read more about it here https://tagdiv.com/newspaper-8-5-update-what-s-new/.
(FYI, I don’t work here).
First, give me some answer to my question.
1) Is it necessary to create a child theme?
2) If I update my theme in future will I lose all custom CSS if I don’t have a child theme already?
3) I have added all my CSS to a theme panel custom CSS CODE field, is there any way to add that CSS directly to theme? If yes then where to add, in the parent theme, or in a child theme?
4) If a child theme is really good for safety then please guide me step by step to create a child theme of my parent theme.
5) In plugin section, there is two-page builder plugin one is td -composer another one is wp bakery page builder, Is it necessary to keep both or one is enough to build any page? If one is enough then which one should I use.
6)How to use tagDiv Multi-Purpose? And how can i take benefit from this plugin?
I hope I will get all answer.
The only thing I can tell is that i’m using Custom Html Element.
In the custom html element is code that i’ve copied in google chrome inspect (a button code)…..needed to do this bc i don’t see a way in getting button shortcode into wordpress dashboard…I need the shortcode so i can add a css class to a tag so i can use modal effect for a contact form..
when i went to wp side and saw the code (which i realize i can now grab the shortcode)…i see what looks like VC (visual composer?) text…i’m not using visual composer (not installed or activated).
also, within the code i see unintelligible letters that seems encrypted
Hello, I could already remove the author frome some parts of my website usind that CSS-code:
.td-category-author-name, .td-post-author-box {
display: none;
}
But how can I remove all the other author names? I guess the names are displayed on my start page and on category / tag pages.
Furthermore I changed the sub-footer content, but only on some pages I can see the new content “Coin-Dragon .. Impressum .. Datenschutz”. On many other pages i can still see the sub-footer content of the demo-theme.
Screenshots of the issues: https://drive.google.com/open?id=1vXQ80QACx0OXyAiPh_unq_7qlMivjVGd
Hope you can help me.
Regards
Florian
Hi tmaghrebt,
You should try using the code below and place it in Theme panel -> Custom CSS area.
.twitter-tweet{
margin-left:auto;
margin-right:auto;
}
The result is here -> https://www.screencast.com/t/jsD8N9fx
Thanks.
So similar to how they have it on this website, for paragraphs
– https://www.shoutmeloud.com/top-10-killer-tips-to-increase-google-crawl-rate.html
They use an extra class for the paragraph, with afferent design
– https://www.screencast.com/t/hzWJAmkN
You could do the same if that is what you want, for the headings
– https://www.screencast.com/t/q15EyyKV
– https://www.screencast.com/t/DnnFArbQ
.myclass {
margin-bottom: 20px;
color: #fff;
padding: 10px 0px!important;
color: #fff;
background: #333;
border-left: 50px solid orangered;
border-left: 50px solid #e3393a;
background: #333!important;
}
Or do it this way, either method will work
– https://www.screencast.com/t/TnqXooUORD3
– https://www.screencast.com/t/z2N3NOAeC4
Modify the code as you please, then enter it in Theme panel->Custom CSS.
Hi,
@allongeorgia Firstly the link color can be defined when creating it, in the post edit screen
– https://www.screencast.com/t/2BY6vccjP
If you don’t set a color there, the theme accent color will be the color of the links
– https://www.screencast.com/t/9KU8PWOk
Changing the theme accent color will change the link color. If you don’t want to change the theme accent color but only chnage the link color in the post content, use a code like this
– https://www.screencast.com/t/BTjgkzpcXMEF
.td-post-content a {
color: yellow;
}
This is a guide on how to use the browser inspector to create CSS code for various website customization
– https://forum.tagdiv.com/create-custom-code-using-the-browsers-inspector/
Thanks
Hi,
From what I can see there is a code that affects the images inside the post content, maybe other images as well
– https://www.screencast.com/t/gnx2JYf9M9Ep
That code is overriding the theme code and enlarging the images. If you have custom code like that entered in the custom CSS provided by the theme or a plugin maybe, remove it or modify it.
Thanks
Hi,
That would be the page padding top, you could remove it by entering this code in Theme panel->Custom CSS
.home .td-main-page-wrap {
padding-top: 0;
}
Result – https://www.screencast.com/t/8ugoXzPLi
Thanks
Ive seen its probably something to do with the css thats included with the Art Creek demo?
Thanks Andy
Hello,
You should try using the code below and place it in Theme panel -> Custom CSS area.
#post h1.header{
border-color:green;
}
The result is here -> https://www.screencast.com/t/1MxgSUsg
But I guess that you are not using our theme on your website…
Thanks.
We used some css to make the body font in all of our posts (on mobile) a couple sizes larger, and with doing that we feel all the headers throughout the posts need to be a little larger too. We use the H1, H2, and H3 throughout all of our posts, and we would just like to increase the font sizes (globally) of those to look better with the larger body text on mobile.
Hi,
Not working extra class for Youtube player. My extra class – worldVideo.
http://prntscr.com/jj1tvn
http://prntscr.com/jj1pvt
I was trying to customize the style.css, add style with my extra class, but this did not work.
Hello Jose,
Please try using the code below and place it in Theme panel -> Custom CSS Area.
.td-post-template-5 .td-post-header .entry-title{
text-align:center;
}
.single h2 {
color:red!important;
}
The result is here -> https://www.screencast.com/t/JpOqNDk7Un
Thanks.
I`ve sent you the e-mail with this topic: [tagDiv support] Live CSS is not working
Thank you! đ
Hello,
You will need to inspect each element as a general code could not apply to every element using the heading tags. Css is very specific. I will need specific example s so I can provide a stronger selector than the one already provided by the theme so the code can be rewritten by the new css.
Thank you!
.td-header-wrap .current-menu-item a,
.td-header-wrap .td-header-menu-wrap .sf-menu > li > a:hover {
color: #231803!important;
}
This CSS is for text, But i also want to change menue active background color from BLACK to #f6931e.
For more understanding of what I am saying you can see this screenshot

Can you help?
Hello,
You can try to add this code in the theme panel-> custom css box:
.td_block_big_grid_fl_9 .td-big-grid-post-1 .td-module-image, .td_block_big_grid_fl_9 .td-big-grid-post-1.td-module-empty .td-module-thumb{
top:1px!important;
}
.td_block_big_grid_fl_9 .td-big-grid-post-2 .td-module-image, .td_block_big_grid_fl_9 .td-big-grid-post-3 .td-module-image, .td_block_big_grid_fl_9 .td-big-grid-post-2.td-module-empty .td-module-thumb, .td_block_big_grid_fl_9 .td-big-grid-post-3.td-module-empty .td-module-thumb{
bottom:0!important;
}
.td-big-grids-fl.td-big-grids-margin .td-big-grid-post{
border-width: 1px;
}
Thank you!
Hello, What CSS do I need to change the H1, H2, and H3 headers to be a fews sizes larger in the mobile theme? Thanks
Hello,
The google fonts in our theme will be called through https automatically if the implementation is done properly:
https://www.screencast.com/t/1nSqdO8zG – https://www.screencast.com/t/a4QEnRvJf5
Please sue these guide to make the implementation properly:
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/
https://forum.tagdiv.com/topic/moving-to-ssl/
Thank you!
That post template featured a parallax effect, it will add some opacity, please check the demo post template 7
– https://demo.tagdiv.com/newspaper/td-post-lenovo-details-new-computers-that-could-be-heading-our-way-in-2015/
Try scrolling down slowly from the top of the post, while observing the post title fading.
This effect could be removed if this is required, enter this code in Theme panel->Custom CSS code
.single_template_7 .td-parallax-header {
opacity: 1!important;
}