i use big grade 5 – style 3
i want remove author and data article from block
only show title
thanks
Hi omar ahmed,
If you want to show only title from block, it is neccesary to hide the meta info. Please try the code below and place it in Theme panel->Custom Css area.
.td-module-meta-info {
display:none;
}
If you want to hide this for a specific block, it is neccesary to find what kind of module uses that block and put it in your code, like this:
-example for block 1-use module_4
.td_module_4 .td-module-meta-info {
display:none;
}
Here, http://screencast.com/t/8VHoTm5bW you can see the list with modules and block
Hope this helps and let us know how it goes!
Thank you!
i make this but don’t any change and i want resize title this gig grade and change font color
i want keep title only and remove date and author
and change font and color title
Hello,
You can remove the author and date with the code Catalin gave you and you can make it more specific to your big grid:
.td_block_big_grid_5 .td-module-meta-info{
display:none
}
result: http://screencast.com/t/5JFjDD1bncuL
If you want to hide the author and date accross the whole site you can disable them from here: http://screencast.com/t/zZCyr6c0
As for your background color, you can use this css:
.td_block_big_grid_5 h3{
background-color:black
}
Thank you!