• Resolved kristincali

    (@kristincali)


    Hello. I hope this is the right place to post this. I am trying to align my header logo to the very left with 0 margin/padding. I’ve tried writing the code myself but can’t seem to get it right.

    When I right-click to inspect my website I found the code where the changes need to be made:

    <div class="wp-block-group alignfull is-layout-flow wp-block-group-is-layout-flow" style="border-bottom-width:2px;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px">

    So I edit it to this:

    <div class="wp-block-group alignfull is-layout-flow wp-block-group-is-layout-flow" style="border-bottom-width:2px;padding-top:24px;padding-right:804px;padding-bottom:24px;padding-left:0px">

    That does exactly what I want it to do in the preview but now I can’t figure out how to convert that html into the css code I need for wordpress.

    • This topic was modified 5 months, 2 weeks ago by kristincali.

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

Viewing 1 replies (of 1 total)
  • Thread Starter kristincali

    (@kristincali)

    Fixed my own issue after about 4 hours! Posting the code here in case it helps anybody else…

    div.alignfull {
    padding-left: 0px !important;
    margin-left: 0px !important;
    }
Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.