how to adjust distance between these?

Posted in: Newspaper
Post count: 156

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!

Post count: 7909

Hi,

I have checked your page and it seems that you have altered the default code – http://screencast.com/t/vYWLb4IRMDdM

Thanks!

Post count: 156

Hello

thanks for reply, I manage to know how to fix previous issue, but not able to fix this one

could you please shed some light?

thanks

Post count: 22421

Hi,
That widget seems to come from the flexslider plugin and has a 60 px bottom margin. You can use this css to reduce it:
.flexslider{
margin: 0px 0 15px!important;
}

Thanks.

Post count: 156

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.
Post count: 23312

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!

Post count: 156

Hello

thanks again, we do only want to apply for that tab, may I ask that how to “disappear ” author and time too?

many thanks

Post count: 33

To remove author and time:
Theme panel>>>Post Settings>>>>Post and custom post types

Post count: 156

Hi

I meant to follow this

.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;
}

if we want to remove author and date further, how to do?

Post count: 156

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.
Post count: 23312

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!

Post count: 156

thanks, it works

Viewing 12 posts - 1 through 12 (of 12 total)
The forum ‘Newspaper’ is closed to new topics and replies.