Hey,
I see that you’ve added this css:
.homecontent * {
width: 640px;
margin-left: auto;
text-align: left !important;
margin-right: auto;
}
This sets a width to all screen sizes. It also stretches out your photos. I would suggest removing this.
Hannah
Thank, I was given that to make the text on my homepage sit in the centre/
Try using this instead:
.homecontent {
max-width: 640px;
margin-left: auto;
text-align: left;
margin-right: auto;
}
Hannah
will give that a go now, thank you very much 🙂
You are awesome that worked a treat, so the pesky !important, good to know!
Glad it worked! The width was actually your biggest issue because it was forcing everything to be 640px. Max-width is was you were looking for:)