- NewsmagtagDiv Composer Tutorial
- NewsmagBlock settings tutorial
- NewsmagLogo & Favicon
- NewsmagFooter templates
- NewsmagUsing other ads
- NewsmagUsing Typekit fonts
Hello,
There is no setting to remove the spacing but you can do it with a bit of css. Please add this code in the theme panel->custom css box:
.td_block_social_counter .block-title{
margin-bottom: 6px;
}
Thank you!
Hello chrismorda,
If you want to remove the footer section only for mobile mode, you should use a bit of CSS code for this. Try the code below and place it in Theme panel->Custom CSS area.
If is not what you mean, please provide more details.
The code is ->
.td-mobile-footer-wrap{
display:none;
}
Thanks for the message!
Hello devkabir,
Are you referring to this space? -> http://screencast.com/t/dbG8fiqaxO If you want to remove that space, you should use the code below and place it in Theme panel->Cusotm CSS area.
The code is ->
.td-header-sp-ads {
margin-bottom:0;
}
The result is here -> http://screencast.com/t/s4mLd54vu
Thanks for the message!
Hi,
As far as i see, your site has no validation errors.
As i try, the theme injected script remains on amp pages so it gives an validation error.
AMP -Automattic
Accelerated Mobile Pages
Yoast Glue
Which plugin and setting combination did u use?
For example the following script is on regular page and how can you managed to disregard the following script on your amp page?
<script>
(function(){
var html_jquery_obj = jQuery(‘html’);if (html_jquery_obj.length && (html_jquery_obj.is(‘.ie8’) || html_jquery_obj.is(‘.ie9’))) {
var path = ‘https://www.howtoisolve.com/wp-content/themes/Newspaper/style.css’;
jQuery.get(path, function(data) {
var str_split_separator = ‘#td_css_split_separator’;
var arr_splits = data.split(str_split_separator);
var arr_length = arr_splits.length;if (arr_length > 1) {
var dir_path = ‘https://www.howtoisolve.com/wp-content/themes/Newspaper’;
var splited_css = ”;for (var i = 0; i < arr_length; i++) {
if (i > 0) {
arr_splits[i] = str_split_separator + ‘ ‘ + arr_splits[i];
}
//jQuery(‘head’).append(‘<style>’ + arr_splits[i] + ‘</style>’);var formated_str = arr_splits[i].replace(/\surl\(\'(?!data\:)/gi, function regex_function(str) {
return ‘ url(\” + dir_path + ‘/’ + str.replace(/url\(\’/gi, ”).replace(/^\s+|\s+$/gm,”);
});splited_css += “<style>” + formated_str + “</style>”;
}var td_theme_css = jQuery(‘link#td-theme-css’);
if (td_theme_css.length) {
td_theme_css.after(splited_css);
}
}
});
}
})();</script>
Hello,
I use nested lists, like you can see on this screenshot:
http://prnt.sc/dky3xc
I am trying to remove the vertical spaces below the second level items to achieve the same style like here: http://demo.tagdiv.com/newspaper/lists/ I checked out the source code of this page and was able to achieve the effect by using this:
<div class="wpb_text_column wpb_content_element ">
<div class=wpb_wrapper>
Is it possible to remove the vertical space without applying manually these classes every time I use nested lists? I was thinking about some custom css, is it a good idea?
What is the file .php or .css for edit this layout? Thank you.

Hi, currently I’ve got disabled all Google fonts in my Newspaper Theme Panel, but when my page loads my site (https://projectmanagers.org) I get the following error in Chrome Developers console:
Failed to load resource: the server responded with a status of 400 ()
nks-custom.js:179transform
https://fonts.googleapis.com/css?family=none Failed to load resource: the server responded with a status of 400 ()
jquery.js?1ca37a:1 Handling of ‘mousewheel’ input event was delayed for 188 ms due to main thread being busy. Consider marking event handler as ‘passive’ to make the page more responsive.
How can I fix it?
I just updated from Newspaper 6 to Newspaper 7 via wordpress. I deleted the old and installed the new (and yes, I installed the correct .zip).
After install and activation, something seems broken. I am receiving this error:
“Call to undefined function vc_shortcode_custom_css_has_property() in /home/sailing8/public_html/wp-content/themes/Newspaper/vc_templates/vc_row.php on line 53”
I don’t know what I’m looking for on line 53…
I updated all the plugins, and still the same result. Then I updated to 4.7, and still the same result.
Any ideas? here is the site: http://www.sailingchance.com
Thanks! Jason
To add to my previous post, there is a file called “style.css” located in the Newspaper template folder named “Newspaper-Child.” I don’t know if that has any baring on this, or if it needs to be moved.
About 4 hours ago I purchased Newspaper 7 from Themeforest, and then downloaded it. Then I uploaded it to the Themes folder in the file manager of my Hostmonster account. The template wasn’t recognized and the message in wordpress under Broken said “stylesheet missing.” So next, I deleted the Newsprint folder from the Themes folder using the file manager in hostmonster, to start over.. So tried a second approach to upload the theme from within WordPress, using the upload template feature. I was unsuccessful a second time…Wordpress message says “Package could not be installed. The theme is missing the style.css stylesheet.” I have not seen this happen when installing other templates. Please advise on how to handle. Thank you.
Hi. I figured out the problem, but I cannot figure out the solution.
The problem is NOT what I stated in my previous emails. I stated that the sub-footer was skewed too far to the right. However, I realized later that the problem is with the social icons in the footer (not sub-footer). These social icons are skewed to the LEFT compared to all the other elements on my homepage screen. So I looked for some margin or padding issues in the CSS.
In the following CSS, when I changed ‘margin-right’ to 0, the social icons became closer together, but they also became perfectly centered. So the problem is that 30px is being put to the right of the right-most social icon (for me, the YouTube icon):
.td-footer-template-13 .footer-social-wrap .td-social-icon-wrap {
margin-right: 30px;
text-transform: uppercase;
font-family: ‘Open Sans’, arial, sans-serif;
/* responsive portrait tablet */
/* responsive portrait phone */
}
I am not familiar enough with the CSS and which classes govern which elements. I like having the 30px in between the elements, but obviously there should be ‘margin-right: 0’ for the final (right-most) social icon.
So would you please tell me how to fix this? Many thanks!!
Nick
Hello Bogdan,
This css didn’t solve our problems.
1- Group Admin text Size is too big.
2- Search bar is going to second row.
Could you help us to handle these problems?
Thank you,
Generally you can’t unless you create a custom template. Note CSS is very small if minified. Often you simply create a custom class like “.specialposty” and put that in your style.css at the bottom, or in the custom CSS box in theme panel.
.customposty{font-size:30px;border-bottom:4px:}
or whatever.
Then in your special post/page, just call that
<div class="customposty">
My special CSS for just this one page on site.
</div>
something like that.
If trying to modify existing classes on just one page; you might have to modify a template and name it after the post ID, where you would append a class to the existing inline classes. If that makes no sense, you might want to try different approach entirely.
-
This reply was modified 9 years by
simchris.
Thank you very much. the custom css worked perfectly!
Just the part with the background doesn’t really makes sense for me. I personally found the solution I was looking for but maybe interesting to know for others searching for help.
Hi,
I want to target custom css to a specific post, not site wide.
What code would I need to put where?
I tried a plugin but it causes a server error 500.
Thanks
Thanks Catalin. I cleared my browser caches (on Chrome and Firefox). I also installed the WP Super Cache plugin according to the tagDiv tutorial and cleared the server-side cache. I am not using a CDN right now.
Despite all this, the sub-footer tagline that I have below my footer social icons is still skewed to the right. I am attaching a link here so you can see a close-up screenshot of this: https://www.screencast.com/t/vI3LQ6VdkVd
On the right side, the sub-footer line goes past the YouTube icon, but on the left it is “inside” the Facebook icon.
When I downsize my screen to tablet/iPad and phone sizes, the sub-footer becomes perfectly centered – it’s ok. It is only at the larger screen sizes that it is skewed right. I wonder if there is some padding setting in CSS that is doing this? I have tried modifying the CSS a lot but nothing works. For example, I have tried using code based on the “@media (min-width: 768px) and (max-width: 1018px)” commands in CSS, but no luck.
Is there another way I could have you look at it? Give you a user access? I really appreciate your help.
Nothing I do with CSS seems to work in removing the pinterest or google share button. I’ve tried the code you posted- any chance it needs to be updated?
thank you.
Hi,
There is a solution for this, just enter this code in the Theme panel->Custom Css
.td-header-style-8
.sf-menu a.sf-with-ul {
padding-right: 21px;
}
@media (max-width: 1140px) {
.sf-menu .fa {
display: none;
}
}
However, you should consider changing your Header style because if you plan on adding more menu elements in the future, this will not work.
Take note that when you set a background color or image, your website will automatically change to the boxed version and a Full header style will adapt to give you the best result.
Thanks
Hi,
1. I guess you have set white background and text color globally from Theme Panel > Theme Colors – http://screencast.com/t/kYSvK5ML48x This setting affects also the Related Articles block.
If you really need to use it like that, then you can overwrite it using custom css in Theme Panel > Custom Css – http://screencast.com/t/bYOalphRQ
.td_block_related_posts .td-related-title .td-cur-simple-item {
color: #222;
}
2. You will need custom modifications for this. You can try to add a condition here in this file and display a custom ad for your specific categories – http://screencast.com/t/XjqcaUqmsM You can use is_category function – https://developer.wordpress.org/reference/functions/is_category/ and do_shortcode for a custom ad – https://developer.wordpress.org/reference/functions/do_shortcode/
Thanks!
Hi,
Please update the Social Counter to the latest version provided with the theme. You can find it in the /plugins folder from theme package that you download from themeforest – http://screencast.com/t/6e7bdiRf The procedure is the same like for Visual Composer – https://forum.tagdiv.com/how-to-update-visual-composer-plugin/
I’m not sure where you use the Slider, on your homepage I cannot see on, so maybe you have removed it.
You can use this custom css to reduce the top padding – http://screencast.com/t/ZOBfhdBfb
.home .td-main-page-wrap {
padding-top: 15px;
}
Thanks!
hi there,
I’m trying to customise widgets in my sidebar by putting new Css code in the “custom css” (in theme panel)
I’m selecting the widget by its #id but nothing changes.
I also tried to custom other Css elements but I think my custom Css does not work.
Can you please help?
Thx a lot
Hello nkodgh,
Please try the code below and place it in Theme panel->Custom CSS area.
The code is ->
.td-g-rec-id-header{
text-align: center;
}
The result is here -> http://screencast.com/t/LEmcdgbcRR
Thanks for the message!
Hello chrismorda,
There is an option for it in Theme panel->Cusotm CSS area.
The code is -> http://screencast.com/t/HQC1tHatvr08
Thanks for the message!
Never mind. I fiugred it out. I had made a change to the CSS and had to undo it. Now I have the black box back, and I fixed the header menu based on your information. Thank you again for help.
Hi Bogdan,
Thanks for response. We solve the issue with Google News. The problem was “Varnish Cache” on Server. We disabled it and now work fine.
Can I ask you 2 question, please?
1) How can i do to show correct “Also Read” and “Other from author”? I tried with Custom CSS and color tab but nothing changes Please see: https://www.uploady.com/#!/download/p~yapqDQTir/8IkxuY2SOZJwcRAW https://www.uploady.com/#!/download/f2ZnYBf9~af/qvBQFtPPWgyGundm
2) I can change Ads (728×90) in header area to the right of the logo and set it for certain categories? Which files i can change please? (i.e) I want to show in home one Ads, but in certain categories other banner
Thanks