- 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,
@deelauaki This can be caused by Speed Booster plugin(if you use it) which move the css and js at the bottom of the page structure so that the page will load faster, this is why the theme default color appears first then changes, because of the cascading property of css. A solution is to change the color directly into css stylesheet file – http://screencast.com/t/hbjKLA3pjKA – http://screencast.com/t/YLOcOHterf
Thanks!
Hi,
Please provide your site url so I can inspect this, also please note that the above css is for version 6 of the theme.
Thanks!
Hi,
1. You can use this custom css to change the button color – http://screencast.com/t/MdMPgH34mQ74
.td_block_12 .td-read-more a{
background-color: red;
color: #222;
}
2. You will need custom modifications to add the author avatar for each module that you use, here you can find all modules – http://screencast.com/t/fQ2JKAk6N5Q4 You can try something similar(but for modules/blocks) – https://forum.tagdiv.com/topic/author-bio-help/#post-45418
3. The theme doesn’t have an option to enable share buttons on modules, you will need custom modifications to achieve this, here you can find an example how this can be done – https://forum.tagdiv.com/topic/can-i-edit-block3/ This is for version 4 of the theme, but you can adjust it for Newspaper 6. If you don’t have basic php/html/css experience I suggest to hire a professional developer to do this for you as we cannot provide any type of custom work at this time, sorry!
Thanks!
Hi,
Please add this custom css in Theme Panel > Custom Css, until we fix it: http://screencast.com/t/9md8JdytRhv
.td_module_mx2 .td-module-meta-info {
position: relative;
}
Thanks!
Many Thanks Alin
A way to define the black background with a 80% transparency (like in the example)?
Here another suggestion:
> Stars system
For my point of view the feature is very nice… but only for Google search.
Stars make our links in Google more visible.
But in our site there is no interest.
In the article, the block at the end of the article take a lot of space for nothing.
It would be cool if in admin, there a way to use the stars systme but hidden on the site for visitors but not for Google.
If you have any CSS code to hide this block, it will be cool.
Yes,
use blocks in the same row. What can I do with CSS custom? What code to use?
Hi,
Please try this custom css to change the color for ajax filter options on blocks – http://screencast.com/t/b534UQtmNNk
.td-subcat-filter .td-subcat-list a, .td-subcat-filter .td-subcat-dropdown span, .td-subcat-filter .td-subcat-dropdown .td-subcat-more i, .td-subcat-filter .td-subcat-dropdown a {
color: #181818;
}
Thanks!
Hi,
If you want to hide also the points bar, you can use this custom css – http://screencast.com/t/Wq4Ge7Ijk
.td-rating-bar-wrap {
display: none;
}
Unfortunately this is how the points review was designed with ratings from 1 to 10. I will add this on our suggestions list and if more users will request it, we will consider this in a future update.
Thanks!
Hi,
Unfortunately the theme doesn’t have an option to enable share buttons on modules, you will need custom modifications to achieve this, here you can find an example how this can be done – https://forum.tagdiv.com/topic/can-i-edit-block3/ This is for version 4 of the theme, but you can adjust it for Newspaper 6. If you don’t have basic php/html/css experience I suggest to hire a professional developer to do this for you as we cannot provide any type of custom work at this time, sorry!
Thanks!
Hi,
Please try this custom css for image caption(also css for hover effect is added) – http://screencast.com/t/cVvmWmVer4LZ
figure {
position: relative;
}
.wp-caption-text {
position: absolute;
bottom: 0;
color: #fff;
background-color: #222;
margin: 0 !important;
padding: 3px;
opacity: 0;
}
.wp-caption:hover .wp-caption-text {
opacity: 1 !important;
}
.td-post-featured-image:hover .wp-caption-text {
opacity: 1 !important;
}
Hope this helps!
Hi,
The theme blocks work fine on 3/3, 2/3 and 1/3 columns – http://screencast.com/t/j1iFmkZUc
If you added any custom css or code check it for errors.
Also try to disable all plugins except for Visual Composer and see if the issue is still there.
Thank you!
Hi,
You can change the module for search template from Theme Panel > Template Settings – http://screencast.com/t/upwRoQgu Also if you want to modify a module only for search page you can create a condition to display the thumb only if we are not on search template. For example if you use module 6 on search – http://screencast.com/t/dPzSJn48xQhd – http://screencast.com/t/n1QQfEroutH
if (!is_search()) {}
Result: http://screencast.com/t/KastY3uEll3s
Or you can hide it via custom css in Theme Panel – http://screencast.com/t/rJidXgLfy
.search .td_mod6 .thumb-wrap {
display: none;
}
Thanks!
Thanks for the css.
I want this article box to appear when comments section is reached (:
Alin,
I did the tests they asked me in the mail, but the problem persists. I remembered that I have another site with another theme version (4.2.2) and also happens. This site did not make any modification on the theme files more than some changes in an external CSS template.
Reference Link: http://clubalmafuerte.com
Hi,
You can edit each post template that you use (edit loop-single or single_template depending which post style you use) and replace the date with you custom code – http://screencast.com/t/lTeeQQBFE5R
Try to use this custom css in Theme Panel > Custom Css – http://screencast.com/t/qXk5ugtGU
.page-nav-post {
display: table;
float: none;
margin-left: auto;
margin-right: auto;
width: auto;
}
Thanks!
Hi
By default the theme doesn’t have an option do disable more articles button on mobile devices, but you can use this custom css to do that:
@media (max-width: 768px){
.td-more-articles-box {
display: none!important;
}
}
I am not sure what you mean at second part of your message, please provide more details.
Thanks!
-
This reply was modified 10 years by
Andrei L..
Hi
1. Please check this topic, Alin posted a solution here: https://forum.tagdiv.com/topic/search-box-3/
2. To remove the dropdown menu comment this lines: http://screencast.com/t/oztsJHIWQ then add this custom css in theme panel > custom css: http://screencast.com/t/hzPCY0e8zc – http://screencast.com/t/9l96f6O2Em95
.td-category-siblings{
width: 100%!important;
}
.td-pulldown-filter-display-option{
display: none;
}
3. You can change the buttons colors using custom css, by targeting the specific classes for each button:
– related article: http://screencast.com/t/LWbbqSu9fx
.td-related-title .td-cur-simple-item{
background-color: #B24747;
}
-current category: http://screencast.com/t/lfVjqV8k
.category .td-subcategory-header a.td-current-sub-category{
background-color: #CE1313;
}
.category .entry-title span{
background-color: #CE1313;
}
-header search button: http://screencast.com/t/DjnvlIdx
input[type=submit] {
background-color: #CC2323;
}
Let me know how it goes and provide more details if still need assistance on this.
Thanks!
Hi
Try this custom css, place it theme’s style.css file or alter the default css values for this selectors, the result should be like here: http://screencast.com/t/APOHb68kEt
.td_text_title_style3 span {
top: 0px;
}
.td-grid-wrap {
padding: 19px 13px 0px 13px;
}
h1, h2, h3, h4, h5, h6 {
margin: 10px 0px 10px 0px
!important;
}
.text_title_style2 {
margin-bottom: 10px;
}
.td_text_with_title {
padding-bottom: 0px;
}
Let me know how it goes and provide more details if still need assistance on this.
Thanks!
-
This reply was modified 10 years by
Andrei L..
Hi,
Unfortunately the theme doesn’t have an option in panel to change the post title color on modules, but you can use custom css for this, so please add an extra class for row where you use block 15 – http://screencast.com/t/buZDM8mGg and use this custom css – http://screencast.com/t/HBgQGg60QIA
.yourclass .td_block_15 .entry-title a {
color: #fff;
}
Thanks!
Hi,
I’m not really sure how you add the reviews. You have to add points from 1 to 10 – http://screencast.com/t/Zh8521xwOb Do you have this issue after the update? I guess that in version 4 if you set the point reviews the stars were not displayed, we have changed this a little bit, sorry!
I can provide a css to hide the stars when points review is used – http://screencast.com/t/jOfwjcm7
.td-review .rate_point .td-review-final-star {
display: none;
}
Hope this helps!
Hi,
Try the css code like this: http://screencast.com/t/MFwT9HyhrQ and add it in theme’s panel > custom css section, like this: http://screencast.com/t/pjjltiY4jzC it should solve your problem.
Thanks
Hi,
I have checked your site and you have a fixed width there(it should not be) – http://screencast.com/t/yvv1tHYd7o – http://screencast.com/t/rjhuAPBwXrkU so please remove any custom css that could affect this and also disable all your plugins except of Visual Composer, clear cache and see if you still have this issue.
Thanks!
Hey support team i’ll like a css code please to make my ajax text color top of my block to be #181818
Thanks
Hi,
Thanks Chris for your help!
Please note that in version 6 any customization(to the theme files, custom css) from old version will not work and you will have to re-add them as Newspaper 6 is practically a new theme. In the “how to update” guide is specified you need to run the script that will import from database your settings, will change the shortcodes. Unfortunately you will have to re-add your widgets in the sidebars as some of them may not be imported or don’t exist anymore, also they will become inactive.
Also the new version of child theme you can find it in /code folder – https://forum.tagdiv.com/whats-included/
Thanks!
-
This reply was modified 10 years by
Alin [tagDiv].
Hi,
You would have to modify the block and it’s not a simple task. The code is located here – http://screencast.com/t/slHwJYvl – http://pastebin.com/tuuAfgbm
You have to use a condition similar to the one i presented in the image, and it will require custom classes and css for each case. If you don’t know how to doit i suggest that you look for a professional developer to help you with this task.
Thank you!