- NewsmagtagDiv Composer Tutorial
- NewsmagBlock settings tutorial
- NewsmagLogo & Favicon
- NewsmagFooter templates
- NewsmagUsing other ads
- NewsmagUsing Typekit fonts
Hello jorgeocampo,
Unfortunately, please notice that our theme does not have any such an option that allows you to add some ads to your posts on category only if you will make some adjustments in the code which involve custom work. If you want to add some ads in your categories pages you should edit the theme core files and add it to the code, according to our documentation here -> https://forum.tagdiv.com/topic/advertising-block-in-category-page/
After this, using a bit of CSS code you should adjust it to have a good look. Also, 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!
Hello umoetteumoh01,
You should use the code below and place it in Theme Panel -> Custom CSS area.
.td-element-style{
opacity:.07!important;
}
The result is here -> https://www.screencast.com/t/EV8UKoG6Cjs
Thanks for the message!
Hello,
I am going to update from Newsmag 3.4 to Newsmag 4 by myself.
To proceed to the updates, I just have to upload patch_3.4_4.0 to the Newsmag root. All customized css and settings in Newsmag-Child will be preserved.
Is that correct ?
Thanks in advanced.
Hi,
The avatar size could be modified in this file
– https://www.screencast.com/t/X26HwKyV
Change that value to a smaller one. This will affect all the authors boxes that are used or will be used.
Also modifying that value will require additional CSS to style the box further.
The comments could be removed in the same file as well, if you do not want to use display none. Comment or remove this code
– https://www.screencast.com/t/jUq0xHzj3ZYQ
Thanks
Hi,
Then you could hide the views with CSS. Try a code like this
– https://www.screencast.com/t/fUdfUEPXaxf
.td-post-views {
display: none;
}
Enter the code in Theme panel->Custom CSS.
Thanks
It doesn’t works… and I have noticed that the theme panel doesn’t save the custom css…
Hi,
Please provide a link to your website, and I will try to give you a solution if possible. I will try with CSS and position the logo that way.
Thanks
Hi Catalin
we have updated the theme but were having some issues.
There were some conflicts between using our child theme for the old version with the new parent theme
We have the parent theme active now and have pasted the css into Appearance > Customise > Custom CSS. This has resolved all of our issues.
Thank you for your support and we will come back here if we need further assistance.
ps the script traffictrade.life was getting injected into our header ad and directing users to malicious sites. Hopefully the new theme prevents this
Hi,
The modifications in the code seem to be in order. Please enter this code in Theme panel->Custom CSS and it will style the menu item in the shop
– https://www.screencast.com/t/WOykzrwvIdBQ
.menu-item-36318 li a{
padding: 7px 30px;
font-size: 14px;
line-height: 20px;
color: #111;
display: block;
position: relative;
}
.menu-item-36318 li a:hover {
color: #ffac99;
}
.menu-item-36318 ul {
padding: 15px 0;
}
Thanks
Hello,
Is it possible to style the breadcrumbs that appear on the category page differently than they appear on the rest of the site? Basically, I want it to be all white on the category pages and then it’s default color on the rest of the site.
I’ve tried the following entry in custom css but it’s not quite working like I’d hoped.
.entry-crumbs, .td-category { color: #fff;}
Alternatively, is it possible to just remove them from the category template if the css isn’t possible? If so, how do I do that?
Thanks.
Hi,
Please enter this code in Theme panel->Custom CSS and check the results. It should fix the issue you are having
.td_block_text_with_title
.td-element-style {
z-index: -1;
}
Please let me know if you still have further problems.
Thanks
Hi mamito,
You can use the code below and place it in Theme Panel->Custom CSS area if you want to hide this functionality from your front end.
The code is ->
.td-scroll-up{
display:none!important;
}
Thanks.
Hey everyone, just after installing the theme, no images have been showing up other than the advertisement header. Updated to the newest version and it’s still not working. The theme worked flawlessly on my test server.. Examples below:
https://postimg.org/image/87v2dg46j/
https://postimg.org/image/4qt0ah54b/
https://postimg.org/image/400a4p2qz/
Is this in result to some poor CSS error by default? After trying to upload featured images myself, those still don’t show up either. Could this be a server side issue?
Thanks!
Hello ofekin,
First of all, please ensure that our theme does not have any such an option that allows you to enable the infinite loading for post pages but only for pages, sorry! If you want to have this type of pagination for your page, notice that you should use any block from our list and setup the pagination from here -> https://www.screencast.com/t/40aExqY3oM
Also, if you want to hide the footer for mobile devices, notice that you should use a bit of CSS code to achieve this. Try the code below and place it in Theme panel -> Custom CSS area.
The code is ->
@media(max-width:767px){
.td-footer-wrapper{
display:none!important;
}
}
Thanks for your message!
Thank’s a lot! What about background colors? Do you suggest to add something to CSS?
Thank’s a lot!
Hi,
There seems to be a class missing form the menu, that is hwy it displays like that. Please check that where you made the modification in the code you have not modified that class here
– https://www.screencast.com/t/KLHLrEfT
I have tested this again and the sub-menu is displayed properly on Woocommerce pages
– https://www.screencast.com/t/73JVZiICNAir
It could be done with CSS but it would take a lot of code to make it look like it should.
Thanks
Hi,
To change the color of the article titles just for these blocks, you could use a code like this (enter your own preferred color)
This is for block 22
– https://www.screencast.com/t/Ct1CwkIDyS
.td_block_22 .td_module_17 h3 > a {
color: yellow;
}
And for block 9
– https://www.screencast.com/t/2gTVVhqK
.td_block_9 .td_module_8 h3 > a {
color: yellow;
}
The excerpts color for block 22 can be changed with a code like this
– https://www.screencast.com/t/HivpudMqn
.td_block_22 .td_module_17 .td-excerpt {
color: yellow;
}
Other article title font properties such as font size, font weight etc, can be changed in the theme panel for each module
– https://www.screencast.com/t/lbB9b1VDYoG
The excerpt font as well
– https://www.screencast.com/t/SQpxlU3d
The Read more cannot be turned off. That is how that block is designed. You could hide it with some CSS like this
– https://www.screencast.com/t/0CGiLKLR
.td_block_22 .td_module_17 .td-read-more {
display: none;
}
These codes must be entered in Theme panel->Custom CSS section. Please let me know if I misunderstood something or you have problems using the codes.
Thanks
After updating to 8.1 from 8.0, my hompage shows the following:
array(7) { [“el_class”]=> string(0) “” [“el_id”]=> string(0) “” [“class”]=> string(28) “td_uid_29_598a5ba45093b_rand” [“css”]=> string(0) “” [“tdc_css”]=> string(564) “eyJhbGwiOnsibWFyZ2luLXRvcCI6ImF1dG8iLCJtYXJnaW4tYm90dG9tIjoiMjAiLCJib3JkZXItdG9wLXdpZHRoIjoiMiIsImJvcmRlci1yaWdodC13aWR0aCI6IjIiLCJib3JkZXItYm90dG9tLXdpZHRoIjoiMiIsImJvcmRlci1sZWZ0LXdpZHRoIjoiMiIsInBhZGRpbmctdG9wIjoiYXV0byIsInBhZGRpbmctYm90dG9tIjoiMCIsImJvcmRlci1jb2xvciI6IiM4ZjFiN2MiLCJib3JkZXItcmFkaXVzIjoiNSIsImJhY2tncm91bmQtY29sb3IiOiIjZTFiMWNiIn0sInBob25lIjp7InBhZGRpbmctcmlnaHQiOiIxMCIsInBhZGRpbmctbGVmdCI6IjEwIn0sInBob25lX21heF93aWR0aCI6NzY3LCJwb3J0cmFpdCI6eyJwYWRkaW5nLWJvdHRvbSI6IjAifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OH0=” [“tdc_css_class”]=> string(28) “td_uid_29_598a5ba45093b_rand” [“full_width”]=> string(0) “” }
wp booster error:
TD Composer Internal error: The system tried to use an att that does not exists! class_name: vc_row Att name: “tdc_css_class_style” The list with available atts is in tdc_composer_block::render
/var/www/vhosts/dream-alcala.com/httpdocs/wp-content/plugins/td-composer/includes/tdc_composer_block.php > get_att
When I downgrade to 8.0 everything is normal again.
Any help?
Daniel
Hi,
Maybe you mean these elements that display with that particular block header template
– https://www.screencast.com/t/FNELOEtvZ
You could change that with a code like this if you want to
– https://www.screencast.com/t/ywAzIRPf
The code will apply on the whole website, and must be entered in Theme panel->Custom CSS if you decide to use it
.td_block_template_8 .td-block-title > *:before {
background-color: #fc5502;
}
Thanks
Hello Zoran,
I have inspected your button and now it seems to be placed align to your Booking logo. Please consult the following guide here -> https://forum.tagdiv.com/create-custom-code-using-the-browsers-inspector/ and try to create your own custom CSS code. This type of request involve some custom work and we cannot afford to provide something like that, at the moment, sorry!
Thanks for your understanding!
Hi,
Use the code below and place it in Theme panel -> Custom CSS area.
The code is ->
.td-newsmag-voice .td-pb-span4 .td_block_template_1 .block-title span:after {
background-color: red;
}
Thanks for the message!
The website is not “online” yet.
This box is in my footer (the part that you see in the screen), I chose the “Footer Style 3” and want to use the “[tagDIV]Authors Box” as a widget for the “Footer 2” space.
I already have remove the border of the box and change the color of each authors name (you can see my CSS edit on the screen), now I would like to reduce the gravatar size for each author in this box and remove the “Comment” part.
Hope you will understand what I try to ask…
Hi,
I believe this is what you want for the Shop menu item in the header menu
– https://www.screencast.com/t/ird3vGAni6WM
Please correct me if I misunderstand. If you decide to use the code, it must be entered in Theme panel->Custom CSS
.menu-item-6681 {
background-color: pink;
}
Thanks
The website continues to detect mobile css even when on the usual browser. Need an urgent fix on this. Thank you
Hello,
Unfortunately the theme css is much more complicated. You cannot target all elements with a general css selector. You will have to use the browser inspector to target specific classes for specific elements. Sometimes selectors get very complicated. You will have to use the browser inspector to target specific classes and selectors: https://forum.tagdiv.com/create-custom-code-using-the-browsers-inspector/
Thank you!