• Closed
  • Sam Wakefield
    Spectator
    16.08.2016 at 12:12 #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
    16.08.2016 at 17:55 #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
    17.08.2016 at 13:34 #29825
    This reply has been marked as private.
    Daniel Jones
    Spectator
    Posts: 148
    17.08.2016 at 13:51 #29826

    Hi Sam,

    Try out the following code:

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

    I hope that helps.

    Sam Wakefield
    Spectator
    Posts: 18
    17.08.2016 at 14:31 #29829
    This reply has been marked as private.
    Sam Wakefield
    Spectator
    Posts: 18
    17.08.2016 at 14:42 #29830
    This reply has been marked as private.
    Denzel Chia
    Moderator
    Posts: 2656
    18.08.2016 at 07:05 #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.