- 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
When I´m using the adsize 234×60 I get a 44px margin added below the google ad.
I can make this go away by using .adsbygoogle {margin-bottom: 20px!important;}
Unsure if this is OK by Google though? Because this alters the adsense code (visually).
It seems like the 44px bottom margin is added by the theme CSS. Then the follow-up-question is if that´s really ok to do? 🙂
Asked in the AdSense-forum, but no one really seem to know what´s ok and what´s not 🙂 Thanks in advance!
Hello,
The breadcrumbs were hidden on this demo so you can enable them by adding this css in the theme panel-> custom css box:
.td-blog-beauty .td-post-template-default .td-crumb-container{
display:block!important;
}
The sharing options simply need to be activated from the theme panel: https://www.screencast.com/t/WyBLhO78pr
Thank you!
Still have problem when i scroll down please see the pictures there is my custom css and the issue looks like
http://dox.bg/files/dw?a=51a9d38922
http://dox.bg/files/dw?a=396f692b58
http://dox.bg/files/dw?a=d28dec8cb8
Hello,
It seems there is a css rule that affects the subtitle coming from your site and not from the theme: https://www.screencast.com/t/6huhlWVqfSll It could be a plugin or a css rule you added.
I see the html is different for that changed post subtitle as well. There seem to be 2 P tags one inside the other. That could be the reason for the font as it grabs the css for the p tag and not the subtitle css.
Please check your subtitle and re-add the text to the field without any html tags.
Thank you!
Hello chaosbunker,
Unfortunately, this is not a simple task and to accomplish it, is necessary to make some additional customization through the code, like style.css. Here you can see the limits for the width of each device and example, if you want to target a code to be applied only to tablet devices, you should use this media query, like this ->
@media (min-width 768px) and (max-width 1023px) If you want to make these changes and if you are not aware of the steps which are needed to take in this regard, please consider hiring a freelancer/developer to help you because we cannot provide any custom work at the moment, sorry!
Thanks for your understanding!
Hello,
you can use this custom css to change the background for any page in particular based on the page ID. Each page has it’s own unique ID you can use to target each individual page. Here is an example:
.page-id-17{
background-color:white!important;
}
This will change your homepage background to white.
Thank you!
Hi,
Last night my menu font mysteriously went bold (image: new menu).
However I want it to be like it was (image: old menu).
When I go to fonts and set the weight to ‘normal’ from the current default option, the words in the menu go taller and are squashed up (image: font weight ‘normal’)
Can you please help me get the font in the menu to look like it did under the ‘old menu’?
Images are here to help explain and show the differences:
http://smallcaps.com.au/wp-content/uploads/2017/03/Old-menu.jpg
http://smallcaps.com.au/wp-content/uploads/2017/03/New-menu.jpg
http://smallcaps.com.au/wp-content/uploads/2017/03/Font-weight-normal.jpg
The only things I was changing last night was the colour of the menus (orange colour which is in CSS and theme options. I never changed anything to make the font of the main menu go bold.
If you change look between the ‘old menu’ and ‘new menu’ it goes bold, but in the Theme Panel settings it is not set to bold.
Thanks
I have attempted to make changes to the blockquote settings under Newspaper – theme panel – Theme fonts – post content – default block quote. When I change the font size, I don’t see it reflected in a post I created.
It appears the settings are not being saved (even though I am sure I saved them).
Have you seen this problem. I was hoping not to have to use CSS.
Thanks
How can I edit font color and background color at the title of Visual Composer elements like for example videos or pictures.
I can not find the correct css entry.
Thanks for your help
I still use an online cssminifier (google it) to copy/paste the main style.css. Works well.
Thanks, i embedded font-awesome by adding
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
under custom html and then adding
.td-icon-meetup:before {
font-family: FontAwesome;
content: "\f2e0";
}
in custom css
i also added
'meetup' => 'Meetup',
to ..Newsmag/includes/wp_booster/td_social_icons.php
so i can add a link from the theme panel>social icons
it would be nice if this was added to a future version of newsmag, to make the theme even better!
All of these for newspaper. Probably work for newsmag?
https://forum.tagdiv.com/topic/tip-how-to-easily-minify-your-css-without-breaking-your-site/
https://www.infophilic.com/get-almost-100-pagespeed-newspaper-theme/
Hello chaosbunker,
Unfortunately, the theme will display the hamburger menu only between 767px and 0px. If you want to change this rule, you should change the media query call from the style.css core file. As a quick fix, you can change the font-size of your items menu when the width is for the tablet, for example. For more references regarding on this thing, check the guide here -> https://www.w3schools.com/css/css_rwd_mediaqueries.asp
Thanks for your understanding!
Hello sakkiotto,
Do you want to remove the category tag for modules, right? Try the code below and place it in Theme panel ->Cusotm CSS area.
The code is ->
.td-module-image .td-post-category{
display:none!important;
}
The result is here -> https://www.screencast.com/t/WRxfy5Gg
Thanks for your understanding!
This might be more of a buddypress question than a newspaper question, but ima try here anyway –
Anyone know if there’s a way to move
this class —> “.wp-admin-bar-top-secondary” to basically be substituted for and replace
this class —> “.top-header-menu td_ul_logout sf-js-enabled” ?
Buddypress puts the avatar on the admin bar but I want the avatar and all the dropdown options on the newspaper topbar where it says ‘login/register’. I’m going to try messing with this CSS and core files but thought I’d try asking here as well. thanks.
Hi,
1. You could use some custom css code to achieve this, like in this example – https://www.screencast.com/t/mGOPaGKpYR and experiment with the margin property if you want it to to look different, or just use it as it is now. The code must be entered in Theme panel->Advanced Css in the Phone section in order to apply only in that situation – https://www.screencast.com/t/6sN0ZN4wQWs This is the code I used in that example
.vc_custom_1489069033070 .td-pb-span4 {
width: auto;
float:left;
margin: 33px auto 33px 33px;
}
2. The problem is that the ad you are using is not responsive, and it is displayed the same in all the devices. If the iframe has a fixed width in all situations, that is the way it will be displayed. In this situation the ad is full – https://www.screencast.com/t/jCGfUg1fa7 but for anything smaller it gets cut off – https://www.screencast.com/t/z1iGFkAzx If you can configure your plugin to show different ads depending on screen size this can solve this issue. You can also find more about using other ads here – https://forum.tagdiv.com/using-other-ads-non-adsense-ads/ and examples for different ads based on screen sizes.
3. At the moment these are the tested plugins that are tested periodically – https://www.screencast.com/t/SiNOeNy294T along with the plugins provided in the theme package. This does not mean that only these plugins are compatible with the theme. You can try others as well, some may work and others not, depends on the plugin.
Thanks
Hello verbume,
Try the code below and place it in Theme panel ->Custom CSS box.
The code is ->
.sf-menu ul .td-menu-item > a:hover{
color:black!important;
}
The result is here -> https://www.screencast.com/t/zyeAKr8mVvkF
Thanks.
Hello Chito,
Yes, it is possible if you are using the media query rule and hide it only for mobile devices. For more references about this setting, you should check the following guide here -> https://www.w3schools.com/css/css_rwd_mediaqueries.asp
Thanks for your understanding!
Theme is missing the style.css stylesheet error: https://help.market.envato.com/hc/en-us/articles/202821510
Hello,
Please add this code in the theme panel-> custom css box:
@media(max-width:767px){
.td-menu-socials-wrap{
display:none!important;
}
}
This will remove the social icons from the mobile menu.
Thank you!
i realized it’s because of the .td-header-main-menu in style.css of the parent theme (i am using a child theme)
i did
.td-header-main-menu {
background-color: transparent
}
but is there a better way? because when I update the theme it will happen again
I installed a demo, but i don’t want the demo style to be loaded anymore. How can I avoid that? the reason is that I customized the background color of the menu, but in chrome, every time the page is loaded for a split second you see the black menu background of the demo style.
How can I do that?
thanks!
p.s. i am super happy with the theme, it’s been a breeze setting everything up!! thanks so much
I’m having problems with the theme of you in wordpress, he said that I’m missing files, man, I’m in a hurry. This is the message that wordpress informs when I install the theme: – Installing theme of the uploaded file: themeforest-9512331-newsmag-news-magazine-newspaper.zip
Unpacking package …
Installing theme …
The package could not be installed. The theme does not have a style.css style sheet.
The installation of the theme failed. I’m waiting for the return, my email sr.benigno@hotmail.com
Hey Catalin, you’re an awesome wizard! <compliment>
What I did exactly is:
– Disable all cache plugins
– Install and activate WP Super Cache following the DIY tutorial provided by tagDiv
– Revert back to NewsMag CSS and stop using child CSS
– Clear all caches
voila!
The issue with the block and front page tiles appearing incorrectly no longer occurs.
Marking as [Resolved]
Thanks so much
I deleted all the custom CSS, and the problems persist. Now on responsive sharing buttons are not showing even they are activated, and the related posts are still cut on the right margin of the screen on mobile.
Thank you.