Remove Excerpt from Homepage?

Posted in: Newspaper
Post count: 4

I would like to remove the excerpt and Read More from the main Block 24 set on my homepage.(If at all possible, only on desktop)

http://www.paintorthread.com

I’ve guessed adding this to Theme Panel – CSS, but no change

.td_block_23 .td_module_23 .td-excerpt,
.td_block_23 .td_module_23 .td-read-more {
display: none;
}

Post count: 23312

Hello marketing20,

You should use the following code if you want to hide the Excerpts and Read More button for block 23.

The code is ->

.td_block_23 .td_module_18 .td-excerpt{
display:none;
}
.td_block_23 .td_module_18 .td-read-more{
display:none;
}

The result is here -> https://www.screencast.com/t/1JKjQju7keJZ

Also, if you want that code to be applied only to desktop version you should place the code in Advanced CSS in the desktop area, like this -> https://www.screencast.com/t/Ij0rMi3kLEQ8

Thanks for the message!

Post count: 4

Thank you.

How would I remove the Read More from module 11? Or change the color to #000000, without changing yellow as the accent color chosen in Theme Colors?

Post count: 23312

Hello marketing20,

Try using the code below and place it in Theme panel -> Custom CSS area.

The code is ->

.td_module_11 .td-read-more a{
background-color: red;
}

Thanks.

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