- 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
The menu going on 2 lines is normal if you have many menu items.
You can try to use this code to make the menu dull width on ipads though:
.td-header-style-10 #td-header-menu{
width: 100%!important;
}
Ad the code in the same advanced css field of the theme panel.
Thank you!
Hi,
Try entering the code provided below in Theme panel->Custom Css section
– https://www.screencast.com/t/Ii3ADfrC43s
It should prevent any clicking action on the images used in Smart list style 2, if that is what you are using
.td_smart_list_2
.td-slide-smart-list-figure {
pointer-events: none;
}
Thanks
Hi,
It seems to be an issue when using a different Block header style, than Block header style 1 – Default. This is causing the problem with the category hierarchy. Please enter this code in Theme pane->Custom Css, it should fix the problem for the current header style that you are using for the blocks
– https://www.screencast.com/t/6Y9LbULUPz
.td_block_template_10.widget li {
margin-left: 12px!important;
}
I will add this problem on our issue list, and hopefully it will be fixed as soon as possible.
Thanks
Yes.
path must be child-theme/mobile/style.css
@Amit
Thank you very much. Just a little a question. If I want to include this in my child theme, I need to create a new folder with the (mobile) style.css inside?
Hello ronaldoaquino234,
Unfortunately, you cannot change the color of it because this is just an image, s you can see here -> https://www.screencast.com/t/UhHE2BZaiio As you can do is to make a new same image, edit it in Photoshop and then load it with some CSS code, like this -> https://www.screencast.com/t/UyMyxjaB
Thanks for the message!
Hi,
Sorry but the new full grids to not yet have typography settings in the theme panel. It is on our to do list and we will add them in future theme updates.
Until then you can use this css to change the font size:
Big thumbs:
.td_block_big_grid_fl_7 .td_module_mx23 .entry-title{
font-size:24px;
}
Small thumbs:
.td_block_big_grid_fl_7 .td_module_mx24 .entry-title{
font-size:16px;
}
Thanks.
Hello pinxe,
If you want to change the category tag color, you should check the Theme panel->Settings, like this -> https://www.screencast.com/t/Un8RAlLKA Also, you can try using a bit of CSS code to change the color of the tag for Modules/Blocks. If is not what you mean, provide more details about what you are wanting to do and also, provide your website URL so I can take a closer look at it.
Thanks for the message!
Hi,
I have tested the method and it is still working properly. Maybe you are not making all the steps required. First paste the code provided by Bogdan in his last reply, in the td_module_single.php file. There you will see as specified in the topic, that there are 2 sections. Post sharing top section
– https://www.screencast.com/t/u5CwkINb1u
And lower in the same file, Post sharing bottom section
– https://www.screencast.com/t/7ufxi4Km
After you enter the code for the section you want or both of them, you must enter this code in Theme panel->Custom Css
– https://www.screencast.com/t/qcFiDeb2LwG
.td-social-linkedin {
margin-left:8px;
background-color: #006699!important;
}
Also please make sure to have the Font awesome 4 menus installed and activated.
If it does not appear, try clearing the cache. But the method is tested and works, if you follow the steps exactly as they are mentioned.
Thanks
Hello,
Since the read more button is a custom implementation (as it’s not part of block 11 by default) you should check the css for the custom element. It is not a theme issue. It is a custom element and not part of the original theme code.
You can however much more easily switch to block 12 which already has a read more element to it: https://demo.tagdiv.com/newspaper/block-12/
If you do not want to switch the block, you cna try the alternatove to hide the read more button in ipads.
You can try this code:
.ebl-readmore{
display:none
}
You can add the code in the theme panel->custom code->advanced css and place it in the ipad portrait section
Thank you!
Hi,
In order to remove more from author you can use 2 methods:
The css method:
.td_block_related_posts .td-related-right {
display:none;
}
You can add the code in the theme panel-> custom css box.
Or you can edit the theme files: comment out or delete this part: http://screencast.com/t/Okmq7lxTDzGd
Thank you!
@Amit could you be so kind as to upload the modified style.css somewhere else as dropbox has hit the daily view limit?
The CSS I have provided is for version 8.0 mobile theme.
Its copy of original CSS (comes with the package) with some minor changes.
Using that CSS will definitely solve this >> https://i.imgur.com/mKuB407.jpg problem
Bump does nothing except push things DOWN in the reply queue.
You can learn to minify your main style.css using minification tools online. Google is a great resource for finding things. I use this : https://cssminifier.com/
And yes, if you use ANYTHING loaded externally, like Google Fonts, JetPack, social “likes numbers” on your page, weather widget, ad networks, etc. — all slow down your page as it has to “go fetch” stuff for page to load. So, choosing to NOT use Google fonts is one option.
Using fewer modules per page; meaning no more than 10 thumbnails on sidebar and footer COMBINED will speed things up a lot.
Per GTMetrix
1) optimize your images
2) Adding time to live settings for browser caching, for Woff/Woff2 to your htaccess file as mimetypes is advisable; the other items you can’t do much about as they are on other sites — and will impact your score
3) loading all those elements from Amazon ad services’ CDN is slowing you down
4) removing query strings is advisable
That stuff from share-a-sale is badly optimized.
Generally when setting up your site
* test without ads or external items to get ‘actual’ score for your post page
* then turn on ad systems and external stuff one by one until you can stomach how this affects your side adversely — your ad units are NOT part of the theme so you should complain to them about crappy optimization!
( I don’t work here. )
https://www.screencast.com/t/CtfAQRwu8S i need to change font-size big grid full 7 class=”entry-title td-module-title” but, i tryed it from css, i tryed it from theme panel but still 14 px, how can i change that, thank you.
Thanks Simion! It works best when added to the style.css in the child theme.
Hey bogdan,
Here is what i found, I dunno how to fix that.
Minifying https://vapekrew.com/…ntent/themes/Newspaper/style.css?ver=8.0 could save 15.4KiB (14% reduction) after compression.
Your page has 1 blocking CSS resources. This causes a delay in rendering your page.
https://fonts.googleapis.com/…ic%2C500%2C500italic%2C700%2C900&ver=8.0
Hello @kley
To use both, replace style.css in newspaper/mobile/style.css with the following. Now you can use both the plugins and there will be no flash.
https://www.dropbox.com/s/pa8ubmt04ctqyag/style.css?dl=0
Thank you for your understanding.
Hello,
Sorry but there is no simple css that can make this modification. Only phones receive the mobile phone view or the mobile theme plugin. Tablets receive the desktop version. Our theme does not provide any options to change this behavior. It can only be made with customization. Unfortunately there is no simple way of ding it. You will have to hire a freelancer to help out with this customization.
Thank you!
Thank you. I renamed theme in style.css file, but in my code i can still find it:
<!–
Theme: Newspaper by tagDiv.com 2017
Version: 8.0 (rara)
Deploy mode: deploy
uid: 593c8c612b920
–>
@Catalin: So i’ve to remove almost all the style.css that my site uses to obtain an unique and more optimized css loading or remove style.css from the moved css files by speed booster. Anyway, i’ll try it on my test website which is the best way.
@Pierreto: I tried AMP and it doesn’t work correctly. Also, it is not officially supported by the template creators. My website have a very good optimization (https://gtmetrix.com/reports/gamesquare.it/8wMcYwjS – More than 90/100 in Mobile and Desktop score of Google Pagespeed and A-A-A-A-B on WebPageTest), so i don’t want ruin that by using an unsupported plugin.
-
This reply was modified 9 years by
Fenix.
Hi,
we have some issue with the menu displayed on Ipad 2.
We need it to be displayed as a mobile menu not like a desktop one.
We cannot be able to solve this even with css hack.
Can you help us? Thank you in advance
Hello tekniksmart,
If you want to use this way of applying your images, notice that you should use a bit of CSS code for this process. First of all, you should load your desired image if you want to apply to your header on base34 website and then, you should take the CSS code from there, like this -> https://www.screencast.com/t/7JG5otMK8Bt and then you can use the following code, like this -> https://www.screencast.com/t/gNQHnhfjqs
Hope this helps!
Thanks for your message!
Hi,
You can try this code, it will remove the comment count on the author page
– https://www.screencast.com/t/hmwTGuwoq
Enter it in Theme panel->Custom Css
.author .td-author-comments-count {
display: none;
}
Thanks
Hi,
For me the Times new roman font is loaded for the post content in the post page you provided
– https://www.screencast.com/t/01frurnDkgB
The title elements have the Bitter font
– https://www.screencast.com/t/NYRTsB4Xh3
I have tried the Garamond font for the post content for example
– https://www.screencast.com/t/rjYKIT3BrTy
And it is displayed as intended
– https://www.screencast.com/t/8hppbzFv3
In case of font families, there is a chance that different fonts will be displayed. One time it may be this font, and in others a different one. It all depends on the browser
– https://www.w3schools.com/cssref/pr_font_font-family.asp
– https://developer.mozilla.org/en/docs/Web/CSS/font-family?v=control
Thanks