• Resolved lost_and_confused

    (@lost_and_confused)


    I don’t know how to get the text to wrap around the image when the image is aligned right or left. I tried looking at the stylesheet, but it’s written differently from what I’m used to. Here is the link to the stylesheet: https://pastebin.com/f68aee3a3

    Just in case, here is a link to my site: https://www.audreydao.com/

    you can see in some posts I have the image aligned left and the text doesn’t wrap around it. Any help would be appreciated ??

Viewing 4 replies - 1 through 4 (of 4 total)
  • Try adding:

    .aligncenter {
    	display: block;
    	margin-left: auto;
    	margin-right: auto;
    }
    
    .alignleft {
    	float: left;
    }
    
    .alignright {
    	float: right;
    }

    to the bottom of style.css.

    Thread Starter lost_and_confused

    (@lost_and_confused)

    No…that didn’t work. It didn’t do anything. At least I didn’t notice anything different

    Remember to press CTRL and F5 simultaneously when viewing an updated page/site. Or try emptying your browser cache. This should ensure that your web browser fetches a fresh copy of the page rather than serving up an out-dated copy from your own cache.

    Thread Starter lost_and_confused

    (@lost_and_confused)

    THANK YOU!!! It works! I didn’t realize I had to press ctrl and F5. Thank you thank you thank you!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Text Won’t Wrap Around Image’ is closed to new replies.