Page 1 of 1

Fix blog post image alignment with CSS

Posted: Tue Nov 29, 2022 12:33 pm
by KaiMartinsen
Hi.

I'm using the blog, with the style "thumbnail".

I have tried using CSS to align the image to the right instead of to the left,
but whatever I tried, it didn't work.

What is the appropriate way to put the image to the right of the text?
What can I do in CSS to fix it?

Image

Image

Thank you in advance.

Re: Fix blog post image alignment with CSS

Posted: Tue Nov 29, 2022 12:48 pm
by Pablo
Although I cannot teach you how to write custom CSS, you can try this:

Code: Select all

#Blog1 .blogthumb 
{
    float: right;
}

Re: Fix blog post image alignment with CSS

Posted: Tue Nov 29, 2022 2:08 pm
by KaiMartinsen
Thank you so much, Pablo! :D
It worked perfectly!

Image