Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #85045
    yogawithagnes
    Participant

    Hi,

    I’m trying to align my logo and the header + subtitle text so that the header is either lined up with the bottom or middle of the logo.

    See here: http://yogawithagnes.com/

    Thanks!

    #85070
    Mahesh
    Keymaster

    Hi @yogawithagnes,

    For aligning logo and header+subtitle text to the middle of logo, go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS.

    @media screen and (min-width: 991px ) {
        #site-header {
            margin-top: 35px;
        }
    }

    Regards,
    Mahesh

    #85132
    yogawithagnes
    Participant

    AWESOME, thanks much Mahesh, it worked perfectly 😀

    #85281
    giuliog
    Member

    Hello

    I am trying to align the logo with the title of the website. I tried different CSS without success. Any tips?

    Thanks

    http://s611122501.websitehome.co.uk/

    Giulio

    #85386
    Mahesh
    Keymaster

    Hi giuliog,

    Seems you are using Catch Everest and you’ve posted the issue for support in Clean Journal. The support thread is categorized by theme to make it simple and easy for both developers and the users. Please post the support issue under related theme.
    Go to “Dashboard=> Appearance=> Theme Options=> Custom CSS” box and add the following CSS.

    @media screen and (min-width: 768px) { 
        #hgroup.with-logo{
           margin-top: 15px;
        }
    }
    
    @media screen and (max-width: 767px) { 
        #site-logo {
            display: inline-block;
            float: none;
            text-align: center;
        }
        #hgroup.with-logo {
            float: none;
            margin-top: 0;
            padding-top: 5px;
        }
    }
    #85398
    giuliog
    Member

    Dear Mahesh,

    Very sorry for posting in the wrong place. I will be more careful in future.

    Thank you so much for the tips.

    Best

    Giulio

    #85442
    Mahesh
    Keymaster

    Hi @giuliog,

    Thank you for your appreciation.
    Have a nice day!

    Regards,
    Mahesh

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Logo and header text alignment’ is closed to new replies.