- NewspaperWP Rocket and Newspaper Theme: Optimization Guide
- TutorialsFrom WPBakery to tagDiv Composer
- TutorialsDefault Block Settings Guide
- TutorialsHow to use custom fonts
If you are mean of this background picture:

than you needed change this bitmap in graphic program (Photoshop for example).
If you want to change color of phrase “Read more” try add code in Custom CSS Theme panel:
/* Color Read more */
.td-craft-ideas .td-read-more a, .td-craft-ideas .more-link-wrap a {
color: red !important;
}
I want to remove some CSS at the bottom of the page globally. Right above <footer> there is jQuery and for some reason, style tags with a bunch of CSS. This is where I want to remove some of the CSS.
Hi,
Embedded Instagram text overlap on phone on this blog:
https://www.a-c-d.net/creative-street-art-by-tombobnyc/
It works on browsers even though i minimize ’em, but on phones, both Android and Iphone the text within the Instagram post overlaps.
I have this CSS:
.td-post-content .instagram-media {
position:initial!important;
}
.td-post-content p img {
width: 100%;
}
I don’t know if it has any effect on the overlaping,
Thanks.
I have also followed Bogdan’s instruction to change the colour code within theme editor – includes – demos – blog fitness – demo_style.css , yet no change in hover colour.
patiently awaiting a response from tagdiv team
Thanks a lot. It works perfectly.
To make changes on desktop it’s the same code but changing the first line?
@media (max-width: 1018px) and (min-width: 768px) {
I’m trying to figure how it works the theme using the chrome tool to see the source code but it’s my first time in wordpress, css, php and is hard to me.
Can you tell me the codes to:
1. Modify the distance between breadcrumbs and the title of the article.
2. Modify the distance between the title of the article and the “author + date”.
3. The distance between “author + date” and the social sharing icons.
4. The distance between the main post image and the begining of the body text.
Thanks,
Hi,
The links by default will inherit the theme accent color set in the theme panel
– https://www.screencast.com/t/o16OFEbIgOZa
Links in the post content can be set as you wish
– https://www.screencast.com/t/mvI1naBCLxA
A code like this will change all the links on your website, if that is what you want
– https://www.screencast.com/t/TS4tMl2M5vHu
Enter it in Theme panel->Custom CSS section
a {
color: yellow!important;
}
Thanks
Hey Guys,
I was hoping if someone can help me with getting these 2 issues fixed.
Hover Colour:
my site has the fitness demo installed. I changed the theme accent colour to my preferred colour, yet the site is showing the demo’s original colour and my preferred colour choice for the site at the same time.
Sidebars:
Before the update, I was able to adjust the widget sidebars within posts by having access to css which for some I am hoping good reason, the tagdiv team made the decision to remove that option, so now i am stuck with ads overlapping each other. Basically the sidebar ad is overlapping the ad above post title when you open an article.
Hi,
You could do that with CSS. The theme panel contains Advanced CSS sections that can be used in this case. Example for the header menu decreasing font size per device width
– https://www.screencast.com/t/5PxorZVd
The general font setting is not per device, it is general. This would be a solution that you could try. This is the code used in the example, use values as you wish
#td-header-menu .sf-menu > li > a {
font-size: 14px;
}
Thanks
I found the 1.1 Amp Plugin update fixed my errors with inline css styles.
Hello,
You can change the colors for the mobile header from the theme color sections: https://www.screencast.com/t/OnP0PzSp
The top bar was never meant to show up on mobile devices but it can be a activated with a css code if you want. You will have to provide a link to your site though so we can provide the proper code.
Thank you!
Hi,
Use the CSS solution then, although the code modifications should not provide 404 errors
– https://www.screencast.com/t/930d6WyZp
.td_block_related_posts .td-related-right {
display:none;
}
Thanks
That happens because the image is included in a link, the link occupies the whole space
– https://www.screencast.com/t/cyG4gKAzC2em
I could give you a code to make the link as wide as the actual image
.td-header-style-10 .td-logo-wrap-full a {
width: auto;
}
Enter it in Theme panel->Custom CSS code.
Thank you for all your help. I have submitted the website and let me once again appreciate such an awesome theme that you guys have developed and provide regular support to. My special respect and thanks to all the Team Members of Tag Div. You guys are doing a really great job.
I was really delighted to use this theme. I must say I am not at all disappointed with the ease this theme has provided me to build my website. I am not a web designer or a software developer, In fact I am a computer hardware and networks manager but as fact would have it, I had to built a website for the company that I work in. And this theme along with a few other plugins help me did the job very well without writing a single line of code (Except for some custom css), even for which the theme provides a well defined place to put that code in.
Hi,
Seems there is an opacity issue with the socials, I could give you a code to make them visible as a quick fix
– https://www.screencast.com/t/EDHzlZFsw
.td-post-sharing {
opacity: 1;
}
Enter it in Theme panel->Custom CSS section.
Hello,
You can try this code in your custom css box in the theme panel:
@media (max-width: 767px){
.td_block_image_box .td-image-box-span {
width: 50%!important;
float:left!important;
padding: 2px 25px!important;
}
Thank you!
I modified the parameter of the css, but the author’s name is white homepage and the author’s name is white in the article
http://i63.tinypic.com/25u1pgk.png
in demo newspaper default homepage white author name and author name black article
http://i67.tinypic.com/ngws9g.png
you need to find the specific css for blockgrid10
Seems that color is overriding the default white color set for the author name in the grid
– https://www.screencast.com/t/G4ul7oSHvmaE
I couldn’t say exactly from where that color originates, it is not from the demo. Maybe you have this color set by custom code in the theme panel. I could give you a code to further override the color and make it white again
– https://www.screencast.com/t/MpsIsWMCQo8x
.td-module-meta-info .td-post-author-name a {
color: white;
}
Enter it in Theme panel->Custom CSS section.
Hello kev,
Unfortunately, the theme does not have any such an option. Notice that the theme has a default configuration for responsive but if you want to change it for your header menu items you should do it yourself through some custom CSS code.
Thanks for your understanding!
Hi,
You could try solutions found online and make tests, the theme does not have such an option at the moment. Check topics like these
– https://www.tutorialrepublic.com/faq/how-to-change-image-on-hover-with-css.php
– https://css-tricks.com/forums/topic/display-image-over-another-image/
– https://www.sitepoint.com/community/t/how-can-i-hover-image-on-top-of-another/29320/9
– http://jsfiddle.net/gd8ba/light/
Thanks
I’ve been trying to locate where I can edit the bottom of the page on the Newspaper theme but I can’t seem to find which template to edit. There is a lot of CSS in that area and I’m trying to remove a part.
Where can I edit it?
I’ve already checked footer.php but it’s not there.
Thanks!
Paste this code in your custom css section.
.td-post-content #fb-root + p {
margin-bottom: 26px;
}
Hi – small niggle, but in every article, within the Newspaper theme, there is no line break displayed on screen to separate the first and second paragraphs of any post. The following paragraphs display fine, line breaks between them as you might expect. is there some css twist I could do to fix this?
here is an example:
http://oneurope.co.uk/contests/2018/eurovision-reference-group-meet-not-a-lot-to-report-but/
A color setting for the whole sidebar does not exist in the theme colors section. On pages you can set background colors for almost anything. On posts it will require some custom CSS if you want a background color for the sidebar.
I could try to give you a solution, if you could provide a link to your website and details about what exactly you want to change.
How can I force the footer to bottom on short pages? I tried many CSS solutions, but none of them worked.
Hello kame,
Also, if you want to make align the module titles only for Flex Block you should use a bit of CSS code for this. Regarding on block title wrap, you should check the options from the theme because from there you can choose some Header Styles, like this -> https://www.screencast.com/t/v0iMcfAwX
The code is ->
.td_flex_block_1 .td-module-title{
text-align:center;
}
Thanks for your understanding!