• I would like to move this image: to the right and a slightly down.

    Can someone tell me where to go to adjust these parameters?

    Where will I find the parameters?

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • If you only want to change that image on that page, add this to WordPress’s “Additional CSS” feature:

    .page-id-364 .mission-area img {
        margin-top: 3em;
        float: right;
    }

    You may need to adjust the 3em, but it looks good on my end.

    Thread Starter jjas7

    (@jjas7)

    @kjodle

    Thank you! Is it possible to move the image about an inch to the left?

    Try this code instead:

    .page-id-364 .mission-area img {
        margin-top: 8em;
        float: right;
        margin-right: 7em;
    }

    7em looked like an inch on my browser; keep in mind it may look different on different sized monitors.

    Keep in mind that adjusting margins like that may play havoc with this image on mobile devices. You would need to declare some additional code with media queries to prevent it looking wonky on a phone or table.

    Thread Starter jjas7

    (@jjas7)

    Thank you, @kjodle!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Image placement’ is closed to new replies.