- 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,
Please try this custom css -> https://www.screencast.com/t/OEePLELu you need to set the code in Theme panel> Custom code> Advance code> Phone -> https://www.screencast.com/t/OEePLELu
#td-top-search{
display: none;
}
Thank you!
Hi,
As a quick solution, you can try using the code below and place it in Theme panel -> Custom CSS area.
.sub-menu{
display:inline;
}
.td-element-after{
display:none;
}
Thank you!
Hi,
Most of the theme files were moved into the tagdiv composer plugin as per the requirements of envato: https://help.author.envato.com/hc/en-us/articles/360000472383-WordPress-Theme-Requirements.
We wrote an article on the subject here: https://tagdiv.com/updating-the-core-of-tagdiv-themes/
Moving forward with such requirements, a child theme will only work with functions.php, and style.css as there are very few files left in the main theme as envato requires all functionality to be added through plugins.
What you can do is to make pages using flex blocks in this way you can achieve what you make in child theme (
and is no more need to use child theme ), because flex blocks have more options and customization.
Sorry for the inconvenience and thank you for understanding.
Hi,
So the general background image you set in the theme panel is loading only in Firefox? I checked the website and I see the problem. For me it happens in both Chrome and Firefox, seems that all post pages don’t display the background image. Pages and category pages display it.
Do you maybe use optimization or compression plugins? If possible try and disable them temporarily, check if the problem is solved.
A quick fix would be to apply the image on the posts with some CSS, for example
– http://prntscr.com/nipo4x
body.single {
background-image: url("https://www.survival-sandbox.de/wp-content/uploads/2017/11/fwOGWBs.jpg");
background-repeat:no-repeat;
background-attachment: fixed;
}
Thanks
Hi,
That is coming from the demo stylesheet, the magazine demo that is installed. Without that customization it would be like this – http://prntscr.com/nipek7
One way of removing this design, is with CSS – http://prntscr.com/nipfbo
Enter this code in Theme panel->Custom code->Custom CSS
.td-magazine.td-boxed-layout .td-container-wrap {
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
Let me know if you need more help, or you have further questions.
Thanks
Hi,
The theme doesn’t have a stylesheet for the printed version. However you could add some CSS either in the main theme or child theme stylesheet. So for example to remove the footer Instagram (if this is what you are referring to) from the printed version the code would be like so
@media print {
/* Printer specific styles go here */
.td-footer-instagram-container {
display: none;
}
}
Add it in the main or child theme stylesheet. You can add more CSS to it, if needed.
Thanks
Hi,
Please notice that the mobile theme has a default layout which cannot be changed through the plugin options, sorry! If you want to hide the footer of your mobile theme, you need to use a bit of CSS code for that.
Thank you!
I am confused about the new Envato-compliant version of Newspaper 9.7.2 and the use of child themes.
I have modified module 8 and the corresponding CSS in the version prior to you releasing this update. Where does my modified module now sit in terms if a child theme, as the related block/module includes has moved to a “legacy” folder within wp-content>plugins etc.
This seems to me that I cannot create a child and my customised block will be overwritten each time there is an update.
Is this the case? If so, how do you recommend getting around this?
Thanks
Best
Gary
Hi,
Please provide me a link were I can inspect this problem, in this way I will be able to provide you a custom css.
Thank you!
Hi,
If you want to change this style, notice that you need to use a bit of CSS code for that, because the theme does not have any such an option for this. Use the Inspector browser to create your own custom CSS code, according to the next useful guide from here -> https://tagdiv.com/how-to-create-custom-code-in-newspaper-theme/
Thank you!
Hi,
Please check the settings from Theme panel >Theme fonts -> https://www.screencast.com/t/bMfhKqtjp -> https://www.screencast.com/t/hqf8eXmum
Or you can do this using custom css -> https://tagdiv.com/how-to-create-custom-code-in-newspaper-theme/ if you need help with this, let me know!
Thank you!
Hi,
If you are using the child theme for your customization and you make some changes in other file then style.css or functions.php then in Newspaper v9.7 these will not longer work -> https://tagdiv.com/updating-the-core-of-tagdiv-themes/
If your customization are made only in theme panel, those will not be lost.
-> https://tagdiv.com/update-newspaper-theme/
Thank you!
Hi,
I don’t quite understand what CSS you are referring to, in relation to the footer. Some more details about what exactly you are looking for, or what you are trying to do, would be most helpful. Please let me know.
Thanks
Hi Calin,
Thanks very much for the reply. The code works for the text buttons but the Visual Editor buttons seem to be adopting a style from elsewhere.
I used BBP Style Pack to turn on the visual editor in BBPress – which is usual but the buttons are taking style from somewhere else and the code you kindly supplied above only affects the text editor buttons.
Any idea where I can set them or what the css might be?
Many thanks.
Seems not to work indeed, a stronger code is needed
.td-big-grid-slide.td_block_wrap {
perspective:unset!important;
}
I have tested it on my end, seems to work now. You could give it a try and then check the grid again.
I believe that the “/9” is meant for older versions of IE
– https://stackoverflow.com/questions/8004765/css-9-in-width-property
At the moment I can’t say exactly what and how will change in future theme updates, regarding the legacy functionality. We will improve on the current state or make further modifications. Sorry for any inconvenience.
Let me know if you have more questions.
Hi,
There is indeed a gradient there, it’s purpose is to make the post meta more visible over the featured image. For example
With gradient – http://prntscr.com/nimb5m
Without gradient – http://prntscr.com/nimbae the text is harder to read in this case.
However if you want to remove it, this code will do that, enter it in the custom CSS section of the theme panel
.td-image-gradient-style7:after {
display: none;
}
The full image won’t be displayed, the container has a predefined height, one of the reasons would be to achieve the same results regardless of image
– http://prntscr.com/nimd4x
You could try something like this to make he image bigger if the images are actually bigger and allow it – https://forum.tagdiv.com/topic/changing-featured-image-size/
Let me know if you have more questions.
Thanks
Hi,
Most of the theme files were moved into the tagDiv Composer plugin as per the requirements of Envato: https://help.author.envato.com/hc/en-us/articles/360000472383-WordPress-Theme-Requirements. We wrote an article on the subject here: https://tagdiv.com/updating-the-core-of-tagdiv-themes/ Moving forward with such requirements, a child theme will only work with functions.php, and style.css, as there are very few files left in the main theme as Envato, requires all functionality to be added through plugins. I that case, all of your additional customizations will be lost, sorry! Before making any update, we recommend to make a full backup to your database and then, all of your additional customizations should have to be re-added.
Regarding on TD Composer, please notice this the main required plugin of our theme and it has to be enabled if you want to have the all theme functionality. If you do not like it, you can also install the WP Backey and keep both to be enabled.
Sorry for the inconvenience and thank you for understanding.
Thank you!
Hi,
The banner comes with the default demo and if you want to get rid out you need to use a bit of CSS code for that to hide it. Also, the color if it comes from Theme accent color, from Theme panel, from here -> https://www.screencast.com/t/SEQC0I01Jkxm
Regarding on Header style, please check the documentation from here -> https://forum.tagdiv.com/newsmag-header-styles/
Thank you!
Hello !
Unfortunately you can’t modify the fonts in mobile theme. You can try by adding a custom css to your mobile theme from here: https://www.screencast.com/t/VEI2KQla2GhO
Thank you !
Hi,
It seems to be a problem with this header style. I have added to our list of fixes and we hope to fix it as soon as possible. Until we will fix it, you have to use the code below and place it in Theme panel -> Custom CSS area.
.tdm-header-style-2 .td-header-menu-wrap-full {
height: 130px!important;
}
.tdm-header-style-2 .menu-main-header-menu-container,
.tdm-header-style-2 .header-search-wrap,
.tdm-header-style-2 #td-header-menu{
margin-top: 60px;
}
.tdm-header-style-2 .td-logo-in-menu {
width: 180px!important;
left: 0!important;
right: 0!important;
margin: 0 auto;
}
The result is here -> https://www.screencast.com/t/ZP3ZoEo9eRL
Another alternative, in this case, should be to use the Header Builder manager and create your own header style, according to our documentation from here -> https://tagdiv.com/newspaper-theme-customize-the-header-manager/
Thank you!
Hi,
Most widgets have a setting to color the title – http://prntscr.com/nili7r depends on the widgets you used in the sidebar. Try the general color settings for the titles, should work for widget titles as well – http://prntscr.com/nilj21
Ultimately it could be done with some CSS if needed. Post a link to where I can see the elements you are referring to and mention how you want them to be. I will take a look.
Thanks
Hi,
You can add a custom css in Theme panel>Custom code>Advance > Phones ->
.td-container {
width: 100%;
padding-left: 15px;
padding-right: 15px;
}
This will set a padding to all content.
Thank you!
Hi,
You can reduce the padding in two ways, one is to edit the page with tagDiv Composer -> https://www.screencast.com/t/GdJFyVLIBHI or you can use a custom css -> https://www.screencast.com/t/ulDjUnO64
.td_block_trending_now{
margin-top: -80px;
margin-bottom: 15px;
}
Is possible to be need to change the values for margins, also the code need to be set in Theme panel>Custom code>Custom css
Thank you!
Hello !
In order to adjust the To Top’s button position higher you need to add this custom css code to your Custom Code tab located in Theme panel: https://www.screencast.com/t/JrXWK26CfzpN
.td-scroll-up {
bottom: 50px;
}
Thank you !
-
This reply was modified 7 years by
Vlad S.
Hello !
In order to remove the “more articles” section under the footer you will need to ad this css code to your custom code tab in theme panel like here:
https://www.screencast.com/t/3JhVYiDOi
Thank you !