- NewsmagtagDiv Composer Tutorial
- NewsmagBlock settings tutorial
- NewsmagLogo & Favicon
- NewsmagFooter templates
- NewsmagUsing other ads
- NewsmagUsing Typekit fonts
Hello Vaniquest,
I have checked your website and I saw that your style.css file is not loaded and that’s why you do not bring any style of your website, as you can see here -> https://www.screencast.com/t/eritonbD -> https://www.screencast.com/t/gAcqXv3iWHC sorry! I recommend you to make a full backup to your database and then, you should re-install the theme via FTP way because this is the surest method in this case. Also, if the problem is still there, you should contact your hosting provider, tell this issue because it could be possible to be a server problem and from various reasons the style.css file is not loaded on the server. Also, if you are using some untested plugins, you should remove all of them, leave just to active only the required plugins, clear all the caches, purge CDN files if you are using the CDN system and check the results.
Thanks for your understanding!
My website is working very slowly after install newspaper 8. I want to know recommended plugins name which I can use with this theme.
My problem is –
Optimize images
Leverage browser caching
Eliminate render-blocking JavaScript and CSS in above-the-fold content
Minify CSS
Minify JavaScript
Minify HTML
Pls help me.
My website is working very slowly after install newspaper 8. I want to know recommended plugins name which I can use with this theme.
My problem is –
Optimize images
Leverage browser caching
Eliminate render-blocking JavaScript and CSS in above-the-fold content
Minify CSS
Minify JavaScript
Minify HTML
Pls help me.
Hello Hadzi7,
Try the code below and place it in Theme Panel->Custom CSS area.
The code is ->
.td-social-pinterest{
display:none!important;
}
Thanks.
Hi,
You could use some css code to modify that heading size
– https://www.screencast.com/t/2BwsZGJEkp
The default value for the heading is 30px, you could modify the code the way you want, then enter it in Theme panel->Custom Css
.category .td-page-title {
font-size: 20px;
}
Thanks
Hello dmalhotra,
If you want to make these changes you should try the code below and place it in Theme Panel->Custom CSS area.
The code is ->
.td-post-template-1 .td-featured-image-rec {
float: none;
width: auto;
}
.td-post-template-1 .td-post-featured-image{
float:left;
}
.td-post-template-1 .td-post-content p:first-child{
clear:both;
}
The result is here -> https://www.screencast.com/t/DP88RyzZPG7u
Thanks for your understanding!
Hi,
There would be no need for such major changes. Please note that the Prepare time and other elements that you mention in this screenshot
– https://www.screencast.com/t/Vs7Y5thB
These are simple HTML elements that have corresponding classes, defined in the Recipe demo
– https://www.screencast.com/t/YEx1W8HtDyM
– https://www.screencast.com/t/NOWNpUHE21L
If you want to achieve something similar simply recreate the HTML structure using the same classes and enter the CSS code provided above in the Theme panel-Custom CSS section.
You can find more using your browser inspector, to analyze the elements on the page, and their classes
– https://www.screencast.com/t/J34akXLZz33o
– https://forum.tagdiv.com/create-custom-code-using-the-browsers-inspector/
Here you can find more information about post formats
– https://forum.tagdiv.com/post-formats-for-tinymce/
Regarding the logo, the Recipes demo uses Header style 11. This header style does not have a limit for the logo size. You can use any image you like
– https://forum.tagdiv.com/logo-favicon/
Thanks
Hi,
It would be possible with custom CSS code. By default there is no option to change the background color of the inner containers. If you could provide a link to your website and specify what exactly you would like to change and where, I will try to give you a solution.
Thanks
I think you can put any size you want in the custom ad boxes as long as it fits layout and you use modern responsive CSS3.
You might want to look at the IAB standard international ad unit sizes as a guideline, too.
( I don’t work here. )
Hi guys,
We sell web ads for our newspaper; not AdSense ads, but actual, in-house developed web ads. I need to know what sizes of ad are available in the newspaper theme so I can redesign our media kit with dimensions that will work with our new site. Is this information available in some sort of list form somewhere? I’d love to just be able to look things like this up rather than harass you with incessant questions. I feel like I’m missing something that everyone else seems to know. I also have no idea what “Post Template 1, 11, 12, 13, etc.” mean. Are there specific ad sizes for those? Is it possible, for example, to have a long vertical 120×600 ad going along the side of the sidebar?
Anyway, my main question is, in trying to figure out what ads can go where, I inserted an “Article Top Ad”, which works fine, but the ad itself is too close to the content below. I just need maybe 30 pixels of breathing room between the ad and the content. Is there a way within the theme panel to specify spacing, or is it necessary to insert some css? If the latter, what are the CSS selectors that govern margins for the ads, and where would I insert the appropriate code to space things out a bit?
Was for login page. Yeah was looking stuff up + asking here, wasn’t sure if theme affected it at all.
This code fixed it:
function custom_loginlogo() {
echo ‘<style type=”text/css”>
h1 a {background-image: url(‘.get_bloginfo(‘template_directory’).’/images/login_logo.png) !important; }
</style>’;
}
add_action(‘login_head’, ‘custom_loginlogo’);
Try this https://www.w3schools.com/css/css_table.asp
I think we’re not really on the same level, or I’m just misinterpreting your answer for (for which I’m sorry if that’s the case!), but let me ask this question in another way to perhaps make it more clear. As an example, how would I use Custom CSS, inserted in the Newsmag panel, link to – for example – a basis text widget placed in the footer?
If you would like to gain access, I will send you an e-mail with a link to the website and the user credentials to get into it.
Once again, thanks for your answer and trouble. I’m looking forward to reply!
I´m not so good at HTML5 or CSS3, would prefer a plugin.
Or do you know any good tutorial?
In our case we tend to manually un-enqueue the main CSS, move to footer, remove things like comments.js via functions.php hook/filter since we don’t use comments on our sites anymore, and use the ‘scripts to footer’ plugin to move .js to footer.
Main issues with speed are usually
a) image optimization
b) minify the main css and js when done messing with them
c) time to live, gzip settings
d) using PHP 5.6 and up with opcache — don’t use 5.2/5.3 and try moving on from 5.4 as all are end of life, and possibly no longer secure, and slloooooow with WP
e) limiting external calls – such as ping to FB/twitter for “number of likes/shares”
f) limiting number of ad units per page
g) consider removing all Google fonts and going with web-safe font stack; or limit to only ONE Google font family
(etc)
I use basic HTML5 and CSS3. Often applying a class of “table” is good start.
that’s brilliant simion thanks. your code has done the trick for the immediate needs, i can see there is a learning curve with the css specific to the theme structure that i’ll devote some time to once i’ve got the fundamentals in place.
good work fella 🙂
Hi,
We try to answer all the topics as soon as possible. This is done form oldest to newest. If you reply in your own topic before it has been answered, it will only refresh the date and move it further in the line.
I have inspected your website and I see the problem you mention. It seems that there are classes missing from your theme stylesheet. That is why these elements are displaying like that. Maybe you have made modifications to the theme files of any kind especially the CSS file.
A solution would be to reinstall the theme, and this should fix this issue
– https://forum.tagdiv.com/install-via-ftp/
Thanks
Hello esthederm_alex,
Try the code below and place it in Theme Panel -> Custom CSS area.
The code is ->
.td-gallery-slide-content{
display:none;
}
Thanks.
Sadly this didn’t work 🙁
I added this to Custom CSS. Should I try adding this directly to voice demo style CSS? if yes, where? Will you please check if the above code works on your side?
Also, is there any use of that gap which made you keep it there in the default version of Voice demo or it’s just a design mistake in this new theme template which will be taken care in the next update?
Thank you.
I wanted to say that images make up to more page speed than render blocking js and css. I meant to leave them for last and figure out all other implications. If everything else is in chack I can only recommend speedbooster if you say you know how to use it. However speedbooster will not be able top move ALL of the js and css to the footer. It has not been tested with every plugin out there.
Plaese rad the page speed guide again as all the info regarding speedbooster is there as to how to use it. Also please check your system status screen to see if it;s even active dues to plugins: https://forum.tagdiv.com/topic/tinymce-advanced-and-other-various-disabling-speed-boster/
Please know that page speed is not covered by the thee support. We try to help out where we can but please note that page speed customizaion is not covered in the support policy: https://forum.tagdiv.com/support-policy-2/
Thank you!
I’ve got an issue with a 728 x 90 leaderboard ad (which I’ve inserted below the post title but above the post content) that is spilling over into the sidebar when viewed on desktop or tablet.
Basically, I need to increase the width of the post/category content section. Do I do this in the Theme Panel or is it done by adding some custom CSS. I suppose I need to increase the overall size of the content container as well (including the right sidebar).
Please advise me on how to proceed.
Thanks.
Hello,
This happens because of the custom nature of your infinite loading block. The css does not apply properly as the css code was created for pages not posts. In ordewr to replicate the design on posts you should reoplicate this css: https://www.screencast.com/t/jQLkhngrjWnc
Thanks.
Hi,
That related section that you mention is coming from the Jetpack plugin not from the theme. Maybe the plugin has the option to not display the date on the posts.
Or maybe you can try a code like this, if there is no setting for that
– https://www.screencast.com/t/08bTMqIxu
.jp-relatedposts-post-date {
display: none!important;
}
The code must be entered in Theme panel->Custom Css if you decide to try it.
If you want to disable the default theme Related articles section, you can do that in the theme panel
– https://forum.tagdiv.com/related-articles/
Thanks
Hello imambudianto5,
First of all, I will thank you for coming to the forum! Please keep in mind that we do not want to provide technical support to the Dashboard because there can be many pirates and we do not want them to see our solutions given to customers who paid our theme and that’s why we insisted on writing us here and not there. Please understand us and in the future, write us HERE.
Please notice that each demo has an own design and global class and the theme does not have any such an option that allows you to make any mix between demos but only if you will make it from the code.
As a hint, you should take the following HTML code and add it in your post and then, use the CSS below, placed in Theme panel -> Custom CSS box.
.td-recipe-time {
width: 100%;
border: 1px solid #ededed;
padding: 11px 16px;
margin-bottom: 26px;
}
.td-recipe-time br {
display: none;
}
.td-recipe-time .td-recipe-info {
float: left;
width: 33.3333%;
/* responsive portrait tablet */
}
@media (max-width: 1018px) {
.td-recipe-time .td-recipe-info {
width: 100%;
}
}
The result is here -> https://www.screencast.com/t/VkdJfQCD
Notice that is not a simple task 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 custom services at the moment, sorry!
Thanks for your understanding!