- 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
- NewsmagtagDiv Composer Tutorial
- TutorialsFrom WPBakery to tagDiv Composer
- NewspapertagDiv Composer Tutorial
- NewspaperTheme modules and blocks
- TutorialsDefault Block Settings Guide
- NewspaperThe Mobile Theme
- NewspaperCompare theme files – Winmerge tutorial
- NewsmagBlock settings tutorial
- NewsmagLogo & Favicon
- NewsmagFooter templates
Hello teknolojisk,
Unfortunately, I do not exactly understand what you mean, sorry! Provide more details about what kind of inline CSS is talking about here. Provide some useful screenshots with it.
Thanks for your understanding!
What if i get someone to write a CSS code that i can paste on my function.php file so that it will be implemented on all my pages
Hello amsam1979,
With what I can help you here is I provide a bit of CSS code which hides you the article top ad only for this post page.
The code is ->
.postid-1086 .td-a-rec-id-content_top{
display:none;
}
Please notice that if you want to create a new pot template for this regard, you should create it yourself because we cannot provide this type of services at the moment, sorry!
Thanks for your understanding!
Hi,
To start with, thanks for your tremendous job. Your theme is fantastic. 🙂
However, when I have a look at the source code of single posts on http://www.teknoblog.com, I see many inline CSS code. I know, it is due to customization, but when I have a look at some web sites from the showcase area of your homepage, and check their source codes, I don’t see too much inline CSS code like mine. Even though, it seems that there are customizations on that web sites.
How can I fix this issue, and slim down the source code? Code-to-text-ratio is too high in this situation.
Regards,
Sabri Küstür
Hello mskssk,
You should use a bit of CSS code to do this. Try the code below and place it in Theme panel -> Custom CSS area.
The code is ->
.td-sub-footer-container .td-container{
margin-left: 0!important;
}
Thanks.
Hi,
When I test my site: http://daotrangtuphat.com/ from https://tools.pingdom.com/, it indicates the slow loading issue is because of Newspaper theme ‘http://daotrangtuphat.com/wp-content/themes/Newspaper/style.css?ver=8.0’.
So, any recommendations to deal with it, please!
Thanks!
Hello amsam1979,
Please notice that the only way to add some ads to your post pages is to use the Articles Ads from Theme panel. Notice that option is a general one for entire website and if you want to use such an ads for some posts and not using for others ads you cannot do this but only if you will use a bit of CSS code to hide the ads for specific post pages. If you want to achieve something like that, you should provide your website URL and then you can specify on which kind of posts you do not want to have any ads and I try to provide a quick solution with a bit of CSS code.
Thanks for your understanding!
Hello,
Thank you for choosing newspaper.
1) Sorry but the blocks will not inherit the category tag color. The category tag color is working exclusively on posts in our theme. The color will only show up on posts like so: https://www.screencast.com/t/j4aBKZlEfg4z
2) Some of the modules have these options hidden as a design choice in order not to crowd up the small thumb. Modules mx25 and mx26 do not have the markup in the code added to them. If you need to activate the date and author on these modules you will have to modify the module files like so:
Copy this code:
<div class="td-module-meta-info">
<?php echo $this->get_author();?>
<?php echo $this->get_date();?>
</div>
And paste it like so: https://www.screencast.com/t/GvqQFZBGYN1
The same goes for module mx 25: https://www.screencast.com/t/3fzttC0lih
3) Thank you for your suggestion. We do plan on adding more and more features to the tagdiv composer. For now you can hide the metas with css for each module in particular. Here is a list of what module is used on which block: https://forum.tagdiv.com/theme-blocks-modules/
4) You can use the translation settings to change the name for theme elements:
https://www.screencast.com/t/O5OUFx0VB simply type the preferred translation in the right column.
Thank you!
Hello Gordon,
In order to make a full width element in the tagdiv composer, you can use the stretch row and content option like so: https://www.screencast.com/t/L3UNx72DeK
If you only want a background around your block, you do it by stretchin only the row and not the content and then adding a background to the row in the css tab:
https://www.screencast.com/t/0Dk025Y18
This guide should help you understand how the block settings work: https://forum.tagdiv.com/block-settings-tutorial/
Thanks.
Hi,
That is how the Recipes demo was designed. It is meant to have that margin on the top, with a specific media condition
– https://www.screencast.com/t/lxCOzu66h
You can remove it by entering this code in Theme panel->Custom Css
– https://www.screencast.com/t/m6sKd5wff
@media (min-width: 1180px) {
.td-recipes.td-boxed-layout #td-outer-wrap {
margin-top: 0;
}}
Or by editing the demo stylesheet directly and removing it form there
– https://www.screencast.com/t/kxwepDsELUif
Thanks
Hello Pierre Shapiro,
Please notice that is the default style for our Image Box element. All the available settings of it can be found here -> https://www.screencast.com/t/o7n7xKu5a Also, if you want to make some design changes to this element, you should do it yourself, using a bit of CSS code in order to achieve some good results.
Thanks for your understanding!
Hi,
This is how the Read more button link is implemented in a module that features it
– https://www.screencast.com/t/U9anLMNaAo
Block 4 uses module 2, you could copy the the code from module 11 inside this one, like this
– https://www.screencast.com/t/gmV6RzxD7
The result would be like this
– https://www.screencast.com/t/wNrd9ETGU7
Now you could add some margin for the button, since it has none
– https://www.screencast.com/t/EbRbD8M9SPR
The code must be entered in Theme panel->Custom Css
.td_module_2 .td-excerpt {
margin-bottom:15px;
}
Thanks
Hi,
You could achieve something like that by setting a margin for the body, and the background will display above the header as well. Like this example
– https://www.screencast.com/t/nDyaErBbvYgX
This is the code used in the example (you can modify the margin value as you want). If you decide to use it, enter it in Theme panel->Custom Css section
body {
margin-top: 300px;
}
Thanks
Hi,
There is no option in the theme for this, but you can try a code like this one
– https://www.screencast.com/t/e9kMlrpD1
It will increase the font size just for the socials displayed in the top menu (you can set the size you want in the code)
.td-header-sp-top-widget
.td-social-icon-wrap
.td-icon-font {
font-size: 18px;
}
Enter it in Theme panel->Custom Css section.
Thanks
Hello, I was able to get the access token, thank you. HOWEVER, afterwards I got the following error on the homepage:
Fatal error: Call to undefined method td_block_social_counter::get_block_css() in /home/ahoracom/public_html/wp-content/plugins/td-social-counter/shortcode/td_block_social_counter.php on line 52
I had to deactivate it while I wait for your reply. After deactivating it this appears on the homepage where the social counter should appear:
[td_block_social_counter custom_title=”MANTENTE CONECTADO” facebook=”tagDiv”]
The URL for the site is http://www.aquiahora.com.gt
Waiting for your reply…
Hi there,
First of all thanks for this great theme. I love it! I am trying to learn it from scratch so I didn’t install any demos yet for the sake of creativity. I use tagdiv Composer which I find great for my kind of work. Naturally I have a couple of questions, if you may answer. 🙂
1- Can I select the category tag colors as hover colors in modules and/or grids? I am trying to get a clear color code for my categories which can be seen here : http://stilltune.com/home/
I added a block with custom title background color for my Music Theory category. It shows up exactly as I want. But as you may notice the Big Grid 9 above inherits the general accent color for categories. Can I show my category tag colors there as hover colors? Because I will have more categories and that Big Grid showing always the same main accent color for hovers would seem a little bit confusing regarding my category color coding. Now I have selected a category tag color for this category too but it doesn’t affect those hovers. It doesn’t even affect that block’s filter choices. I had to enter the block color manually. I guess it only shows up in beside block titles as tag colors, right? I couldn’t see it anywhere else. I found category tag colors a little bit confusing because of this. Maybe a category color concept would be much better? Because main accent color seems to interrupt this color code concept. So what can I do for this? (An example of what I want for that Big Grid can be seen in this demo’s top slider. http://demo.mekshq.com/voice/ Little category tags inherits category tag colors there so that category colors would be consistent everywhere in the theme)
2- Although my Meta Info in Theme Panel/Block Settings/Meta Info on Modules are all open, I cannot see the dates and authors in Module MX26 and MX25 like in a SS you shared in someone else’s forum posts (https://www.screencast.com/t/AQN4wjCydN) Do I need to change something else or add custom css codes for this?
3- I want to see all module names in grids and blocks. Do you have any guide or cheat sheet for them?
Finally one suggestion if I may 🙂
I think Modules and Grids should be edited in detail via tagdiv Composer. I may want to show meta info in one of them but I may not wanna show it in another. But when I select meta info on modules it affects them all. So maybe that edit section of tagdiv composer should be a little bit more detailed. Because otherwise we should enter css manually and the whole concept of “No coding required” is ruined 🙂
Thanks in advance, have a good day
Gökhan
i have seen both these issues in threads at the beginning of the year but couldn’t find any with resolution.
i am running v 7.3 – i’d rather not deal with the big upgrade to 8 until i’ve more time in the autumn.
the mobile theme has shown a huge improvement in pagespeed, but the tag div galleries, which i use quite a bit, are not working.
also the mobile theme is showing on tablet – even a 10″ in landscape – i thought it was meant to be restricted to phone screens only?
finally i don’t like the M1 blocks at all. the letterbox format top of image often shows nothing more than background. i would much prefer them to be 16:9 or even 4:3. Is there a css code snippet available to change them?
many thanks for any help – and if it’s coming from theme staff – great theme – sorry first you’ve heard of me is gripes – but that’s forums.
Hi,
You could use a bigger image if possible, it should be responsive. If the container does not have a fixed width this is possible. In this example I used a simple link with a big image size, and it is responsive
– https://www.screencast.com/t/si4FUyFSC5iL
– https://www.screencast.com/t/Gt6dNX6K8
– https://www.screencast.com/t/B5usvfcWPW
You could also wrap the code with the div and classes that you mention, and create different ads for specific devices. These classes will work if you place them there, they have corresponding Css media conditions in the theme stylesheet.
Thanks
Well Simion bro your theme is very famous thats why i buy it but you have to do some RTL support i read many topics in here about RTL but really disappointed that there is not RTL well i set some things now, with little bit changes in style.css , please can you tell me that mobile theme pulgin css is in main style.css ??? or using different sheet???
Hi,
We appreciate you thoughts on the theme. This modifications would not be as easy as you think. These elements were not designed to be displayed in other situations then their initial purpose. It would probably take much Css code (where possible to modify this way) to override the current classes and their values, and then set new ones.
If you would like to try this, here is a guide that you can use to identify the elements and their classes, in order to create custom code
– https://forum.tagdiv.com/create-custom-code-using-the-browsers-inspector/
Thanks
Hello sanket,
If you want to change the color for each anchor tag (link), you should use a bit of CSS code to do this.
The code is ->
a {
color:red!important;
}
Thanks.
i know your theme didn’t have rtl support but you can just tell me the css ? of logo alignment into right ? there is no big customization i ask ?
this little thing will help all user in who want to rtl in this forums i already search every thing is good in theme just some little bit changes required will you do that plz
Hello iMohitPahwa,
If you want to increase the top space you should use a bit of CSS code to do this. Try the code below and place it in Theme panel->Custom CSS area.
.td-main-page-wrap {
padding-top: 0px;
}
The result is here -> https://www.screencast.com/t/XhRmqh1oxD
Thanks for your understanding!
Hi,
You can chose a different block if you would like to have a Read more button. These are the blocks that currently have this option
– https://demo.tagdiv.com/newspaper/block-24/
– https://demo.tagdiv.com/newspaper/block-23/
– https://demo.tagdiv.com/newspaper/block-22/
– https://demo.tagdiv.com/newspaper/block-20/
– https://demo.tagdiv.com/newspaper/block-13/
– https://demo.tagdiv.com/newspaper/block-12/
The excerpt length can also be controlled in the theme panel
– https://forum.tagdiv.com/excerpts-introduction/
The font properties for the post title displayed on modules can be customized in general, or by module
– https://www.screencast.com/t/4U8nGJja
The excerpt can also be customized here
– https://www.screencast.com/t/Hg1gpyb2Yvo
For the color of the title and excerpt for that block, you can try a code like this
– https://www.screencast.com/t/izroDIlXVtR
.td_block_4 .td-module-title a{
color: #bf0c00;
}
.td_block_4 .td-excerpt {
color: #000;
}
Just enter it in Theme panel->Custom Css section. If you would like it to apply for all then blocks, remove the block class from the beginning of the code.
Thanks