Moving the 'Follow blog via email' link to the top of the page

  • Unknown's avatar

    Is anyone able to tell me how I can move my ‘Follow my blog via email’ link to the top right corner of my blog’s home page? The theme I am using is wu wei and it currently appears on the bottom of my page.

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

  • Unknown's avatar

    Hi there, the following moves the follow blog widget up and under the post/page title and meta data. The first two rules cover the main page and archive/category pages, the second two cover single post pages, and the third two cover regular static pages such as the about page.

    .home .center-column, .archive .center-column {
        position: relative;
    }
    
    .home #blog_subscription-2, .archive #blog_subscription-2 {
        position: absolute;
        top: 350px;
        width: 16em;
    }

    .single .center-column {
    position: relative;
    }

    .single #blog_subscription-2 {
    position: absolute;
    top: 350px;
    width: 16em;
    }

    .page .center-column {
    position: relative;
    }

    .page #blog_subscription-2 {
    position: absolute;
    top: 230px;
    width: 16em;
    }`

  • Unknown's avatar

    Sorry, got distracted and meant to mention that using position: absolute; to move it up means it does not move in relationship to other elements on the page, so if you have a post or page with a very long title, it might end up overlapping the title. Just something to keep in mind.

  • The topic ‘Moving the 'Follow blog via email' link to the top of the page’ is closed to new replies.