- NewsmagtagDiv Composer Tutorial
- NewsmagBlock settings tutorial
- NewsmagLogo & Favicon
- NewsmagFooter templates
- NewsmagUsing other ads
- NewsmagUsing Typekit fonts
Hello kt_kasia,
You should use a bit of CSS code to customize it as you wish. For more information and instruction on how this can be done, you should use the Inspector browser and check this element because there you will see what CSS rules were used. Also, you can check our useful tutorial here -> https://forum.tagdiv.com/create-custom-code-using-the-browsers-inspector/
Thanks for your understanding!
Hello planetcappe,
Notice that the child theme core is the same with the previous version. I think that was omitted to change the child theme version number in the folder. Keep in mind that the editor-style.css should not be present in your child theme. The only files which are in child theme are these -> https://www.screencast.com/t/GmRtzyFK
Thanks for your understanding!
Thanks for the response. I did it many times and never had errors, at the moment I’m using the latest version of the theme, 8.0, and the child theme that comes bundled. As you know, the child theme doesn’t seem to be updated to the 8.0 version, it also has a presentation image of version 7. I’m using it locally to develop my project.
The strange thing is that it’s searching an editor-style.css file that is not present in the child folder, so I’m wondering: should it be there?
Hi,
I see that your website is RTL, please note that theme theme does not support this direction. Applying this style to the theme, or modifications to the theme in this matter can cause problems like this one.
As a quick fix for this issue you can try this code. Enter it in Theme panel->Custom Css
#td-mobile-nav {
position: fixed;
}
But other problems could appear with other theme elements, because the theme is not optimized or designed with RTL in mind. Some of the theme aspects are directly dependent on direction, and may not function properly in this case.
Thanks
Hello,
The size should be 96 px but yours seems to force a 64 px width.
Try to add this css in your theme panel-> custom css box:
.author-box-wrap .avatar{
max-width:96px;
width:100%;
}
Thank you!
Hi,
Try this css in the theme panel-> custom css box:
.woocommerce .product img{
border:1px solid lightgrey;
}
Thanks.
Hi, I think you misunderstood, the problem isn’t that I get a 404 error, the problem is in the 404 page template itself, it has an issue with the style of the title block, it comes with a strange background.
Anyway, I solved with a custom CSS rule, but I hope you can fix it in the upcoming updates because it is also present in your demo.
Thanks for your help
Hi! Every time I place a “Text with Title” Element with Tagdiv Composer and try to edit content I get the error message:
Failed to load content css: http://localhost/xxxx/wp-content/themes/Newspaper-child/editor-style.css
I copied the folder Newspaper-child from the theme as I always do; the editor-style.css file he’s looking for is only in Newspaper parent folder. Despite this, the Composer seems to work.
What could be the problem?
Thanks.
Hello, I am running my website on multi site platform and using some plugins that are creating render blocking Js and Css. I read your tutorial about moving the CSS and Js by adding codes to Speed Booster plugin.
Now can you tell me how can I move the CSS and Js of the Plugins those ID is not in the list after entering the code in functions.php.
Hi Tagdiv, hope you’re well.
I’m quite worried. My homepage is very messed up.
I have several post grid (from VC) with 2-3 columns.
Yesterday I changed the font of one element of the grid, and then boom, all the grids on my homepage are one under another.
I checked everywhere and found that there is a code generated by js_composer.min.css that includes this :
.vc_grid.vc_row .vc_grid-item {
padding: 0;
vertical-align: top;
/* float: none; */
box-sizing: border-box;
z-index: 1;
}
You see the “float:none;”?
Because of this, all the blocks are this way. So because this website is way popular, I went on the file and deactivated it (that’s why there is the /* */ stuff).
But I know that’s just some little temporary patch.
Can you please help me on this? I can’t find why this happens.
Here is the website : https://fashioniseverywhere.com/
Check on the 2nd section (with 3 columns/3 articles), check the CSS code on the div with classes “vc_grid-item vc_clearfix vc_col-sm-6 vc_visible-item fadeIn animated”, you’ll see.
I can also give you some admin credentials.
Thanks thanks thanks!
Got it – that’s bad! It’s tagdiv editor, the themepanel should cover that editor as well.
Also the CSS for each page doesn’t always work for me. Even if I create a new page, it’s very buggy – I am trying to save my progress and it doesn’t want me to. I even tried very simple stuff like .hide {display:none;} <- just one line of css, doesn’t want to save!
Thanks!
Here is the example link
https://www.screencast.com/t/0yt3W7t8H
I will appreciate:
1. The border css code
2. border color in addition with the code
3. border spacing in addition with the code if possible
Thanks
Hello,
I understand the issue perfectly and yes, it is a compatibility between the theme and the plugin you use, but plugin implementation is not part of the theme support.
We cannot make the theme compatible with every plugin out there. The only tested, recommended and supported plugins are found in the plugins section of the theme:
https://www.screencast.com/t/PyXp2KY7R
In good will though, I will try to help if it’s a simple css issue if you provide a link to your site so I can see the issue.
Thanks.
Hi,
The Accordion element may not be suited for what you are trying to achieve. The same thing happens for me as well
– https://www.screencast.com/t/zIuMRidtN
Also the Tabs element is known to cause issues with videos. You could try this code and see if this fixes the issue, just enter it in Theme Panel->Custom Css. Clear any caching installed after you enter the code.
.vc_tta-accordion iframe {
height: 100%!important;
}
Thanks
Dear support,
Could you help with with a global css code for woocommerce product image border.
Thanks
Hi,
Please try it like this, it should increase the height of the slider
– https://www.screencast.com/t/zQGkudigT
I have also modified the z-index to make the side sharing that you have display on top of the slider (if you don’t want that just remove it from the code)
@media (max-width: 500px) {
.iosSlider-col-3 .entry-thumb,
.iosSlider-col-3,
.iosSlider-col-3 .td_module_slide {
height: 250px!important;
z-index: auto!important;
}}
You can enter the code normally in Theme Panel->Custom Css section.
Thanks
Hi,
The text on the block is already aligned to the left
– https://www.screencast.com/t/I4UHwNBS
Maybe you meant to make it aligned to the right
– https://www.screencast.com/t/Nx7y5kb5WY
This is the code used, you must enter it in Theme panel->Custom Css
.td_block_3 .entry-title,
.td_block_3 .td-module-meta-info {
text-align: right;
}
This may also require to move the comment count is you have it enabled, on the left side
– https://www.screencast.com/t/9VogYpAbqb
This is the code used
.td_block_3 .td-module-comments {
float: left;
}
If this is not what you wanted, it would be very helpful if you could provide more details, or some screenshots with what exactly you are trying to achieve.
Thanks
Hi,
You can simply add it as the last element on the page, after you placed all the other elements
– https://www.screencast.com/t/kmrCez63h
The footer can only be disabled for all the website in the theme panel. You could hide the footer with Css and the slider will be the last in the page.
– https://www.screencast.com/t/IUYaymZ0re6
If you can provide a link to your website after you place the Revolution slider, I will give you a code to hide the footer on the homepage if you consider this a solution.
Thanks
Hello,
On the mobile theme the buttons do not yet have the css in place. Please copy the css for the buttons from style.css here: https://www.screencast.com/t/IxgR8mslmW1 and paste it in the theme panel->mobile theme custom code section: https://www.screencast.com/t/c7vzF7ylh
We will fix this issue in the next theme version.
Thank you!
Hello ytre77,
You should use a bit of CSS code if you want to align your social counter and that’s why I need your website so I can take a closer look at it and also, so I will be able to provide a more accurate response.
Thanks for the message!
Hi, I need to insert videos within an accordion structure. When I do this using either the video shortcode or the vimeo embed code, it looks fine within the setup page but when published it gets shrunk down to a thin line.
see here: http://wellnessatwork.com.au/wp-content/uploads/2017/06/Video-embed-screenshot-200617.png
I’m assuming that the css is overriding it but am unsure how to fix it. Can you please help? I need to publish this tomorrow.
Thank you!
Exactly, as wrote cadarmarius
I do not use the mobile template
The slide remains crushed when viewed from the phone
Css code does not work
Thanks.
Hi Simon!
I have the mobile plugin activated
I enter the code at -> Newspaper/mobile/style.css.
That doesn’t work.
Thanks!
Hi,
Maybe this is all a misunderstanding. If you want to have the exact same design and layout as the demo, you have to install it in the theme panel
– https://forum.tagdiv.com/installing-demos/
From what I can see the demo style is not present on your website.
When you install a demo, the system will import all the theme panel settings and the custom style including the header style. The header style used is style 5 with some modifications through CSS and the theme panel.
This customized header style cannot be selected in theme panel, the demo needs to be installed in order to achieve that result.
Please remove the code my colleague provided, and simply install the demo.
Thanks
Hello Teresa,
I have inspected your website and I did not saw this post template on your website, sorry! You should try using the code below and place it in Theme panel->Custom CSS area and check the results. Also, before checking your results, you should clear all of your caches.
.td-stretch-height {
height: 100%;
width: 100.03%;
margin: 0;
position: relative;
}
Thanks for your understanding!