- 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
Still not correct as I just noticed that this css also stripped the background from the footer on this page. Still looking for a way to make the header transparent, leaving the footer alone. Thanks!
I actually found the right css code.
.td-container-wrap {
background-color:transparent!important;
}
However, when inputting this code into CSS Live of the selected page, it will not save. As soon as the page is refreshed, the code is gone.
Thanks.
Hi,
Sorry about the misunderstanding, I believe this is what you want
– https://www.screencast.com/t/IKP0ieY60
Enter this code in Theme panel->Custom CSS section
.td-header-style-5 .td-header-menu-wrap {
-webkit-box-shadow: 0 2px 6px 0 rgba(0,0,0,0.09);
-moz-box-shadow: 0 2px 6px 0 rgba(0,0,0,0.09);
box-shadow: 0 2px 6px 0 rgba(0,0,0,0.09);
}
You can make modifications to the code if you want to, this is a guide about using box-shadow
– https://css-tricks.com/almanac/properties/b/box-shadow/
Thanks
Hello,
Please read this topic: https://forum.tagdiv.com/topic/css-overriding-gleam-io-styling/
Thank you!
Hi,
I’m using Newspaper 8.6, Header Style 3 – Multipurpose.
I have set Theme Colors > Main Menu Background to a solid color, but I want to create a transparent header on one page only using CSS.
So far I have tried the code below in the Live CSS – it changes the color of the correct area, but when setting the alpha to 0.0, it allows the color from the theme panel to show through – it does not make the header transparent to the background image. I’m using the template Pagebuilder + Overlay Menu.
.td-header-menu-wrap {
background-color: rgba(0, 0, 0, 0.0);
}
Can you please assist with the CSS override I need?
Thanks!
Hello,
The method that comes to mind is using the in_category function of wordpress: https://developer.wordpress.org/reference/functions/in_category/
You will have to modify the get_title function like so for posts:
if (in_category('Gadgets')){
$buffy .= '<h1 class="entry-title, customicon">';}
else{
$buffy .= '<h1 class="entry-title">';}
and replace this code: https://www.screencast.com/t/ikYJa8coe
And then you can use the new css class on your post title to add an icon to it using font awesome maybe.
For pages, the code is found here: https://www.screencast.com/t/quFJlOhp9
Thank you!
Hi,
Looking at that example, there are similar modules but not quite the same. Such as these maybe
– https://demo.tagdiv.com/newspaper/block-7/
– https://demo.tagdiv.com/newspaper/block-8/
Those modules do not display excerpts, only title and thumbnail. Only thorough code modification they would display an excerpt, and only through additional CSS design they will look like the ones you mention.
All the modules are predefined in terms of how they look and what information they display. Try using one of the many blocks and grids available, surely there are some you can use by default
– https://demo.tagdiv.com/newspaper/block-1/
Thanks
Hello,
Please add this code in your theme panel-> custom css section:
.home .td_block_social_counter{
display:none;
}
.home.paged .td_block_social_counter{
display:block;
}
Thank you!
Hello,
I have a problem with the tablet view: https://snag.gy/bgclYU.jpg
I tried to use css media query and add margin to the divs:
@media only screen and (min-width:321px) and (max-width:768px){#td_uid_3_5a78f16f1d965 > div:nth-child(1) > div:nth-child(2) > div {margin-top:130px!important;}}
@media only screen and (min-width:321px) and (max-width:768px){#td_uid_3_5a79a248703a1 > div:nth-child(1) > div:nth-child(2) > div {margin-top:130px!important;}}
@media only screen and (min-width:321px) and (max-width:768px){#td_uid_3_5a79a248703a1 > div:nth-child(2) > div:nth-child(2) > div{margin-top:150px!important;}}
@media only screen and (min-width:321px) and (max-width:768px){#td_uid_3_5a79a248703a1 > div:nth-child(3) > div:nth-child(2) > div > h3{margin-top:140px!important;}}
@media only screen and (min-width:321px) and (max-width:768px){#td_uid_4_5a79a24877d7a > div:nth-child(1) > div:nth-child(2) > div > h3{margin-top:170px!important;}}
@media only screen and (min-width:321px) and (max-width:768px){#td_uid_4_5a79a24877d7a > div:nth-child(2) > div:nth-child(2) > div > h3{margin-top:170px!important;}}
@media only screen and (min-width:321px) and (max-width:768px){#td_uid_4_5a79a24877d7a > div:nth-child(2) > div:nth-child(2) > div > h3{margin-top:170px!important;}}
@media only screen and (min-width:321px) and (max-width:768px){#td_uid_4_5a79a24877d7a > div:nth-child(3) > div:nth-child(2) > div > h3{margin-top:170px!important;}}
It worked the first time, but after i saved the custom css, it crashed again.
Could you please help me?
Site: https://rendeljkinait.hu
Thanks
Hello courthouseWGR,
Unfortunately, the theme does not have any such an option that allows you to do this, sorry! You should do it yourself via custom CSS code because we cannot provide additional customizations, sorry! If you are not aware of the steps which are needed to take in this case, please consider hiring a freelancer/developer to help you in this case!
Thanks for your understanding!
Hello modocmag,
if you want to have only one menu divider, please try using the code below and place it in Theme panel -> Custom CSS area.
The code is ->
.menu-item:before {
content: '//'!important;
}
The result is here -> https://www.screencast.com/t/V0D2naNyX
Hope this helps!
Thanks for the message!
Hi,
I could give you a code for that, the result would be like this
– https://www.screencast.com/t/oqi6WX0hpX
This code can be modified if you wish different results, let us know. It can be entered in Theme panel->Custom CSS section.
.td_block_image_box .td-custom-title {
top:auto;
bottom:0;
transform: none;
-webkit-transform: none;
-moz-transform: none;
-ms-transform: none;
-o-transform: none;
}
This one will change the background color and text color, for style 2 box
– https://www.screencast.com/t/jcgZzdJIba1
.td_block_image_box.td-image-box-style-2 .entry-title a {
background-color: yellow;
color: red;
}
Or you could try other elements that can display images
– https://www.screencast.com/t/igLH59jS
For example the title over image element has options to position the text at the bottom
– https://www.screencast.com/t/o5LA8Xh4
Thanks
Hello,
Please check the style.css core file because there was created this button, like this -> https://www.screencast.com/t/Mk0pCiWyO
Hope this helps!
Thanks for the message!
Hi.
My website’s url is sciencegasm.com. The upper part of the homepage is custom designed but the lower part is page + loop + homepage sidebar (different from the default sidebar). This part of the page shows navigation that if clicked leads to page-2, etc. The homepage sidebar shows at page-2 as well. Here is what I want to do:
I want to hide a specific widget (social icons) from the homepage sidebar but only in the homepage, not other pages (page-2, etc.). I was trying various css codes but couldn’t manage to solve it.
Could you help me please?
The scroll to top issue might be caused by the same plugin. Unfortunately I could not make any plugin recommendations in the matter. You could try other plugins with this capability, or configurations, and make tests to see if they cause issues with the theme functionality.
The scroll on mobile could be removed if required with a code like this, entered in Theme panel->Mobile theme->Custom CSS
.td-scroll-up {
display: none;
}
Thanks
Hello MrKeerthan,
You should try using the code below and place it in Theme panel -> Custom CSS area. The code is below.
.td_smart_list_2 .td-item{
border-bottom: 1px solid #ededed;
}
The result is here -> https://www.screencast.com/t/gPokeVUwETa2
Hope this helps!
Thanks for the message!
Hi,
I believe you followed this topic as well
– https://forum.tagdiv.com/topic/featured-image-show-caption/
I have entered the code provided there like this, in single template 6
– https://www.screencast.com/t/0fveK0lY13
This will position the caption directly in the locations you want
– https://www.screencast.com/t/iBwHGEgVJI
You can use the CSS code from the same topic to style the caption, or create your own styling.
Thanks
I have tested this and the solution works. Enter the code that is provided in that topic here in this file
– https://www.screencast.com/t/PXvipAgOl
Then the views have to be called in each module file that you are using> example for module 1
– https://www.screencast.com/t/8UMPo2c8n
<?php echo $this->get_views();?>
The views will show in the module – https://www.screencast.com/t/CeuSAQ4J
Now apply some styling, the one provided in that topic will make the views look like this
– https://www.screencast.com/t/qHYMP4GLP
But you can style them further with CSS code if needed
– https://forum.tagdiv.com/create-custom-code-using-the-browsers-inspector/
Hello,
How can I change the design of h tags on the article pages only?
I tried the CSS below
.entry-content h2{ }
but it did not work…
Please help…
Hi there,
My website is http://www.ourculturemag.com I am trying to add a menu divider which goes in between an item in CSS, however, I am having a bit of trouble.
This is what I am trying to achieve http://x-v.it/mshpl2/1
Thank you!
Question: For the Image Box element in TD Composer, what CSS would I add and where would it add it to move the title box to the bottom of the image? And also change the background color of the title box?
Or, is there a different element I could use that would have the title at the bottom (or top, I suppose)?
If there is not a way, I suppose I can edit each image individually and add the title myself at the bottom. But, thought I would ask first. Thanks!
Sorry to reply to this topic, but for the moment I cannot seem to find the location to start a new topic.
Question: For the Image Box element in TD Composer, what CSS would I add and where would it add it to move the title box to the bottom of the image?
Or, is there a different element I could use that would have the title at the bottom (or top, I suppose)?
If there is not a way, I suppose I can edit each image individually and add the title myself at the bottom. But, thought I would ask first. Thanks!
I had the same problem with the positioning of both the social icons and the search box from Version 8.5 and I used some CSS to position the icons properly in my theme coz the solutions in this forum did not work. Maybe you can try some CSS.
Hello everyone,
First off I’d like to say I love the theme and I’ve been using it religiously for almost a week now to build my website http://chennaiesports.org
The TagDiv Composer is amazing and I’ve had a lot of success with it, but there are certain places where I just hit a complete wall and I’m lost.
Here’s one such issue.
I’ve been using TagDiv to show my Twitch and Discord images on my homepage using the TD Composer’s Client button (I know it’s strange, but it’s the only one where I found I didn’t need to mess with any additional CSS because I don’t know any.) While this has worked wonders as you can see -> http://www.screencast.com/t/tGdvtBzXemRp this option is only available on the TD Composer.
I’ve been trying to replicate this sidebar for posts but I cannot achieve the same look. Instead I land up with this -> http://www.screencast.com/t/r4mYFv8a7
This might be a very silly reason, but I’m legitimately all out of ideas for the same. Please help!
Also, alternatively, if there was a way to import Twitch and Discord icons on the Tagdiv composer’s Social Counter option which is available under widgets too, nothing would make me happier.
PS : I do not know any CSS whatsoever. 🙁
Thank you for your assistance.
Hi,
If you use the mobile theme this has a scroll to top button. If the plugin is not active, the scroll icon will not show. It could be made to appear with this code if necessary
– https://www.screencast.com/t/FRA3s9jKrrU
Enter it in Theme panel->Custom CSS section
@media (max-width: 767px) {
.td-scroll-up {
display: block;
}}
Thanks