Baskerville Logo position

  • Unknown's avatar

    Hello, I need to change the location of my logo.
    I thing aligned left and towards the bottom it would look nice (as well as the tagline)
    I added some css but it doesn’t work

    I tried with:
    .site logo { (or header logo)
    width: 100%;
    left:10%;
    margin-top:250px;
    }

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

  • Unknown's avatar

    Hi, let’s give this a try and see what you think. Modify your .header rule and add the top and bottom padding declarations so it looks like this

    .header {
        height: 450px;
        padding-bottom: 40px;
        padding-top: 110px;
    }

    and then add a text-align: left; declaration to your .site-description rule like this

    .site-description {
        color: #fff;
        text-align: left;
    }

    and then add this additional rule.

    .section-inner {
        bottom: -70px;
        text-align: left;
    }
  • The topic ‘Baskerville Logo position’ is closed to new replies.