- NewsmagtagDiv Composer Tutorial
- NewsmagBlock settings tutorial
- NewsmagLogo & Favicon
- NewsmagFooter templates
- NewsmagUsing other ads
- NewsmagUsing Typekit fonts
Hi,
So you want to remove the title when there are no articles like in this post
– https://cryptochain.news/pervaya-kriptovalyuta-podeshevela-bolshe-chem-na-20-za-24-chasa/
Somewhat difficult to do something like this with CSS it seems. Try this code, it should remove the title when no related articles are present
– https://www.screencast.com/t/hWQ5IE4Zr
– https://www.screencast.com/t/rxPdhS7ZxpIr
footer div[class="td-related-title"]:nth-last-child(10) {
display: none;
}
Thanks
Hello,
Please use this code in your theme panel-> custom css box:
@media(max-width:767px){
.td-menu-login-section{
display:none;
}
Thanks.
Hello,
Please make the implementation and then provide a link to your site so I can inspect the code and see why the css does not apply.
Thanks.
Hi,
I looked through Newspaper 8.5 style.css and found some lines that I suspect might be not good. It would be very helpful for all starters in editing if support team would tell if it is normal or it could be a treat to website. Lets start with this >>>
ie9 .td-grid-style-1 .td-module-thumb a:last-child:before {
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0………….(many many more symbols).
Can someone explain this? Is it normal to have such a long line of symbols? It occurs in some other lines and I don’t know is it normal 🙂
hi all
i’ve to resize the width of the theme to a maximum of 1030 pixel because i’ve to use it with a skin banner that comes with predefined dimensions.
see screenshot below.

i’ve changed all the data on the style.css file from 1068 to 1030, uploaded a 1×1 png image on background options on the theme panel to let it switch to boxed version, but still, somehow, i’ve the container still at 1068px.
any hint?
Hi,
The links will inherit the theme accent color set in the theme panel. If you could specify exactly which link colors you would like to change, I will try to give you a CSS solution.
For example if you are referring to links in the post content, something like this will work
– https://www.screencast.com/t/etyRqnM9
.td-post-content a {
color: yellow;
}
This code will apply to all links in the post content, for all posts, once entered in Theme panel->Custom CSS.
Minor customization can be made by using the browser inspector tool
– https://forum.tagdiv.com/create-custom-code-using-the-browsers-inspector/
Thanks
Hi,
The easiest way would be to remove the top sharing with a code like this
– https://www.screencast.com/t/fnh8DUADugA3
.single .td-post-sharing-top {
display:none;
}
Enter it in Theme panel->Mobile theme->Custom CSS code.
Thanks
Hello,
It seems there is a css issue with the map iframe inside a raw html element.
Please use this code in the theme panel-> custom css box:
.tdc-theme-Newspaper .vc_raw_html iframe {
pointer-events: none;
}
Now you can access the raw html element in the composer.
Thank you!
Hello,
1) Please check this list https://forum.tagdiv.com/theme-blocks-modules and then use the table to change the font for the module you want to change, In your case: https://www.screencast.com/t/ZooBl4JkTime
2) Simply place an ad in the article bottom ad and it will sow up in every post style except if you use a smart list. Smart lists ignore article ads.
3) Add this css in the theme panel;-> custom code section:
#reply-title{
font-weight:900;
}
4) If you want a separate ad specifically for post style 13, you can add it in the post file using a do_shortcode function here:
<?php echo do_shortcode ('[td_block_ad_box spot_id="custom_ad_1"]'); ?>
Maker sure you have and ad placed in custom_ad_1 in the them panel. You can add a separator with a simple hr tag. Here is an example:
https://www.screencast.com/t/85H3lfc5VAX
front-end: https://www.screencast.com/t/2bdgRXDT
Happy holidays!
Hello,
Please translate the title in a capitalized format from here: https://www.screencast.com/t/FAbH7usRSPG
Explanation: The text is already uppercase by default and changed to lowercase with css for that demo. So capitalizing an uppercase text will result in uppercase text. There is no way to capitalize the first letter if it’s already uppercase along with the rest of the text. I hope this makes sense:)
Happy holidays!
Hi,
Those are predefined font icons that the theme uses to represent socials
– https://www.screencast.com/t/cAVMZGqGTxP
– https://www.screencast.com/t/mHYwaOce
An option to change or replace them with images of your own does not exist, at the moment.
It could be possible to maybe place a background image over the icons you want with a CSS solution, it will take a lot of work however to do it and make sure it looks properly.
Thanks
I created my own icon font using .svg icons and http://www.icomoon.io to create the font set.
It gave me a font folder to upload to the root directory and the css below.
I want to use these custom icons as menu icons like the font awesome functionality. However I cannot get them to display when entering the class ID in the Menus WP dashboard.
Any idea how to get this right?….
Hi,
That would be possible. You could create such a condition in the code, or you could try something easier. If you created the custom post type like this, using a post template
– https://forum.tagdiv.com/custom-post-type-support/
Then a CSS code like in this example should remove the author box for posts from the CPT
.single-td_book .author-box-wrap {
display: none;
}
The general setting in the theme panel will remove the author box for all the posts, a specific setting for custom post types does not exist at the moment. Please let me know if you need more help.
Thanks
Hi Support,
I’m working on a client’s website and added some custom css into the theme panel. Along with a table on the front page we have html in a sidebar widget to display it on pages. Since adding these elements everything was working fine and now the footer is being thrown into the sidebar on posts but not pages. We’ve removed all the custom code in theme panel and it still throws the footer into the sidebar area. We found a we thought when we aligned the play buttons from right to default but then coming back again after awhile its doing the footer sidebar error. We haven’t installed any new plugins since this started so we can rule that out. We’ve also disabled the footer and it still shows parts of the footer so we are perplexed. Below is a link to one of the posts.
https://www.casinoplayersreport.com/acquisition-ainsworth-game-technology-approved-novomatic/
Hello Guys,
I’ve tried to add this code in thr single loop post but it’s not showing on mobile
<?php echo do_shortcode (‘[vc_row][vc_column width="2/3"][td_block_21 custom_title=”Latest Articles” block_template_id=”” sort=”random_posts” ajax_pagination=”load_more” tdc_css=”eyJhbGwiOnsiYm9yZGVyLXN0eWxlIjoibm9uZSJ9fQ==”][/vc_column][vc_column width="1/3"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]‘); ?>
Hi Simion,
Many thanks for the help, you Rock! This helps a lot. We learn everyday something more. Keep up the good help. Maybe seeing you at my next post question I have?
Probably CSS change question? Will be cool to hear how you can help me.
Thanks 🙂
Hi,
I could give you a code to move the text element as you want by modifying it’s position forcibly but it might create problems on smaller screens. It would have to be responsive as well. The header and the page content are different containers.
Also a solution by code for the text column, will affect all columns on the website, unless a custom class is set to it.
First set a class to the element like this – https://www.screencast.com/t/OS1N4rgxXV
Then enter this code in Theme panel->Advanced CSS in the desktop section
.myclass.vc_column_text {
position:absolute;
top: -160px;
z-index: 9999;
left: 28%;
}
This one in the Advaced CSS-> Landscape section
.myclass.wpb_text_column h3 {
font-size: 14px!important;
}
.myclass.wpb_text_column {
top: -150px;
}
The result should be like this on desktop – https://www.screencast.com/t/xnLe9wx058
As the screen gets smaller like this – https://www.screencast.com/t/qQpCbgjj
This would be a solution in this case, you could give it a try.
Thanks
Simion,
I’ve disable Live CSS editor as you’ve advised. Thanks a lot.
I think it’s a strange idea to put the code in а <footer> container that is visible to all users, not just the administrator. However, it is no less strange that the search engines index it.
<footer>Save<div class="tdw-more-info-text">Write CSS OR LESS and hit save. CTRL + SPACE for auto-complete.</div><div class="tdw-resize"></div></footer>
-
This reply was modified 8 years by
mrx.
There is no plugin conflict as I removed them all and still got the same results.
I simply need the code to paste in css to amend the images from your plugins. If you click on any page, the image at the top of each post gets cut on portrait ipad, as do the images in the body of the text. This has nothing to do with any plugins that I’m using as the issue is still there when I removed the plugins.
Hello majorfuss,
Please keep in mind that there is not talking about Excerpts. It’s just talking about subtitle and if you want to change the font-style of this element, you should use a bit of CSS code. Try the code below and place it in Theme panel -> Custom CSS area.
The code is ->
.td-post-template-13 .td-post-sub-title{
font-style:normal;
}
The result is here -> https://www.screencast.com/t/od4lyadj
Thanks for the message!
Hello ultimate28,
You should reduce it if you are using a bit of CSS code. Try to inspect that section with the Inspector Browser and try to create your custom CSS code, according to our documentation here -> https://forum.tagdiv.com/create-custom-code-using-the-browsers-inspector/
Thanks for your understanding!
Hi
my websites uses SSL, i have errors with mixed content:
Mixed Content: The page at ‘https://trademasterteam.com/forex-trading/forex-harmonic-pattern-scanner-with-imarketslive-how-to-trade-forex-successfully/12614’ was loaded over HTTPS, but requested an insecure stylesheet ‘http://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800|Gudea|Capriola|Alegreya+Sans+SC’. This request has been blocked; the content must be served over HTTPS.
How do i fix it?
Hello,
This effect can be seen because of your slow page speed. Css works in cascades and if you have a low page speed, you will be able to see every rewrite of the css happening.
Please check with google page speed: https://developers.google.com/speed/pagespeed/insights/?hl=ro&url=http%3A%2F%2Fwww.uroblog.it&tab=desktop
Use this guide to increase your page speed: https://forum.tagdiv.com/how-to-make-the-site-faster/
As a note on speedbooster: https://forum.tagdiv.com/topic/tinymce-advanced-and-other-various-disabling-speed-boster/
Thank you!
Hi
many thanks for the solution.
i’ve another question: my website must be large at maximum 1016 pixel, i see that there’s no option through i can reduce this measure via control panel, shall i alter the css file?
if so, can you tell me where (and also: the modules/block will adapt themselves after the measure has changed?)
Hi,
That is unusual, I have tested the setting and it works properly. That is the purpose of the option, to remove the author name on posts if not needed.
It could be removed with CSS as well like this
– https://www.screencast.com/t/22a8w9ii
.single .td-post-title .td-post-author-name {
display:none;
}
But as I mentioned before, this would not be needed since there is a theme option specially for this. Please provide a link to your website so we can inspect it.
Thanks