Site logo

Archived topic

Customizing and making category articles fully clickable

5 replies · Started by William on February 25, 2021

Viewing posts 1–6 of 6

Hi there,

On a category page such as this, is it possible to reduce the padding of the articles (so they appear more 'listy') and make the whole box for each article clickable?

Kind regards,

Will

Hi there,

try adding this CSS:

.entry-title a:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

That's brilliant thank you - is there a good way to reduce the padding so it seems more a list and less white space?

Try this:

.post .entry-summary,
.post .entry-meta {
  margin-top: 0;
}

Thanks very much!

You're welcome

This archived topic is closed to new replies.