The last article should remain as large as it is.
Hello.
Add this
@media(min-width:767px){
.home #content .entry-featured {
max-width: 200px;
margin: 0 20px 20px 0;
float: left;
}
.home #content .entry-title {
text-align: left;
padding: 0;
}
}
To additional CSS.
Thank you. In the mobile version unfortunately nothing has changed.
And is it possible to leave the latest post large as it is and the older posts with a smaller image?
The image should be on the left and all the content (headline, categorie, date and text) on the right.
Hmm. I’m sorry but I don’t know. It works for me.
Hi @danielbeilfuss
Try this for mobile
@media(max-width:767px){
.home #content .entry-featured {
max-width: 200px;
margin: 0 20px 20px 0;
float: left;
}
.home #content .entry-title {
text-align: left;
padding: 0;
}
}
in your custom CSS box under Customize-▸Additional CSS
Let me know if this worked for you.
Thank you. Also, is it possible to leave the last article as large as it is right now and only start with the new layout from the second article?
Hi,
try this
@media(max-width:767px){
.home #content .col-sm-6 .entry-featured {
max-width: 200px;
margin: 0 20px 20px 0;
float: left;
}
.home #content .col-sm-6 .entry-title {
text-align: left;
padding: 0;
}
}
This will apply in mobile though