Is it possible to change the size of the images on the portfolio site?
- The topic ‘Is it possible to change the size of the images on the portfolio site?’ is closed to new replies.
Need help? Check out our Support site, then
Is it possible to make them a little bit smaller (so that they aren’t scaled to the whole width)?
The blog I need help with is: (visible only to logged in users)
Hi there,
I’ so sorry for replying so late. Yes, you can do this with the following custom CSS:
@media screen and (min-width: 1260px) {
.entry-thumbnail {
max-width: 960px;
}
}
960px is the default size, so you would need to change this value to your own.
Best, Ellen