• Closed
  • Sam Wakefield
    Spectator
    August 16, 2016 at 12:12 pm #29793

    Hi there,

    I am trying to find the correct code to change the h3 padding (as shown in the screenshot below)

    Is there a way of centring the text in the h3 box?

    http://prnt.sc/c6ciwi

    Daniel Jones
    Spectator
    Posts: 148
    August 16, 2016 at 5:55 pm #29795

    Hi Sam,

    Thanks for contacting us.

    Kindly could you share with me the link to the page so that I can figure out the right custom CSS for you.

    Looking forward to your reply.

    Sam Wakefield
    Spectator
    Posts: 18
    August 17, 2016 at 1:34 pm #29825
    This reply has been marked as private.
    Daniel Jones
    Spectator
    Posts: 148
    August 17, 2016 at 1:51 pm #29826

    Hi Sam,

    Try out the following code:

    .entry-content h1 {
    text-align: center!important;
    }

    I hope that helps.

    Sam Wakefield
    Spectator
    Posts: 18
    August 17, 2016 at 2:31 pm #29829
    This reply has been marked as private.
    Sam Wakefield
    Spectator
    Posts: 18
    August 17, 2016 at 2:42 pm #29830
    This reply has been marked as private.
    Denzel Chia
    Moderator
    Posts: 2656
    August 18, 2016 at 7:05 am #29846

    Hi,

    You can try using relative positioning to move up your h1.
    Please use the following in Theme Options -> Custom CSS

    .page .entry-content h1 {
    position: relative;
    text-align: center !important;
    top: -30px !important;
    }

    Thank you.