Hello
live demo
https://www.hellouk.org/%E9%A6%96%E9%A0%812016/
could you please tell how to adjust distance between these block?

thanks!
Hi,
I have checked your page and it seems that you have altered the default code – http://screencast.com/t/vYWLb4IRMDdM
Thanks!
thanks, it works
could you please tell how to make these gone on block 9?

I need virtual composer ‘s “last 7 days’ popular posts” ‘s function , so I need to use VC
wordpress ‘s default “latest posts” does not have filter for X days based on popularity
last tab
https://www.hellouk.org/%E9%A6%96%E9%A0%812016/
many thanks
-
This reply was modified 10 years by
AilyRoot.
Hello AilyRoot,
If you want to get rid the post category tag and the comments counter for your Block 9, you have to use a bit of CSS code. Please try the code below and place it in Theme panel->Custom CSS area.
The code is ->
.td_block_9 .td-module-comments{
display:none;
}
.td_block_9 .td_module_wrap .td-post-category{
display:none;
}
If you want that code to apply only for your Tab feature, you have to use the below restrictive code.
The code is ->
.vc_tta-panels-container .td_block_9 .td-module-comments{
display:none;
}
.vc_tta-panels-container .td_block_9 .td_module_wrap .td-post-category{
display:none;
}
Thank you for the message!
hi
I have managed to remove all I don;t want by using
.vc_tta-panels-container .td_block_9 .td-module-comments{
display:none;
}
.vc_tta-panels-container .td_block_9 .td_module_wrap .td-post-category{
display:none;
}
.vc_tta-panels-container .td_block_9 .td-post-author-name{
display:none;
}
.vc_tta-panels-container .td_block_9 .td-post-date{
display:none;
}
with your helps, but now it looks like this on that block 9

could you please help tell how to make those big space like normal ones such as

thanks
-
This reply was modified 10 years by
AilyRoot.
Hello AilyRoot,
Please try the code below and place it in Theme panel->Custom CSS area.
The code is ->
.vc_tta-panels-container .td_block_9 .td_module_8 {
padding-bottom: 0;
margin-bottom: 0;
}
.vc_tta-panels-container .td_block_9 .td_module_wrap {
padding-bottom: 0!important;
}
.vc_tta-panels-container .td_block_9 .td-module-meta-info{
display:none;
}
The result -> http://screencast.com/t/E8zWWtxOa8
Thank you for the message!
