Viewing 6 replies - 1 through 6 (of 6 total)
  • You can do it by modifying your CSS either by adding this rule declaration to your child theme or to your themes custom CSS at WordPress dashboard Appearance -> Theme Options -> Styles CSS ??

    this will put it to middle

    #logo {
    padding-left: 36%;
    }

    this will put the logo to right

    #logo {
    float: right;
    }

    Also, I will add that this is “Shell Lite” support forum.
    From what I saw you are using Responsive theme, so you can ask your questions here

    Regards

    Thread Starter pranaman

    (@pranaman)

    designbyjesseR, actually, I wanted the “featured image” centered. Thanks, but that moved my header over.

    metodiew – sorry, I meant to say https://www.mynewhealingsite.com/sofia/. Yes, https://www.mynewhealingsite.com uses Responsive. Still trying to figure that ont out!

    It depends on what do you want to achieve. You can swap places of featured text (and button, noticed you have hide it) and the featured images, or to remove text and to center the image.
    Basically you have to edit front-page.php and style.css files. I can give you guidelines, but you have to change the code.

    Also, make sure you will use Child theme if you are making any changes:
    https://premiumwpsupport.com/forums/topic/use-child-theme-for-theme-customizations/

    Cheers

    Thread Starter pranaman

    (@pranaman)

    Hi, I still would like to move the photo of the Asian woman on https://www.mynewhealingsite.com/sofia to the right.

    Been searching, don’t see anything that tells one how to move the location of the the featured image.

    What file contains the location or, I am guessing, a grid of how the page is laid out?

    I’ve read how to resize it, but how can I move it?

    Thank you

    Ok, I’ll try to give you direction, but this required some coding knowledge:
    In your front-page.php you have this line around line 37:

    <div class="grid col-460">

    This is opening div for featured image and closing div around line 45:

    </div><!-- end of .col-460 -->

    Below that you have another opening div tag:

    <div class="grid col-460 fit">

    which is closed in line ~103:

    </div><!-- end of .col-460 fit -->

    What you have to do is to swap those two divs and image and text should be change their places. Once again, you should use child theme for this changes, because changes will be go after updating the theme.

    Good luck with that ??

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Moving Picture to Center, Right’ is closed to new replies.