Hi
1,2. To remove the transparency from post/page content use this css: http://screencast.com/t/rMplUHaPEtM
.td-container {
background-color: rgba(255,255,255,1)!important;
}
3. Try this css to make the footer background color black: http://screencast.com/t/2Fwdc2G4O
.td-footer-container, .td-sub-footer-container {
background-color: rgba(0,0,0,.8)!important;
}
Let me know how it goes.
Thanks!
Hi,
It seems your thumbnail is bigger than the original thumbnail used for this block http://screencast.com/t/WhFLnxnQTSa4
If you made modifications to the theme width, then this could be the result of that. Please change the row settings in design option and revert the settings to their default. Your thumbnail gets enlarged by css that is why it loses the quality. Please try a block 18 on a test page with no other settings or modification to see if the image still displays the same.
Let us know how it goes.
Thank you!
Hello,
You need to use css for positioning. You can use floats or display:inline. Assign some classes to your elements so you can target them with css. (.mycustomclass{display:inline;})
Hope this helps.
Thanks.
Hello gsinatti,
I suppose that you are referring to decrease the padding between blocks. If you want to do this, you have to use a bit of CSS code.
The code is ->
.td_block_wrap {
padding-bottom: 5px;
}
.td_block_wrap .td-next-prev-wrap {
margin-bottom:0!important;
}
The result you should see here -> http://screencast.com/t/Gvc4z3VF
Hope this helps!
If is not what you mean, please provide more details about what your desired changes so I will be able to provide a more accurate response.
Thank you for the message!
Hello,
I tested this code again and it still works as the css classes were not changed.
Thank you!
Hello paolom83,
In order to achieve as you wish, you have to use a bit of CSS custom code to do that. Please try the code below and place it in Theme panel->Custom CSS Area.
The code is ->
.wp-caption-text{
position:relative;
margin-top:-22px;
color:white;
}
The result you should see here -> http://screencast.com/t/LwtdUB69C
Thank you for the message!
Hello,
Unfortunately our theme does not break words. It will recognize the spaces between the words for the title to add another line. In this case (with long words and omg that is a long one :)) there are 2 options. Either make your client add some hyphens “-” to the long words where he wants them to break, or you could use a css trick like so:
h3 a{
word-break: break-all;
}
But this code will break the word at the letter that is considered to be the last to fit inside the container.
Hope this helps.
Thank you!
Hi
Try this css in theme panel > custom code > custom css and modify the margin’s value as you need: http://screencast.com/t/qUoR9MC5hG
.td_block_text_with_title .block-title{
margin-bottom: 10px;
}
Let me know how it goes.
Thanks!
Hi,
i tried to use the booster plugin to defer load my js and css files – dont work. Not one file are moving from his place. I defined a custom wp-content directory as always in the config.php and im using a child theme. i also changed the name of the theme. Everthing works fine – but the plugin dont work. I followed the instruction of the booster plugin manual – no conflict with other plugin – i used it alone….
Then i removed the plugin, because i found following piece of code on stackoverflow to defer load the js files. Works fine:
if ( ! function_exists( 'add_defer_to_js' ) && ! is_admin() ) {
function add_defer_to_js( $url ) {
if ( FALSE === strpos( $url, '.js' ) ) {
// not our file
return $url;
}
// Must be a ', not "!
return "$url' defer='defer";
}
add_filter( 'clean_url', 'add_defer_to_js', 11, 1 );
}
NOW MY PROBLEM and my Hope you can help me out. The only parts of my site, wich does not display correct anymore is the homepage full block AND the (same) Single Post Template (DEFAULT SITE POST TEMPLATE Style 8). This is the shortcode to reproduce it on the mainpage:
[td_block_homepage_full_1 category_id=”” category_ids=”2558″ post_ids=”” tag_slug=”” autors_id=”” installed_post_types=”” sort=””]
I compared the source of my site with the defer code and without – no changes.
QUESTION:
ANY IDEA HOW TO FIX THIS? Nny help would be appreciated
Thank you so much
Dashboard – NewsMag – Custom Code – Custom CSS:
.comments {
display: none;
}
That should do it.
Hi, I am currently working under the demo: http://demo.tagdiv.com/newsmag_travel/
I like the beach background, but I need to eliminate the transparency:
1) In post.
I already tried
.post, .td-main-content-wrap{
background-color: rgba(255, 255, 255, 0.75)!important;
}
What happenned? That the content of the post what whiter but the sidebar mas more transparent. Meaning this css did not modify the sidebar transparency on the background.
2) In the page.
Main page, what is the CSS to make all the center or main content white, be completely white? I read somewhere in the forum about this code, which I tried and did NOT work:
.td-container {
background-color: rgba(255,255,255,.75);
}
3) The footer.
I would also be eeding the code to set it to completely black, I need to get rid of the transparency,
So the question is.. what css do I need to make all this happen?
Thaks agani! 🙂
@media (max-width: 767px){
.td-header-top-menu-full {
display:block!important;
}
.td-header-sp-top-menu{
display:block!important;
}
.td-header-sp-top-widget{
display:none!important;
}
}
Hi Catalin,
I have applied this code and my top menu appears on mobile. When the device is vertical – on the home page and posts, the menu is aligned left. On regular pages, it is aligned center which is preferable. On categories, it shows only the social.
Any way to apply CSS that would make the home page and posts have the centered menu? And also for categories to show the menu items instead of social?
site – comics2film.com
Inner page example – http://www.comics2film.com/comic-con-dates-schedule-locations-news/
Post example – http://www.comics2film.com/marvel/daredevil/daredevil-season-2-episode-7-semper-fidelis-review/
Thanks
Hello guys how can i set the Text next to the icon?
Below the code I use but looks like that: http://www.screencast.com/t/XhzLdvWSv0X
[vc_icon icon_fontawesome="fa fa-newspaper-o" color="grey" background_style="rounded" background_color="green" size="xs" css_animation="left-to-right"]<span style=”color: #ffffff;”>Aktuelle Neuigkeiten, TV Tipps, Videos u.v.m</span>
[vc_icon icon_fontawesome="fa fa-trophy" color="grey" background_style="rounded" background_color="green" size="xs" css_animation="left-to-right"]<span style=”color: #ffffff;”> Gewinnspiele & Aktionen</span>
[vc_icon icon_fontawesome="fa fa-tags" color="grey" background_style="rounded" background_color="green" size="xs" css_animation="left-to-right"]<span style=”color: #ffffff;”> Angebote</span>
Please tell me what I have to do to have the text next to it….Thank you
There is a link to CSS on this forum to do that – I can’t find it right now but search and there’s a lot about it – it can be done but have to change each one – if I find it I’ll post back
Just a quick update – you veyr kindly gave me the css code to remove the author from the big grid:
.td_module_mx9 .td-post-author-name{
display:none!important;
}
I have updated my website to use a different grid ‘Big Grid 6’ – but of course the authors names are coming up again. Could you tell me what the new css code would be to remove this?
Thanks in advance!
Should this CSS still work for showing captions below images in posts?
Thanks!
Hi,
I’m wondering why all the text on our forum is very clear but the description under the
different topics is very hard to read, it’s like its greyed out.
Is there a code I can place in CSS that would change that? I would just like black text
like the rest of the page.
Also, Is it possible that you might have a list of all the various CSS codes that you may have given out to people?
Thanks.
For those who think they’re on the cusp of this stuff (sadly I have to be), there is now also the Apple News Publisher format, which *also* has a beta plugin for WordPress.
So, between
* AMP
* Facebook Articles
* Apple Publisher
I don’t see any theme developer going too nuts in trying to bake all of that in.
HOWEVER, that being said – TagDiv *will* need to (hopefully) come up with solution for the hit counter not incrementing for AMP views, even if it’s a hack (hint!).
That won’t really be possible with the FB and Apple versions as those are essentially custom RSS feeds where the content loads on the other sites/apps (to enable captive advertising outside scope of ad blockers); whereas AMP is part of the site and uses local content, and simply uses cloud based CSS/styles for speed, while stripping out any errant old HTML or javascript.
Hi
You can use this css in theme panel > custom code > custom css but it will work only for desktop: http://screencast.com/t/JtLMVFf9
@media(min-width: 1021px){
.td-footer-container.td-container, .td-sub-footer-container.td-container{
width: 100%;
}
.td-footer-container .td-pb-row, .td-sub-footer-container .td-pb-row{
width: 1021px;
margin-left: auto;
margin-right: auto;
}
}
Thanks!
Hello cstibi,
Unfortunately, our theme does not have such an option to change the background color for the tagDiv gallery. If you want to change this, you have to use a bit of CSS code to do that. Please try the code below and place it in Theme panel->Custom CSS area.
The code is ->
.td-doubleSlider-2 {
background-color:lightgray ;
}
.td-gallery-slide-top {
background-color: lightgray;
}
The result you should see here -> http://screencast.com/t/savFC48rxZzD
Thank you for the message!
Hello Matija,
1)If you want to get rid of the footer logo, you have to remove from theme panel, like this -> http://screencast.com/t/5dxEUIQfU For more information about footer section, please consult the theme documentation here -> https://forum.tagdiv.com/footer-templates/
If you want to have this kind of text in the center of the footer section, you have to use footer template style 12 and customize it as you want. For example, you can use it like this -> http://screencast.com/t/bf5EgVMT -> http://screencast.com/t/QsfdYWegY7 and then you have to use a bit of CSS to align the text and the result you should see here -> http://screencast.com/t/oSaZGN9u
The code is ->
.textwidget {
text-align: center;
}
2)If you do not want to have a hover for your main menu, try the code below.
The code is ->
.td-header-style-12 .sf-menu > li > a:hover, .td-header-style-12 .sf-menu > .sfHover > a {
background-color: rgba(0, 0, 0, 0) !important;
}
The result -> http://screencast.com/t/es5c6kfiiRhQ
3)Unfortunately, I did not saw extra white spaces for your main menu, sorry! -> http://screencast.com/t/Osi95rpGxb Try to clear all cache (browser cache) and test it again.
Thanks.
Hi,
Please provide a link to your website so I can inspect it and provide the proper css code. If it’s a staging site and requires username and password, please send it to us via email at contact@tagdiv.com and provide a link to this topic as well so we can identify you.
Thank you!
Hi, the Tagdiv Slider Gallery is fantastic, but we don’t want to show that great black box around it.
Can we remove or change its colour to white or light grey in custom css boxes?
And have to change the colour of pagination arrows, the colour of the gallery name and picture name texts too.
(or maybe hide the name of picture in this view…)
thanks
cstibi
Hello k2point0,
If you want to hide the meta information only for your home page, please try the code below and place it in Theme panle->Custom CSS area.
The code is ->
.home .td-module-meta-info{
display:none;
}
Thank you for the message!
Hello thanik30,
I suppose that you are referring to this Visual Composer element, like this -> http://screencast.com/t/sDDJ0o5sn7k9 If you want to change the font size for this kind of element, you have to use a bit of CSS code and place it in Theme panel->Custom CSS area.
The code is ->
.vc_btn3.vc_btn3-size-md {
font-size: 60px;
}
The result you should see here -> http://screencast.com/t/r5HkfcS3
Hope this helps!
If is not what you mean, please provide more details about your desired changes so I will be able to provide a more accurate response.
Thank you for the message!