Site tagline not displaying

Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #18350
    gregeva
    Member

    OK, my third question for the day…

    I have it set to display the sites tagline, however it does not.

    This works perfectly with one of the default themes, however it disappears when I switch over to the Extinct theme.

    I understand that there may be a theme update or something of that nature from another post, however they are marked private so I was unable to resolve myself.

    Regards,

    Greg

    #18372
    Veena
    Moderator

    Pls modify line no:152 in file framework/functions/utility-functions.php to-

     $display_desc = true;
    

    and also change line no: 154 from –

     echo '
    ' . bloginfo('description') . '
    ';

    To

    echo '
    '; bloginfo('description'); echo '
    ';

    Hope this helps.

    #18389
    gregeva
    Member

    OK – I have done that and the tagline/description is now showing up.

    It is however touching the top of the page, so doesn’t appear to have any CSS orienting it relative to the text logo. How can I fix/adjust this?

    Thanks for your help!

    #18396
    Veena
    Moderator

    Pls share a link to your site.

    #18520
    gregeva
    Member
    This reply has been marked as private.
    #18536
    Veena
    Moderator

    Pls use the below custom CSS in themeoptions –

    #site-description {
        position: relative;
        top: 25px;
    }
    
    #18578
    gregeva
    Member

    When increased to about 30-35px this workaround seems to do the trick on a higher resolution view port, however it shifts the site description quite low and into the page content when view on smaller screens.

    The responsive capabilities of this theme are a large reason why I chose it, so I am looking for solutions which will work appropriately on the full range of screen sizes.

    #18587
    Veena
    Moderator

    You can use the below custom CSS in themeoptions –

    @media only screen and (max-width: 767px){
    #site-description {
        top: 10px;
    }}
    
    #18710
    gregeva
    Member

    This works… thank you.

    However having worked more with the theme and the HTML/CSS, I have found that this layout/spacing issue runs much deeper than just the site description (I will post some questions in a new thread).

Viewing 9 posts - 1 through 9 (of 9 total)
  • The topic ‘Site tagline not displaying’ is closed to new replies.