Home › Forums › CSS › Scaling image with text-indent replacement › Re: Scaling image with text-indent replacement
August 21, 2012 at 8:59 pm
#108302
Member
Actually, just solved it myself. I added:
.logo img {
float:right;
max-width:100%;
}
This makes the image leave the flow, while still forcing the heading text to exit the page. However if there is a better way to do this, please feel free to explain.