moving text on the home page

  • Unknown's avatar

    i need some help to moving the home page texts around so fit and look better and also the title of the page if can be one line with large fonts?
    thank you

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

  • Unknown's avatar

    Hi there, on the text over the image at the top, what I might suggest would be to darken up the text shadow and adjust it a bit so that things are more readable. Add this to your custom CSS and see what you think.

    .hero-image .hero {
        text-shadow: 1px 1px 2px rgba(0,0,0,1);
    }

    For the site title at top right, we can narrow the navigation div a bit and widen the site title div with the following.

    @media screen and (min-width: 1020px) {
    	.site-branding {
    		max-width: 444px;
    		width: 100%;
    	}
    	.main-navigation {
    		max-width: 460px;
    		width: 100%;
    	}
    }

    I see you have already increased the size of the site title. I tried increasing it a bit more, but the title quickly goes back to two lines. About the largest you can go with the title is 2.2em.

  • The topic ‘moving text on the home page’ is closed to new replies.