• Hi,

    I need to change the margin associated with <P> in Atalhualpa 3.73

    Added margin-left: 50px;} to html/css inserts but with no luck.

    Been using <p style=”padding-left: 30px;”> for each paragraph as a short term fix.

    See:https://www.mas-saurine.com/the-mas-and-surrounds/
    First paragraph just using <p>

    Totally lost here. Can anyone help please.

    Thanks

    Robx

Viewing 2 replies - 1 through 2 (of 2 total)
  • If you use the following then it generates your left hand margin for the text, but also shift your header image to the right:

    .post-bodycopy {
        display: block;
        margin: 1em 0 0 3em;
    }

    If you then add the following it resets your header image into position :

    .post img {
         display: block;
         margin: -3em;
    }

    Then you just need to remove your <p style=”padding-left: 30px;”>

    Thread Starter RobX

    (@robx)

    Perfect solution, many thanks for a rapid reply.

    Robx

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Atahualpa change margin for’ is closed to new replies.