Options

Moving a banner around

CmauCmau Registered Users Posts: 60 Big grins
edited July 6, 2009 in SmugMug Support
Hi all,

I need some tips on how I can orient my banner vertically to match my navbar, and move it to the left of the page (similar style to to Andy's Demo page)

Thanks,
Craig
www.craigmaunderphoto.com

Comments

  • Options
    jfriendjfriend Registered Users Posts: 8,097 Major grins
    edited July 6, 2009
    To move your banner to the left edge, change this CSS:
    /* Sets up my main banner */
    #my_banner {
    width: 550px;
    height: 100px;
    margin: 0 auto;
    background: url(http://craigmaunderphoto.com/photos/578497099_Kyv26-O.png) no-repeat;    
    }
    
    to this:
    /* Sets up my main banner */
    #my_banner {
        width: 550px;
        height: 100px;
        background: url(http://craigmaunderphoto.com/photos/578497099_Kyv26-O.png) no-repeat;    
        _background:none;
        _filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true,sizingMethod=image,src='http://craigmaunderphoto.com/photos/578497099_Kyv26-O.png');
    }
    
    --John
    HomepagePopular
    JFriend's javascript customizationsSecrets for getting fast answers on Dgrin
    Always include a link to your site when posting a question
Sign In or Register to comment.