Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #182430
    Cork
    Participant

    Hello,

    I like the scroll up option on the front page. How do I get the continuous scroll’s .entry-header .entry title text to move from the right center to the top center, so that it is not lost in images.

    Thanks

    #182494
    Skandha
    Participant

    @captncork: Hello there,
    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    .section .entry-content-wrapper .entry-header {
        max-width: none;
        text-align: center;
    }
    #fullpage .entry-container {
    	max-width: unset;
    }

    Let me know if this works out!
    Kind Regards,
    Skandha

    #182767
    Cork
    Participant

    Thanks. That moves the text to the center. I want to move it to the top right of the screen. How do I do that?

    #184358
    Skandha
    Participant

    @captncork: Hello there,
    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    @media screen and (min-width: 434px) {
    	#fullpage article .entry-content-wrapper {
    		position: absolute;
    		top: 63px;
    		right: 0px;
    	}
    }

    Let me know if this works out!
    Kind Regards,
    Skandha

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Move text to top right’ is closed to new replies.