Hello,
I customized 2 years ago the feature image on my posts to float left with 30px margin top.
Today, i published a new post, and the feature image of all my posts moved up on mobile screen and i modified again the margin top to 20px to fit the image in place.
My URL is https://tarekrabaa.com using PRO theme.
The custom CSS i am using is
.entry-thumb img { float: left; min-width: auto; margin: 0 auto; display:block; } .entry-thumb { background-color:transparent; float:left; width:50% } .single-post .entry-thumb { background-color:transparent; float:left; width:50% } @media (max-width:768px) { .entry-thumb { float:left; width: 100%; margin-top: 20px; } }@media (min-width: 980px) { .archive .entry-thumb { float: left; width: 50%; margin-top: 20px; } } @media (min-width: 768px) { .entry-thumb { float: left; width: 50%; margin-top: 20px; } }
I have worries that with new post, the feature image will shift again.
After i changed the top margin to 20px, the feature image on category https://tarekrabaa.com/opinion/ has shifted up 10 px instead of being aligned with the text content.
Would u please help.