- 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 Christoph,
You can achieve this with our theme too, you just need to set with tagDiv Composer the mobile theme plugin and use a custom css, try a custom css like this one -> https://i.imgur.com/XljbPoc.jpg
.td-menu-mob-open-menu #td-mobile-nav,
.td-menu-mob-open-menu .td-menu-background {
width:22%;
}
.td-menu-mob-open-menu #td-outer-wrap{
-webkit-transform: none;
transition: none;
box-shadow: 0 0 46px #000000;
position: unset;
}
The code needs to be set in the theme panel> custom code> customs css.
Hope thai will help you!
Thank you!
Hi,
Another way is to use a custom css, you can try this one:
.td_module_flex_1 .td-image-container, .td_module_flex_3 .td-image-container, .td_module_flex_4 .td-image-container, .td_module_flex_5 .td-image-container, .td_module_flex_1 .td-thumb-css, .td_module_flex_3 .td-thumb-css, .td_module_flex_4 .td-thumb-css, .td_module_flex_5 .td-thumb-css {
width: calc(100% + 40px);
margin-left: -20px;
margin-right: -20px;
}
Set the code in theme panel custom code> advance css> phones.
Unfortunately I do not quiet understand what do you want to achieve using the block 5 widget, please provide some more details and some screenshots if is possible.
Thank you!
Hi,
Unfortunately for the moment our theme has only these options for sticky elements and this option is making the entire sidebar to be sticky.
One solution will be to use a custom css that will display an element in a fixed position (add a class on this element and set on it a css https://www.w3schools.com/css/css_positioning.asp)
Thank you!
Hello !
Please provide an example of what you’re looking to achieve. You provided only some simple css tags that do not relate.
Thank you !
Hi,
This site is not made with our theme, also when it is set on the left is not full loaded, this is normal look like this -> https://i.imgur.com/5ksuLKT.jpg
Now you can achieve this only if you are using a background image to have a boxed layout -> https://i.imgur.com/DJwFWw4.png -> https://i.imgur.com/DV6dABg.png ->
https://i.imgur.com/y1SIcEe.jpg
.td-header-desktop-wrap .tdc_zone, .td-boxed-layout .td-container-wrap.td-main-page-wrap, .td-footer-wrap .tdc_zone {
position: relative;
left: -80px;
}
This custom css need to be set in theme panel> custom code> custom css.
Hope this will help you!
here the screenshot.
When I try to change color I see only an input text with no [OK] button so I can’t understand if this is how it should works or not. The background color doesn’t change even if I click on RETURN key or TAB key.
there is another place where this css is overwritten or there is something not working on my interface???
Thank you!
-
This reply was modified 6 years by
fabrizio_arnone. Reason: I'm not able to display correctly the img
Hi JoAnn,
For me installing the PRO demo added the Shadow on website, but if you want you can add this shadow with custom css like this -> https://i.imgur.com/8dArdA7.jpg
.td-header-desktop-wrap .tdc_zone {
box-shadow: 0 -13px 10px 3px rgba(0, 0, 0, 0.12);
}
.td-main-content-wrap{
box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.12);
}
.td-footer-wrap .tdc_zone {
box-shadow: 0 13px 10px 3px rgba(0, 0, 0, 0.12);
}
This code need to be set in theme panel> custom code> custom css.
Usually this css is set custom in header like this -> https://i.imgur.com/czDx1pI.jpg
Thank you!
I set the footer to style11, the footer should be with black color, but there are some CSS in the page
because the background-color: transparent;, my footer is transparent, how to remove these codes from my page?
<!– Header style compiled by theme –>
<style>
.td-container-wrap,
.post,
.tagdiv-type .td_quote_box {
background-color: transparent;
}
.td-menu-background:before,
.td-search-background:before {
background: rgba(0,0,0,0.5);
background: -moz-linear-gradient(top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.6) 100%);
background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0,0,0,0.5)), color-stop(100%, rgba(0,0,0,0.6)));
background: -webkit-linear-gradient(top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.6) 100%);
background: -o-linear-gradient(top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.6) 100%);
background: -ms-linear-gradient(top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.6) 100%);
background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.6) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=’rgba(0,0,0,0.5)’, endColorstr=’rgba(0,0,0,0.6)’, GradientType=0 );
}
.td-container-wrap,
.post,
.tagdiv-type .td_quote_box {
background-color: transparent;
}
.td-menu-background:before,
.td-search-background:before {
background: rgba(0,0,0,0.5);
background: -moz-linear-gradient(top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.6) 100%);
background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0,0,0,0.5)), color-stop(100%, rgba(0,0,0,0.6)));
background: -webkit-linear-gradient(top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.6) 100%);
background: -o-linear-gradient(top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.6) 100%);
background: -ms-linear-gradient(top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.6) 100%);
background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.6) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=’rgba(0,0,0,0.5)’, endColorstr=’rgba(0,0,0,0.6)’, GradientType=0 );
}
</style>
<!– Button style compiled by theme –>
Hi,
Unfortunately there is no option for that, but you can use a custom css like this one -> https://i.imgur.com/1rqgEdK.png
.tdm_block_text_image .td-block-span6 {
width: 50%!important;
}
This code need to be set in theme panel> custom code> advance css> phones.
Thank you!
My TD Composer for the Homepage is getting an ERROR but it worked before I made a change to the footer.
It is not related to PHP version or WP-memory. I updated the PHP version to 7.4. WP Memory Limit is updated to 256 MB but I am still getting the ERROR.
Please listen to my issue…
I CANNOT EDIT THE HOMEPAGE IN TD COMPOSER. IT SAYS THERE IS AN ERROR. This is not caused by PHP or WP Memory Limit. It happened when I was editing the footer 2 days ago. I saved and it errored when I refreshed.
Errors at columns: 3(models) : 4(dom). The model does not match the content Current state has involved an issue.
PLEASE CHECK FOOTER AND FIX THE COLUMN ERROR. THIS IS A CRITICAL ERROR WITH YOUR THEME (IN THE CSS).
I think the error is caused by the middle column in footer. Please just delete the Raw HTML element in the middle column in the footer row.
Hi,
Usually you can use the general option for accent color from theme panel -> https://i.imgur.com/QGEJBms.png but in this (on Gossip demo) the colors is set individual per each element -> https://i.imgur.com/857NLmr.png therefore you need to make these changes manually or you can use a stronger custom css like this one ->https://i.imgur.com/R5zFdj7.png
body .td-theme-wrap .td_module_wrap:hover .td-module-title a {
color: blue!important;
}
This code need to be set in theme panel> custom code> custom css.
Thank you!
Hi,
You can achieve this using a custom css like this one:
.td-scroll-up {
display: block;
}
This code need to be set in theme panel> custom code> advance css > phones.
Thank you!
Hello, I’m using the Newspaper Magazine Pro demo on my site. The beautiful page container shadow is missing. I’ve tried adding custom CSS, to no avail. Can you please help me with the proper CSS? Thanks.
My site – https://joannchateau.com/
Magazine Pro demo – https://demo.tagdiv.com/newspaper_magazine_pro/
I think it’s not meant to display on mobile devices (all themes).
https://demo.tagdiv.com/newspaper_baby_pro/wp-content/plugins/td-composer/legacy/Newspaper/assets/css/td_legacy_main.css
@media (max-width: 767px)
.td-scroll-up {
display: none;
}
you have to override it in a custom css to make it appear in mobile
@media (max-width: 767px)
.td-scroll-up {
display: block;
}
The styling issue I raised (using a Medicine Pro Demo) is because of this file: plugins/js_composer/assets/css/js_composer.min.css
Is it meant to show in the frontend? It was not present in https://demo.tagdiv.com/newspaper_medicine_pro/
Will we get an update for this?
Please close/mark as solve these tickets, the issue is temporary fixed by commenting the css file mentioned above:
https://forum.tagdiv.com/topic/td-composer-issue-6/
https://forum.tagdiv.com/topic/header-in-inner-pages/
https://forum.tagdiv.com/topic/medicine-pro-mobile-view/
Not related to theme:
https://forum.tagdiv.com/topic/staging-site/
The only issue I have is the hero image
https://forum.tagdiv.com/topic/demo-theme-hero-image/
Hi,
For me the ads on mobile are look good on full width, but if you want to set padding/margin use tagDiv Composer and add an ad box and set some padding or margin in css tab -> https://i.imgur.com/hujHLBJ.png
Thank you!
Hello !
You can use this css code: .td-scroll-up{
Display:none;
}
The code must be inserted here: https://www.screencast.com/t/J1Nxw5s5
Thank you !
Hi,
If you want to have some more control over sidebars from your website you can use tagDiv Composer and cloud templates, or example on a single post template -> https://i.imgur.com/uxMBScI.jpg you can click on the column and set in css tab 1-2px for border left -> https://i.imgur.com/jGlxJR6.png
Conform envato roles you can extend the support only for 6 months and you can do it for the current licence using the guide from here, or you can buy another licence and add it to the current account using the guide from here.
Thank you for your understanding!
Hi Quique_Boliches,
If you want to change the post content width you must use a single post template from tagDiv Cloud Library, this can be edited with tagDiv Composer -> https://i.imgur.com/SI6oA9I.png also you can try a custom css like this one -> https://i.imgur.com/hl2uoyC.png
.single .tdb_single_content p {
max-width: 95%!important;
}
This will increase the max post width. The code need to be set in theme panel> custom code> custom css.
Hope this will help you!
Hi gumball44, the thing is that for me is loading only the amp version on mobile, I’m somehow redirect to the amp version.
Please remove the above css and try this one
.td-post-featured-image amp-img {
margin: 0 0 -8px 0;
}
Hope this will work better.
Let me know the results!
How can I modify blocks which support Excerpts to use the first paragraph rather than a set number of words? Happy to plug in some CSS if needed.
Hello !
The caption seems to be an error. Please provide a link to your website in order to have a look.
If you want to have more control over the blockquote, you must use a custom css, for example if you want to change the color -> https://i.imgur.com/NeWMJQ8.png
.td-post-content blockquote p{
color: red;
}
or if you want to change the Blockquote align -> https://i.imgur.com/DgMqKwW.png
.td-post-content blockquote {
text-align: left;
}
This code need to be set in them panel> custom code> custom css.
Hope this will help you!
Hi rtws, as I said before that demo has a class set in theme pane, when you install that demo you’ll have that extra class with css to, therefore when the demo is uninstalled/change the class can code will be removed.
Please provide me a link to your website and I will provide a custom css that will work on your current install.
Thank you!
Hope it’s ok to post, I searched the forum to no avail.
Within post content I see in dev tools that each of the contents paragraphs has <p style=”max-width:600px;> which I would like to see changed to max-width:92%, but no matter where I go and try it does not seem to want to do this, in the preview it looks fine in the composer when adding custom css “p {max-width:93%!important;}”, yet hit save, clear all cache and check on front end, no changes are to be seen and the text has still only got <p style=”max-width:600px;>, boss not happy says it looks very ugly, so hope there’s an easy fix, going to use different template not really an option.
Thanks in advance
template screenshot original
https://freeimage.host/i/dXnXKx
screenshot of desired result
https://freeimage.host/i/dXnVPj