How can I edit spacing of text in my wordpress theme?

  • Unknown's avatar

    I have this header text:

    Ramya and Apoor, 7 degrees, Laguna Beach, CA

    I want it to appear like this:
    Ramya and Apoor
    7 Degrees
    Laguna Beach, CA

    How can I do that?

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi Samta,

    You can do this if you edit CSS. Can you please go to Appearance → Customize → CSS and add the following:

    @media (min-width: 600px) {
    #post-187 h1.entry-title {
    	width: 600px;
    	position: absolute;
            top: 50%;
           left: 50%;
           margin-right: -50%;
           transform: translate(-50%, -50%);
    	}
    }

    Let me know if you have any questions with this!

  • The topic ‘How can I edit spacing of text in my wordpress theme?’ is closed to new replies.