Hi,
Please try this custom css
.header-search-wrap .td-drop-down-search{
position: absolute;
top: -110px;
visibility: visible;
visibility: visible;
opacity: 1;
pointer-events: auto;
}
.header-search-wrap .td-search-btns-wrap{
display: none;
}
.td-header-wrap .td-drop-down-search:after,
.td-header-wrap .td-drop-down-search:before{
display: none;
}
This is all I can do without a link to your website.
Thank you for your understanding.
Hi,
1. The words should break when there is not enough space, the theme uses the word break property to break long words and display them in the next line
– https://www.screencast.com/t/d0bAjzxu
If that is not happening, I could take a look. Provide a link to where this is happening.
2. The underline and the shadow don’t have any dedicated settings, I could try and give you CSS if you want to modify these. Note that the shadow is actually an image encoded in base64
– https://www.screencast.com/t/5ziW64pf
This could be removed with CSS and add a true color shadow if that is what you want to do. Let me know.
Thanks
Hi,
You are probably uploading the whole theme package. You have to upload only the theme zip file, not the whole package which contains other items
– https://help.market.envato.com/hc/en-us/articles/202821510-Theme-is-missing-the-style-css-stylesheet-error
These are the theme install methods with steps for each method
– https://forum.tagdiv.com/install-via-wordpress/
– https://forum.tagdiv.com/install-via-ftp/
Regarding on child theme, please notice that’s not required and it’s optional.
Thanks for your understanding!
Hello axehorde,
1)Here -> https://www.screencast.com/t/xWgKo1g6zK is talking about category tag which can be enabled/disabled from Theme panel, from here -> https://www.screencast.com/t/U3FauJxUPWcs
2)Unfortunately, the theme does not have any such an option that allows you to change the article title size for that section and for that element, but only if you will use some custom CSS code. Try the code below and place it in Theme panel -> Custom CSS area.
@media (max-width: 767px){
.td-big-grid-post.td-small-thumb .td-big-grid-meta .entry-title {
font-size: 13px;
}
}
The result is here -> https://www.screencast.com/t/VDJtFzc6pu
3)Unfortunately, it’s not possible this thing for that element, sorry! You need to check another slider element like iOS Slider if you like. Check it here -> https://demo.tagdiv.com/newspaper/ios-slider/
4)Sorry, but this functionality is made by JS and if you want to change it you should edit that core file. 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 because we cannot provide custom work at the moment, sorry!
5)This is an example of our demo from here -> https://www.screencast.com/t/4ZvUdaclDiK It seems to look similar to your example.
6)I have checked your website and the Ads seems to work as expected at the first time -> https://www.screencast.com/t/gVyoKpink Clear all the caches and check the results. Also, provide some useful screenshots of the problem.
7)Please provide some useful screenshots with the problem so I can take a closer look at it.
Thanks.
I turned off the minification, which was *only* CSS. It still does not work. I am using theme files directly from your theme, AFAIK, JS files do not “get corrupted” if you just copy them from a source, they’re literally uncompiled text files.
Please advise!
-
This reply was modified 7 years by
mgargano.
Hello tangy,
Please notice that each demo has an own custom-made layout and if you want to use it, you need to install that demo. Also, if you want to take only the header section layout, you need to check the demo-style.css for that demo and try to replicate it on your website. Also, 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 because we cannot provide custom work at the moment, sorry!
Thanks for the message!
Hi,
That would be quite an unusual reason, the first code you mention is related to the live CSS editor the composer provides
– https://www.screencast.com/t/04cQsekAjTm
An option to disable this editor does not exist at the moment unfortunately.
It could be disabled entirely in the plugin directly if required
– https://forum.tagdiv.com/topic/live-css-div-on-the-frontend-luckily-in-displaynone-mode-for-everyone/
The other text would be the one from the WordPress login page I believe, can’t think of another place where that would show up
– https://www.screencast.com/t/jPE7l8F7
Maybe create a new topic in the Adsense help forum, some people with more experience in these matters might be able to help you with this issue
– https://productforums.google.com/forum/#!forum/adsense
Thanks
Hi,
Please follow our tutorial about Create custom code with the browser’s Inspector or the Live CSS Box
Very page/post have an id, just hover the post/page title and look in the left bottom corner https://www.screencast.com/t/bphBCMxQUL
When you inspect the page/post you’ll see at the top the postid/page-id
https://www.screencast.com/t/ZRSaLzQs
https://www.screencast.com/t/viL1wHb2f9E
For home page just use .home
https://www.screencast.com/t/rW6glVQN
To hide an element use the syntax css visibility: hidden; or display: none;
You can read more about it here : -> https://www.w3schools.com/css/css_display_visibility.asp
Hope this will help you.
Thanks.
Hi,
That would be possible with a modification in a theme file. You would have to multiply the Instagram social in this file, for example
– https://www.screencast.com/t/BQw3jVMGByoZ
Then enter this CSS in the Theme panel->Custom CSS code section
.td-icon-instagram2:before,
.td-icon-instagram3:before {
content: '\e81d';
}
.td-social-icon-wrap .td-icon-instagram2,
.td-social-icon-wrap .td-icon-instagram3 {
font-size: 15px;
}
The result is like this – https://www.screencast.com/t/X6QCU9nRizBV
– https://www.screencast.com/t/63IAxqHh5tB
Thanks
Hi,
You need to use some custom css for this
If you want to have in both examples the same background color then please add this custom css in Newspaper>Theme panel>Custom code>Custom css
.td-footer-wrapper .td-post-category,
.td_block_widget .td-post-category{
background-color: #b953ed!important;
}
See the results: https://www.screencast.com/t/iNv558D2p
If you like different background color use this:
.td-footer-wrapper .td-post-category{
background-color: #b953ed!important;
}
.td_block_widget .td-post-category{
background-color: pink!important;
}
See results: https://www.screencast.com/t/HkLVKeLFKTqH
Also you can check this tutorial :
Create custom code with the browser’s Inspector or the Live CSS Box
Hope this will help you.
Thank you for your understanding.
Hi,
Predefined blocks (blocks 1->25) don’t have settings to chnage the color of the article titles. Only flex blocks do at the moment
– https://www.screencast.com/t/4kfay9RLiV
I could give you a code that will work only on the homepage and change the color of the titles for the elements you have in it
– https://www.screencast.com/t/HqQ4FIC9o
You can chnage the color if you want, in the code. Then enter the code in the Theme panel->Custom CSS code section.
.home .td-ss-main-content h3 > a,
.home .td_block_1 h3 > a {
color: white;
}
Let me know if you have more questions or need help with something else.
Thanks
Hi,
Depends what element you use to display the image. Single image elements for example set the image as background, they have limited responsiveness due to background CSS properties.
The most responsive result would be achieved by using a simple text elements in which the image is inserted, you could give this a try
– https://www.screencast.com/t/nljtVQtf7H
Thanks
Hi,
The plugin has no effect even if I set up the css and js from google pagespeed insights.
It looks to be active from wp meniu.


Hi,
I will try to help you, provide a link to your website and more details about what exactly you want to do and where. If it’s not possible with the composer, maybe it is possible with some CSS.
The tagDiv composer can be used to edit any page that has been built with it. Pages that have not been built with it, or contain other elements besides composer elements, may cause problems and errors.
Here are some guides regarding the composer and blocks
– https://forum.tagdiv.com/tagdiv-composer-tutorial/
– https://forum.tagdiv.com/block-settings-guide/
Thanks
Hello awtown,
Unfortunately, at the moment, the theme does not have any such an option that allows you to change this section but only from the custom CSS code. Try the code below and place it in theme panel -> Custom CSS area.
.td_block_text_with_title p{
font-size:20px;
}
In the future, we will hope to add some settings regarding this element through TD Composer.
Thanks for your understanding!
Hi Giorgos3,
Is possible that you have some custom css set in Theme panel, maybe something set as important to a link ( example a{ color:red!important;} ), that can block you to change the color.
Thank you for your understanding.
I have a problem with big grid slide.
I set the slide in my website http://www.labussolanews.com
1- i want to see the category before the title, like this one https://demo.tagdiv.com/newspaper/big-grid-slide/
remove the author name and keep the date.
2- Also in mobile layout it cause some problems. The longest title go outside the image box and there is too much space between title and the lower edge. (see attached below). https://ibb.co/jj2d7q
3- Is it possible to scroll only the first big image instead of the whole block?
4- Is it possible to make the side arrows always visible instead of showing them only when you go over it?
5- another problem is that the smaller images, in the mobile version of the site, shrink not proportionally, are crushed laterally and the image become distorted (I refer to the last 2 of the block, see the image)
OT question:
i set a background ads image with url and I have increased the space between the browser header and the site layout box (with the advanced css code, only in desktop).
6- I notice that in the mobile version, when pages or articles are loading, it show for 2/3 or 4 seconds the background ads (in this case i see the amazon logo at the top, see my homepage). Is there a way to prevent background from loading in the mobile version?
7- Last question. I create the background layout with photoshop. I set the document at 1920×1080. I also create a 1163 white box for see the size of the site and left 115px from the top. Are this dimensions correct? Because the background doesn’t fit the whole white space around the site. Now you see it right because I took the width to 2200 to cover everything, but i don’t know why with 1920 does not work. Maybe because the browser bar? Can you send me a .psd file with the correct layout for create custom background?
Thank you for your patience
the social icons erro.
how to solve?
[td_block_social_counter facebook_app_id=”1753104724945494″ facebook_security_key=”c5f981ab4745cab2bf25141752a5edd6″ facebook=”portalcidademarketing” facebook_access_token=”1753104724945494|gDKu66ZuRLMBz5WUtYrWxDpSE2o” youtube=”ThalesMarketing” style=”style2 td-social-font-icons” tdc_css=”eyJhbGwiOnsibWFyZ2luLXRvcCI6IjMwIn19″ twitter=”cidademarketing” open_in_new_window=”y” soundcloud=”cidademarketing” custom_title=”Conecte-se” instagram=”cidademarketing” rss_url=”http://feeds.feedburner.com/com/JZew” rss=”http://feeds.feedburner.com/com/JZew”]
the page continues to be displayed normally – when I do an update of the composer. but the code continues like this. Does this cause future?
I do not need to worry anymore
[vc_row][vc_column][td_block_trending_now tdc_css=”eyJhbGwiOnsibWFyZ2luLXRvcCI6IjEwIiwibWFyZ2luLWJvdHRvbSI6IjEwIn19″][/vc_column][/vc_row][vc_row][vc_column][td_block_big_grid_3 category_id="" sort=""][/vc_column][/vc_row][vc_row el_class="td-ss-row"][vc_column width="2/3"][td_block_1 custom_title="Notícias" td_ajax_filter_type="" sort="" header_color="#f23d37" tdc_css="eyJhbGwiOnsibWFyZ2luLXRvcCI6IjMwIn19" category_id="6" td_filter_default_txt="Todos" ajax_pagination="next_prev"][td_block_2 limit="6" sort="" custom_title="Artigos" td_ajax_filter_type="" header_color="#97c13c" tdc_css="eyJhbGwiOnsibWFyZ2luLXRvcCI6IjMwIn19" td_filter_default_txt="Todos" category_id="12" ajax_pagination="next_prev"][td_block_16 limit=”3″ custom_title=”Eventos” sort=”” td_ajax_filter_type=”” header_color=”#2198d3″ tdc_css=”eyJhbGwiOnsibWFyZ2luLXRvcCI6IjMwIn19″ category_id=”13″ ajax_pagination=”next_prev”][/vc_column][vc_column width="1/3"][td_block_social_counter facebook_app_id="1753104724945494" facebook_security_key="c5f981ab4745cab2bf25141752a5edd6" facebook="portalcidademarketing" facebook_access_token="1753104724945494|gDKu66ZuRLMBz5WUtYrWxDpSE2o" youtube="ThalesMarketing" style="style2 td-social-font-icons" tdc_css="eyJhbGwiOnsibWFyZ2luLXRvcCI6IjMwIn19" twitter="cidademarketing" open_in_new_window="y" soundcloud="cidademarketing" custom_title="Conecte-se" instagram="cidademarketing" rss_url="http://feeds.feedburner.com/com/JZew" rss="http://feeds.feedburner.com/com/JZew"][td_block_ad_box border_top="no_border_top" spot_id="sidebar" tdc_css="eyJhbGwiOnsibWFyZ2luLXRvcCI6IjMwIn19" spot_title="- Anúncio -"][td_block_7 custom_title="Mais visitados" sort="popular" header_color="#999999" tdc_css="eyJhbGwiOnsibWFyZ2luLXRvcCI6IjMwIn19"][/vc_column][/vc_row][vc_row][vc_column][td_block_title border_top=”no_border_top” custom_title=”Entrevistas” tdc_css=”eyJhbGwiOnsibWFyZ2luLXRvcCI6IjMwIiwiZGlzcGxheSI6IiJ9fQ==” header_color=”#d8513c”][td_block_14 limit=”3″ sort=”” custom_title=”” category_id=”15″ td_ajax_filter_type=”” ajax_pagination=”next_prev”][/vc_column][/vc_row][vc_row][vc_column width="2/3"][td_block_11 sort=”” custom_title=”Vídeos” td_ajax_filter_type=”” header_color=”#35ad99″ tdc_css=”eyJhbGwiOnsibWFyZ2luLXRvcCI6IjMwIn19″ ajax_pagination=”next_prev” category_id=”14″][vc_widget_sidebar sidebar_id="td-footer-1"][/vc_column][vc_column width="1/3"][td_block_5 limit="3" sort="" custom_title="Podcast" header_color="#c337d3" tdc_css="eyJhbGwiOnsibWFyZ2luLXRvcCI6IjMwIiwiZGlzcGxheSI6IiJ9fQ==" category_id="41" td_filter_default_txt="Todos" td_ajax_filter_type="td_popularity_filter_fa" td_ajax_preloading="" ajax_pagination="next_prev"][td_block_16 category_id=”16″ ajax_pagination=”next_prev” limit=”4″ custom_title=”Livros”][td_block_ad_box border_top="no_border_top" spot_id="custom_ad_4" tdc_css="eyJhbGwiOnsibWFyZ2luLXRvcCI6IjMwIn19" spot_title="- Anúncio -"][td_block_ad_box border_top="no_border_top" spot_id="sidebar" tdc_css="eyJhbGwiOnsibWFyZ2luLXRvcCI6IjMwIn19" spot_title="- Anúncio -"][/vc_column][/vc_row]
This is kind of a weird issue, but I’ll try to explain.
We’ve been trying to apply to be a Google AdSense member, but we are denied for “scraped content”. We had 1 or 2 minor issues with Stock Photo descriptions, but have since rectified that.
Even after we fixed that discrepancy, we’re still getting denied.
We used copyscape.com to try to determine which websites Google thinks our content matches.
Copyscape.com returns a consistent result for almost every one of our posts.
The result returned is:
http://writing.msu.edu/pittsburgh-three-rivers-casino
which, when you try to navigate to, returns a 403-Forbidden error.
And the text they say is “scraped” is:
“Edit with Live CSS Save Write CSS OR LESS and hit save. CTRL + SPACE for auto-complete.”
This is the same text we see in the “Live CSS” editor within WordPress/Newspaper theme.
I can’t imagine we’re being denied access for this? But maybe?
Is there any way to disable the “Live CSS” editor?
Copyscape.com also returns results for:
“Powered by WordPress Username or Email Address Password Remember Me Lost your password?”
on the login page….
is there anyway to edit/change this text?
Hi,
My website is Arthursjournal.com, a Red Dead Redemption Blog, as you will see i have changed the main block background colour to black, although i think this looks good it means that the article titles are hardcoded to black so they are not visible, how would i change this colour on both the latest article block and side bar widget as this is also affected. This may be impossible but if you go to an article, say: http://arthursjournal.com/guides/dead-eye-guide-red-dead-redemption-2 , you will see that i have left the background white here, as such the sidebar title colour looks good, is there anyway to have the homepage titles one colour and in article another, for example (and im not sure if this is how it works) could the css call out a title colour for a specific widget meaning i could change the sidebar on the articles to something different to the homepage side bar,
Cheers in advance,
Charlie
Hi.
I need to remove Font Awesome from Newspaper 9.
Where are the part of template to change?
I search everywhere but I can’t find:
1)
<link rel=’stylesheet’ id=’fontawesome_v4_shim_style-css’ href=’https://use.fontawesome.com/releases/v5.3.1/css/v4-shims.css?ver=4.9.8′ type=’text/css’ media=’all’ />
2)
script type=’text/javascript’ src=’https://use.fontawesome.com/releases/v5.3.1/js/v4-shims.js?ver=5.3.1′></script>
<script type=’text/javascript’ defer integrity=”sha384-kW+oWsYx3YpxvjtZjFXqazFpA7UP/MbiY4jvs+RWZo2+N94PFZ36T6TFkc9O3qoB” crossorigin=”anonymous” data-auto-replace-svg=”false” data-keep-original-source=”false” data-search-pseudo-elements src=’https://use.fontawesome.com/releases/v5.3.1/js/all.js?ver=5.3.1′></script>
Hi,
I’ve installed WPBakery Page Builder and enabled it for posts and pages.
Everything is fine but I’m experiencing a strange issue when adding elements with CSS animations capable.
Even if I set the CSS animation to “none”, items are always appearing with a default animation.
As an example, I created a posts with WPBakery and added a tabbed content with just 2 tabs. Every time I switch between them the content enters with an animation. CSS animation is set to NONE in every section of the hierarchy. (main tabbed element > tabs > text).
Regards,
F.
Upgraded to Version 9. After upgrade some of the Newspaper menus somehow lost links. Restored database. Now, the site is working, many of the images are displaying all wrong, either too large or too small. Ran thumbnail regenerator. Inserted vc_figure CSS.
The site is still not displaying properly. Help! This is a live site.
Hi,
Please fallow our guide to Create custom code with the browser’s Inspector or the Live CSS Box from here -> https://forum.tagdiv.com/create-custom-code-using-the-browsers-inspector/
Hope this will help you.
Thank you for your understanding.