- NewspaperCreate Custom Code with the browser’s Inspector or the Live CSS Box
- NewspaperScroll Animation
- NewspaperWP Rocket and Newspaper Theme: Optimization Guide
- NewspaperHow to setup Twitch for Social Counter
- NewspaperModal Popup
- NewspaperFlex Block Settings Guide
- NewspaperAutoptimize Plugin – install and configuration
- NewspaperAdding Multiple Authors to Your Articles
- NewspaperDesign your Post Pages using the Cloud Library Templates
- NewspaperBig Grid Flex Settings
- NewsmagtagDiv Composer Tutorial
- TutorialsFrom WPBakery to tagDiv Composer
- NewspapertagDiv Composer Tutorial
- NewspaperTheme modules and blocks
- TutorialsDefault Block Settings Guide
- NewspaperThe Mobile Theme
- NewspaperCompare theme files – Winmerge tutorial
- NewsmagBlock settings tutorial
- NewsmagLogo & Favicon
- NewsmagFooter templates
Hi,
Maybe something like this – https://www.screencast.com/t/PKq1GBzJmpV8
Enter the code in Theme panel->Advanced CSS in the desktop section, so it will not affect other devices (this may not look well on smaller devices). You can make modifications to the value in the code if needed.
.td-header-style-8 .td-header-sp-logo {
top: 40px;
}
Thanks
You could try this solution to center the titles on modules
– https://www.screencast.com/t/byhz8pVjpl
.td_module_wrap .item-details {
display: flex;
align-items: center;
justify-content: center;
}
Enter the code in Theme panel->Custom CSS and see if it works properly.
I add this too:
# BEGIN Expire headers
<ifModule mod_expires.c>
ExpiresActive On
ExpiresDefault "access plus 5 seconds"
ExpiresByType image/x-icon "access plus 604800 seconds"
ExpiresByType image/jpeg "access plus 604800 seconds"
ExpiresByType image/png "access plus 604800 seconds"
ExpiresByType image/gif "access plus 604800 seconds"
ExpiresByType application/x-shockwave-flash "access plus 604800 seconds"
ExpiresByType text/css "access plus 604800 seconds"
ExpiresByType text/javascript "access plus 604800 seconds"
ExpiresByType application/javascript "access plus 604800 seconds"
ExpiresByType application/x-javascript "access plus 604800 seconds"
#ExpiresByType text/html "access plus 600 seconds"
#ExpiresByType application/xhtml+xml "access plus 600 seconds"
</ifModule>
# END Expire headers
As I understand it, the difference between W3 Total Cache and WP Super Cache is that it is a specially cached page cache, while the W3 Total Cache also controls the cache in the browser. Am I right?
-
This reply was modified 8 years by
alecaus.
Hello,
I installed WP Super Cache because I recommended it to be more compatible with the theme.
However, I saw that in testing my site was not enabled with the GZIP compression option.
So I thought it was a bug in the plugin, and I installed W3 Total Cache, which allowed for GZIP compression.
However, when I went to see the status of the theme, it said that the speed accelerator was disabled because the “W3 Total Cache” was enabled.
I did the following: Disabled W3 Total Cache and enabled WP Super Cache.
To solve the problem of Gzip compression, I added this code that you recommended in the ‘.htaccess’ file of my site:
<IfModule mod_deflate.c>
<filesMatch "\.(js|css|html|php)$">
SetOutputFilter DEFLATE
</filesMatch>
</IfModule>
I did it right? Why does Super Cache not work to compress the site (GZIP compression) and does W3 Total Cache work? Is there anything else I should add in HTACESS to complete this work?
Why did I realize that when I activated W3 Total Cache, it added dozens of lines in the ‘.htacess’ file, while Super Cache did not add any.
Hi hasstacc,
I changed the width in css, see this screencast https://www.screencast.com/t/Z7MVn7rMHr
Thanks! For some reason if I put it in the theme’s Custom CSS area or the child theme’s style.css it doesn’t work, but edit editor-style.css directly or create a child theme version with just the changes and all good.
Shaking with CSS for me is not enough.
In fact, the idea of removing the links from the tags would be to decrease the juice of the page being diluted to these tags.
So how do I remove the link or at least add the “rel = nofollow” attribute?
And thanks for the response, I’m grateful to take your time. 🙂
Hi,
1. That would be the color set in the demo, each demo contains custom design. The color is set in the demo stylesheet
– https://www.screencast.com/t/yFwSE0mRZwQ
Removing it from there will allow the theme accent color to display on the modules. Or change it in the code directly, that will work as well.
2. The demo also has some design for the Instagram element, in the same stylesheet here
– https://www.screencast.com/t/rXfMOmNtk5jd
Removing it will display the default state.
Most of the demos have such custom design, where there were no theme panel settings at the moment of creation, custom CSS was used. This stylesheet is imported when the demo is installed and will override theme code.
Thanks
Hello Fabrizio Azzali,
Do you are referring to the category siblings? If you want to hide them, you should use the following code and place it in Theme panel -> Custom CSS area.
The code is ->
.td-category-siblings{
display:none;
}
The result is here -> https://www.screencast.com/t/Ai9ju81A3HS
If is not what you mean, please provide more details so I will be able to provide a more accurate response.
Thanks for the message!
Hello,
I would like to add a border above the footer.
I would like it to look like the footer border on this website from your theme showcase–>https://singularityhub.com/
Exact part here–> https://ibb.co/eof8ib
I believe this can be done using an image but I prefer css. Can you provide me with the css to achieve this?
I would like to be able to choose the three colors.
Thanks!
Thanks Bogdan, the css worked for the reduction.
You can view the website at https://seemslegit.com.au/ and I would like to remove the now thinner bar of white space between the main menu/logo and big grid when you viewing on mobile devices if possible?
Hello,
I tested the code again and it works as expected. You are maybe not implementing it correctly. Please add it to your custom css box and make sure there are no errors in there. A big red X should hint an error.
Thank you!
Hi,
If you are referring to the tags in the post page
– https://www.screencast.com/t/9BaRW3o0
There could be a solution. It would also depend, if you want the actual links removed from the code, or simply not allow users to click on the tags. If you want to remove any interaction with the tags (including clicking) you could use something like this code.
Enter this code in Theme panel->Custom CSS
.td-post-source-tags {
pointer-events: none;
}
Thanks
Hi,
You could hide the number of followers with a code like in this topic
– https://forum.tagdiv.com/topic/we-dont-want-counter-numbers-on-social-counter-plugin-we-arent-that-famous/
Try the solution provided by Alin, enter the code in Theme panel->Custom CSS.
Thanks
Hello,
This happens because of the optimization made on your server. Css gets loaded last and the styles are pulled after the page loads. The only solution to this is either disable the css optimization whether you know about it or not, or change colors directly in style.css and replace the blue color directly, but you will need a bit of css skills for it in order to know what to look for as style.css is a big file.
Thank you!
Hello,
You can add this css code in your theme panel-> custom css box to remove the underline:
.sf-menu > li > a:after{
display:none;
}
Thank you!
Thanks Simion, this works.
But i would like to modify it further. Block 1 has two post sizes – one big one and the other ones are smaller.
I would like to change the category tag css for only the smaller ones.
Hi,
You could achieve something similar based on the gadgets demo and the screenshot you mention. This code is for block 9 placed in a 1/3 column
– https://www.screencast.com/t/wrMgwz1z
You can make modifications to it and style the block as you wish, change colors, margins padding etc. Then enter it in Theme panel->Custom CSS
This is the code used in the example
– https://pastebin.com/a2qTD7xH
Thanks
Hi,
Seems that one of the inputs (the username input) is not displayed, only the password field appears. After inspecting the issue I see that the inputs and labels used by the theme are replaced by a different CSS (maybe by a plugin or custom code) One of the inputs is set to invisible and also the design is affected.
I could give you a code to fix this
– https://www.screencast.com/t/mX5z0uVbQQNm
– https://www.screencast.com/t/oGMycGbzi
Enter the code in Theme panel->Custom CSS
#td-mobile-nav .td-register-section .td-login-input,
.mfp-content .td-login-input:invalid {
display: inline-block;
}
.td-login-inputs label {
padding: 0!important;
}
Thanks
Hello,
1) Please use this css code in your theme panel custom code section under custom css:
.td-main-page-wrap{
padding-top:10px;
}
2) Please provide a link to your site so we can see where this space comes from.
Thanks.
Thanks! I’m probably doing something wrong here but it looks like a case of merely setting (in CSS) ‘.mce-content-body blockquote p’ font-size to whatever I want (including all the media widths). I’ve had this issue with other CSS in the past – the change doesn’t seem to take hold for some reason. It doesn’t appear to be caching because I can view the underlying css file in a web browser and it’s what I intend it to be. I’ve tried ‘!important’ with no luck. Am I missing something?
Cheers!
Hello,
It is done with css but it needs to be targeted on the specific menu item otherwise it will affect all of the menu at once. It is a custom implementation made for the demo presentation. You can do it by targeting a specific menu by it’s unique menu item id here is an example for my menu: https://www.screencast.com/t/S1m1YrpW
.menu-item-230 .sub-menu{
padding: 14px;
-moz-column-count: 2;
-webkit-column-count: 2;
column-count: 2;
}
The menu item number needs to be changed to your own unique menu item number.
Thanks.
Hi:
Woocommerce shop page issue,The following aspects:
1.WooCommerce settings shop pages can not be edited using the tagDIV Editor Editor,Although the page is empty.
https://prnt.sc/i3tdxw
2.I need to show the product as 3 columns,I need to change the font size and color of CSS here.
https://prnt.sc/i3tgn9
3.I need to add other elements of the Newspaper theme to the shop page. E.g: ads, blocks, slides, etc.
Hello,
1. Please contact us via email at contact@tagdiv.com and provide a link to oyur site and wp-admin so we can login and investigate.
2. Use this css in the theme panel-> custom css box:
.home .td-module-date, .home .td-post-author-name span{
display:none;
}
Thank you!
Hey!
I have changed every language that I can change via the theme panel, but some things don’t change. I would like to change the name of the following topics:
– “Windows Phone”
– “Accessories”
– “What’s New
Go to my webpage http://www.blockchainbloggen.se and scroll down abit and you will see Whats new in black color, Windows phone in blue and Accessories in red color. I have tried to find these files in the htlm/css files to just change the names, because for example I would like to have “What’s new” in swedish, and “Windows Phone” and “Accessories” changed to something else because these topics doesn’t make sense to my web page.
Can you please help me?