- NewsmagtagDiv Composer Tutorial
- NewsmagBlock settings tutorial
- NewsmagLogo & Favicon
- NewsmagFooter templates
- NewsmagUsing other ads
- NewsmagUsing Typekit fonts
Hello brianzulberti,
Please try the code below and place it in Theme panel->Custom CSS Area.
The code is ->
.td_block_text_with_title p {
margin-bottom:0;
}
The result you should see here -> http://screencast.com/t/odsv1jNHsoa
Thanks.
Hi
Try this css in theme panel > custom code > custom css: http://screencast.com/t/K8X0CD9pg
.white-popup-block:after{
background: red!important;
}
Let me know how it goes.
Thanks!
Can’t figure out how to get rid of that padding! Over and below logo + ad spot – I sort of found a way to reduce the top margin, but can’t get the bottom to budge.
I searched all the posts, couldn’t find anything that worked, I’ve tried a lot of CSS code found in these support forums 🙁
Thank you so much – GREAT template, like, wow!
Steve
Hello johnmiao,
Please try the following code and place it in Theme panel->Custom CSS area.
The code is ->
.td_block_9 .td-module-title:before, .td_block_17 .td-module-title:before {
content:'\2022';
float:left;
display:inline-block!important;
line-height: 50px;
margin-right:7px;
font-size:30px;
}
Please notice that this type of feature could be set only from Excerpts, like this -> http://screencast.com/t/ErpFUSB4UvkE For more information for this, please check our documentation here -> https://forum.tagdiv.com/excerpts-introduction/
Thanks.
HI
Yo need to edit get_date() function and paste in it the code for desired icon: like here: http://screencast.com/t/ssJ4mg5MH
I’ve also used this css to add a little margin between the icon and date: http://screencast.com/t/nupkfrSh75n
.entry-date {
margin-left: 5px!important;
}
Hope this helps.
Thanks!
Hi
Use this css in theme panel > custom code > custom css to hide the comment count: http://screencast.com/t/mcDHXXFyQ
.td-module-comments{
display: none;
}
Thanks!
Hello Lena,
Please try the code below and place it in Theme panel->Custom CSS area.
The code is ->
.td-read-more{
display:none!important;
}
Thanks.
Hi
I’ve checked the site again and noticed that you’re using child theme. Try also to deactivate the child theme as it may cause some issues, also remove any css/js minifications then try again.
If you still can’t manage to solve this try to setup a new wp-install on a sub-domain following this configuration:
– WordPress V 4.4.3
– Newspaper theme V 7.3
– Visual Composer V 4.12
Do a few tests with this configuration and check how it goes.
Thanks!
Hello uyo,
If you want to remove the Newspaper Search, please try the code below and place it in Theme panel->Custom CSS area.
The code is ->
.header-search {
display:none;
}
Thanks.
HI
1. Try this css in theme panel > custom code > custom css to hide social icons from mobile menu: http://screencast.com/t/rd8nCpK0fM
.td-menu-socials {
display: none;
}
2. The current menu was designed to go over the entire screen and to change this are required some changes in menu’s structure. This is a complex task which involve lots of customizations and unfortunately I can’t provide a solution for the moment. If you really need this and you’re not aware of the steps you need to take in this regard my advice is to k=look for someone who can help you with implementation or hire a freelancer to do it for you as we can’t offer custom work at the moment.
3. The colors for mobile min can be changed from theme panel > theme colors: http://screencast.com/t/CmZfdVcrPB
4. You can make a add a new menu for mobile only editing theme’s code as follows:
– edit td_menu.php and add this line of code here: http://screencast.com/t/Rf59isOchm
'custom-menu' => 'Custom menu for mobiles'
– edit menu-mobile.php and add thei code here: http://screencast.com/t/ybU3TZ4yLhvu
wp_nav_menu(array(;
'theme_location' => 'custom-menu',
'menu_class'=> 'td-mobile-main-menu',
'fallback_cb' => 'td_wp_no_mobile_menu',
'link_after' => '',
'walker' => new td_walker_mobile_menu()
))
– go to Appearance > Menu and create a new menu, then assign it this location: http://screencast.com/t/8FQyVVnec3i The result should be like here: http://screencast.com/t/DqZniIQXAc
Hope this helps.
Thanks!
Hi
Try this css in theme panel > custom code > custom css to set a background image for header: http://screencast.com/t/AgKqYa2y
.td-header-row.td-header-header {
background-image: url("http://demo.tagdiv.com/newsmag/wp-content/uploads/2016/05/2-1-640x479.jpg");
}
You need to replace the current url with the one of the image that you want it as background for header.
Hope this helps.
thanks!
Hello lejohn,
Please try to use the following code and place it in Theme panel->Cusotm CSS area.
The code is ->
.td-footer-wrapper {
background-color: rgba(10,10,10,.9);
}
Thanks.
Hi
Do you mean that changes made in theme panel are not applied on front end? This could be a cache issue so try to make some changes which involve custom css, change a color or a a font, clear all caches then test again.
Let me know how it goes and if you still can’r manage to solve this please provide more details about this issue and also your site url so i can have a closer look.
Thanks!
hello,
For i have changed the default color the newspaper theme for my site, so i also want to change the background color of the login form as well.
I have searched the style.css file, but not sure which css style i should edit.
anyone can help?
thanks
Hi,
I try to put this code but it only works for a desktop.
I also tried theme>advanced css>responsive css>phones but it don’t work
Hi.
I added these lines to custom CSS:
.td-header-style-5 .td-header-menu {
width: 410px
}
.sub-menu {
width: 410px
}
.sub-menu-columns ul.sub-menu li {
display: inline-block;
width: 200px;
}
.sub-menu-columns ul.sub-menu li:nth-child(odd) {
float: left;
margin-right: 10px;
}
.sub-menu-columns ul.sub-menu li:nth-child(even) {
float: right;
}
It works fine on the mobile, splitting the sub-menus in two columns. However in the PC nothing happens. Am I missing something?
Thank you.
I am trying to change the text logo to Ubuntu , a google font. I am using it in all the headings on the site already, but I want to use it in the text logo.
I have tried adding this custom css
.td-logo-text-container .td-tagline-text {
font-size:20px;
font-family: ‘Ubuntu’, sans-serif !important;
}
.td-logo-text-container .td-logo-text {
font-size:40px;
font-family: ‘Ubuntu’, sans-serif !important;
}
When that didn’t work I also tried adding in custom html section:
<link href=”https://fonts.googleapis.com/css?family=Ubuntu” rel=”stylesheet”>
I’ve tried
With my fingers crossed and backups in place I did the upgrade. And you’re right that it’s fairly simple to do. But since we have over a dozen of bulky plugins I always get cold sweat with updates like these.
What I do by the way, is simply rename the (folder) new version to Newsmag_3_1 and upload it next to the previous versions. I don’t see a reason why that should’t work, is it? And then I update our child theme accordingly. (CSS & functions.php).
Hello, i have two search bar on my webpage; how do i disable the Newspaper Search? I have gone through the Theme Panel and cant seem to find to option to disable search.
I placed a custom CSS on Theme Panel > Custom Code > Custom CSS
.td-aj-search-results{
display:none;
}
But the Search Icon is still there. I am using Newspaper v7.2
Thank You
Hi,
The custom CSS worked. Thank you so much. I want to remove the two posts too (VINCI JV wins contract & Titan Cement buys – from your screenshot). They seem to be linked to the “latest” tag but I’m not able to find the block to delete.
I will recreate the other issue I was referring to, with screenshots and get back to you.
Regards.
Hello mrx,
You can try to use a bit of CSS to align the post title which has not featured image set. Try the code below and place it in Theme panel->Custom CSS area.
.td_block_related_posts .td_module_no_thumb {
margin-top:50px;
}
The result -> http://screencast.com/t/tt6FMz1o
Or another alternative for you, which we recommend you, would be to activate the placeholder from your Theme panel, like this -> http://screencast.com/t/wYg94QHfCijM and then, each post which does not have a featured image will display the default image for this case, like this -> http://screencast.com/t/4HXJfczwk
Hope this helps!
Thanks.
Hi,
Thanks for the help. This mankes sense but a new CSS is not being generated.. How can I correct this?
Hi
Try this css in theme panel > custom code > custom css to add a transparency effect for page contest: http://screencast.com/t/dZCLjg5B0EBw
.td-container {
background-color: rgba(255, 255, 255, 0.77);
}
Thanks!
HI
When the theme is first time installed on site is applied the default css from style.css When you make changes in theme panel a new css is automatically generated and override the code from style.css. The default option refers to the color/font set from style.css. You can change this only if you edit the entire css file but is more easy to do it from theme panel.
Thanks!
HI
Try this css in theme panel > custom code > custom css to remove the pagination: http://screencast.com/t/sQ32Lfvw3
.page-nav{
display: none;
}
I’ve checked your site several times but couldn’t find any issues wit homepage’s layout. Also I could’n find theme’s slide block on your homepage, do you refer at this element: http://screencast.com/t/2oHQk0oooKof
If you still have this issue please provide some screens when appears again or more details about how can we duplicate the situation on our end.
Thanks!