• trollaglong

    (@trollaglong)


    Hello there,
    I really like the Forever theme, it’s just what I imagined for my new blog. I was just wondering whether there was a way to make the title appear ON the header image, not below? Thanks for the help!

Viewing 1 replies (of 1 total)
  • If not already yet, create a child theme.
    http://codex.wordpress.org/Child_Themes

    Once setup and activated properly, put this just under the @import line in style.css of child theme.

    #site-title {
    	margin-bottom: -99px;
    	position: relative;
    	top: 80px;
    }

    Adjust the value of top: from 80px to fit yours ( depending on the height of your header image ).

    In case that you’re not gonna make any other changes to your theme at all in the future, you could use one of those Custom CSS plugin, instead of using child theme.
    http://wordpress.org/extend/plugins/search.php?q=custom+css

Viewing 1 replies (of 1 total)

The topic ‘Title on header image – possible?’ is closed to new replies.