- 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 there
I need to change the width of the whole page to a maxmimum of 1002px for the reason of ad-implementation. The sidebar-width should be 300px.
Could you help out by defining the CSS?
Thanks in advance and regards
six
Hi,
Please try this custom css in Theme Panel > Custom Css to hide author on homepage:
.home .td-module-meta-info .td-post-author-name {
display: none !important;
}
Thanks!
Hi,
Module 14 was used to create block 13, but it is also used on block 20. A solution is to set excerpt length to 1 in Theme Panel >Excerpt section – http://screencast.com/t/6EcGizLx – http://screencast.com/t/W32hBdcq but this will be applied also on block 20.
You can hide excerpt only for block 13 via custom css in Theme Panel > Custom Css – http://screencast.com/t/jl03pSLICX
.td_block_13 .td-excerpt {
display: none;
}
Thanks!
Hi,
The theme doesn’t have this option for slider and you need custom modifications to achieve this, unfortunately we cannot provide any type of custom work at this time as we work hard on development, fixes and support, sorry!
I suggest to hire a freelancer to do this for you if you don’t know how to do it, here you can find the slider navigation code – http://screencast.com/t/YRApxCdn and you will need also to use custom css.
Thanks!
Hi,
Please provide more details as I’m not sure what you mean. If you add a background for your header you can customize it using css code like you wish as the theme doesn’t have an option so for the correct size you will have to test it.
Thanks!
Hi,
Thanks for suggestion, we will improve our documentation. You can add these sizes for button – http://screencast.com/t/d3fGbqIJI – mini, small, large, normal
You can customize all your large buttons using custom css in Theme Panel > Custom Css, for example – http://screencast.com/t/Aqoh0hJG
a.vc_btn-lg {
width: 100%;
text-align: center;
}
Or if you want to customize only one button you can use color as an extra class – http://screencast.com/t/oWmoht1uPLw and add custom css – http://screencast.com/t/BH8vYWkcV
Thanks!
Hmn. Weird — I’m doing this on Newsmag and assumed would work identically for newspaper 6 — I think you might need to look at the page source and see what is actually being “printed” on the page in that spot to see if a style is being applied to the element aside from the div wrapper. If so, you’d need to apply the same CSS to your code (e.g., there may be a “margin-top:4px” or “padding-top:4px” or similar.
The quick fix is wrap your code in a span like
<span class="mypadder">[code here for time]</span>
then add custom css to the panel
.mypadder{padding-top:3px}
or margin-top, etc.
or wait until Monday for tagdiv official support 🙂
Temporary solved the issue by adding this to custom css:
.td-animation-stack .entry-thumb, .post img {
opacity: 100; !important;
}
Make sure you completely clear the history/cache in IE 9 and try again; from the screenshot looks like the CSS is not loading. Also try NOT using a “child theme.”
And, stop using IE9 and start using IE10; if you’re still running Windows XP, not everything may work properly — but it “might” 😉
If running Windows 7, you should be using IE10 which came out 4 years ago. IE9 was very buggy.
i make it with this code <?php echo $td_mod_single->get_date(false);?> <?php echo get_the_time(); ?> on loop-single.php but i have css issue. the time text, doesn’t same with date text. http://grab.by/IzvE
any help?
Hello Alin,
I have replaced in style.css. I believe this will be replaced in next update? if so, what should I do so it doesn’t get replaced in next theme updates.
Hi,
That looks great. Is there a chance to use the Xing icon available in the Font Awesome icon library (fa-xing)? How do I have to modify the CSS code?
Thanks!
Richard
-
This reply was modified 11 years by
RSchieferdecker.
Hi,
You can try to make this change directly in style.css file and see if still the default color is being applied. This issue appears because of the cascading property of css and change it directly in the stylesheet file you should not have this delay. Try to change the color here – http://screencast.com/t/XhfSg0Ij6
Also we will try to add some options for mobile menu in a future update as it is on our list.
Thanks for the message and for suggestions!
Hi Bryson T
The issue is not the CSS of the block,please remove the modification you have done to fix it. The issue is about the order of the theme style.css vs js_composer.css and VC that overwrite the grid padding. http://screencast.com/t/RQvAuITOEaN
Please update the Child theme from the latest theme version.
Hi,
@lospicos Unfortunately this is how Big Grids were designed and you will need custom work to change how they are displayed on mobile. You can try this custom css for Big Grid 2, but if you need more customizations I suggest to get a professional to do this for you as we cannot provide custom work for the moment, sorry! This css code is a good start to look like you want – http://screencast.com/t/itZMkH9TDKM
@media (max-width: 767px) {
.td_block_big_grid_2 .td-big-grid-wrapper .td-big-grid-scroll {
white-space: normal !important;
}
.td_block_big_grid_2 .td-big-grid-wrapper .td-big-grid-scroll .td-big-grid-post-1 {
width: 100% !important;
}
.td_block_big_grid_2 .td-big-grid-wrapper .td-big-grid-scroll .td-big-grid-post-2, .td-big-grid-scroll .td-big-grid-post-3 {
width: 49% !important;
margin-left: 0 !important;
}
.td_block_big_grid_2 .td-small-thumb .entry-thumb {
width: 120% !important;
}
.td_block_big_grid_2 .td-big-grid-post-1 {
margin-bottom: 3px !important;
}
.td_block_big_grid_2 .td-big-grid-post-2 {
margin-right: 3px !important;
}
.td_block_big_grid_2 .td-big-grid-post.td-small-thumb .td-big-grid-meta .entry-title {
font-size: 14px;
}
}
Thanks!
-
This reply was modified 11 years by
Alin [tagDiv].
Hi,
Please make sure that you don’t use background color to you site, as he site will automatically switch to boxed version, if this what you mean.
Also I see that you use ubermenu and it is centered, you can use this custom css if you don’t want the menu centered – http://screencast.com/t/h4jWMsrT
.ubermenu-bar-inner-center .ubermenu-nav {
margin: 0;
}
Thanks!
Hi,
Sorry for delay, we answer to the most oldest topics and because you’ve added a new replies we missed your post! Also the support hours – 8:00 AM – 17:00 PM
Theme ad system was not designed to display 2 banners in a ad spot, you need customizations to display them fine. You can try this custom css in Theme Panel > Custom Css – http://screencast.com/t/WlffHIrB
.td-header-sp-recs img {
position: relative;
float: left;
margin-right: 10px;
}
@media(min-width: 768px) and (max-width: 1018px) {
.td-header-sp-recs a:first-child img {
width: 30%;
}
.td-header-sp-recs a:last-child img {
width: 65%;
}
}
You may need additional customizations, I suggest to get someone to help you if you don’t know how to do it as we cannot offer custom work at this time.
Thanks!
Hi,
The theme doesn’t have an option for this, you will need custom modifications to achieve this. A solution is to add you text to category description – http://screencast.com/t/L4OebpPUF and echo description bellow the loop – http://screencast.com/t/G3bZuXGIAUmg here is the code – http://pastebin.com/HbaHCVqL
Result: http://screencast.com/t/2bNtHKg9mtMq
You will need to use custom css to hide the category description from top – http://screencast.com/t/3Wf9vX18b
.td-category-description {
display: none;
}
Thanks!
-
This reply was modified 11 years by
Alin [tagDiv].
-
This reply was modified 11 years by
Alin [tagDiv].
Hi,
If possible please also provide a link to your site so we can inspect this issue. It might happen due to the lazy load feature of the theme: http://screencast.com/t/alo1ZDSk so you can disable it and test again.
Not sure how your posts images are added into posts but the theme already styles the images to be responsive so I’m not sure if you really need the “hammy” plugin anymore only if the images html structure changes and the post images css isn’t applied anymore.
Please provide more details or provide your site’s ulr. If you don’t want to post it here you can use our email address contact@tagdiv.com and include a link to this tread.
Thanks
Hi,
Please check documentation(Requirements for Newspaper) – https://forum.tagdiv.com/requirements-for-newspaper/ and this guide – https://forum.tagdiv.com/pagespeed-guide/ We recommend now Wp-Super Cache instead of W3 Total Cache, it seems to be faster and we will change this also in the documentation.
Also try to use only plugins that you need. The speed booster move the js and css at the bottom of the page to eliminate render-blocking, but not for all plugins.
Thanks!
Hi,
This is default gradient color on style 1 for all grids – http://screencast.com/t/C1AiZOqt6Kx Try this css in Theme Panel > Custom Css it should not be so darkness now, you can change the rgba color how you wish:
.td-grid-style-1 .td-module-thumb a:last-child:before {
background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(100%, rgba(0, 0, 0, 0.4)));
background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
}
Thanks!
Hi,
There is an option to change the color for subfooter text in Theme Panel > Theme Colors – http://screencast.com/t/EFsG99O8 also the hover color is the same with you theme accent color.
If you want to change it only for subfooter menu elements please try this custom css in Theme Panel > Custom Css – http://screencast.com/t/Ybn7geN9
.td-sub-footer-container, .td-subfooter-menu li a {
color: #DDCE33;
}
.td-subfooter-menu li a:hover {
color: #334FDD;
}
Thanks!
Hi,
I have just bought your great theme and am testing a couple of things on http://www.sverigetips.se. If you minimize the browser window until the mobile menu shows and then make a reload, you can see that the mobile menu pops up in black in a split second. (I have used the CSS that you have repeatedly suggested for changing the color of the mobile menu.) This happens with or wihout caching. I can see the same behaviour on my mobile phone. How can it be avoided?
Speaking of mobile menu: Your theme panel is really fantastic – however, you seem to have forgotten about the mobile menu there (in the theme colors). Would be great if you could add – mobile menu bar background color – mobile menu bar text color – mobile flyout menu background color (it doesn’t seem to be identical with the theme accent color) – mobile flyout menu text color.
Cheers,
Walther
Hi,
You can customize Big Grid 8 using custom css. I guess that you are referring to style 2 or 3(or any style) you need to inspect using browser’s inspector tool and target the classes where the background gradient is applied and change it for example – http://screencast.com/t/DqJZ8rz0
If you don’t have basic css experience I suggest to get someone to help you as we cannot provide custom work at this time, sorry!
Thanks!
I think I usually take the sissy way out and just avoid the mods that put me in a position of changing things twice. Is that sad or what? haha
Need to get familiar with the new API. Although it’ll be a while before it touches on the areas I tend to modify, like the default sharing buttons. Between the API as a plugin and the Custom CSS settings, the child theme is becoming more irrelevant.
Speaking of jaded, color me jade regarding WordPress in general. I’ve been branching toward so-called lightweight CMS solutions like Bolt CMS and as it turns out, it puts WP to shame on performance, function, and customizability for a news site not dissimilar to those you run. But that’s for another topic.
Just going along to get along for now. Gonna get that parent theme going again. It’ll fix my block 18 thumbnail issue too.