Important notice: we will respond to all open ticket requests up until November the 1st. After this date, we will be unable to process the ticket requests here on Ticksy.

Okay
  Public Ticket #1906434
Site Title doesn't show on site.
Closed

Comments

  • rjaret started the conversation

    I would like the 'Site Title' to show at the top of my site, instead of a logo. I know how to hide the logo, but the Site Title still does not show. Is there a straight forward way to do this?

    Thank you,

    Rob

  •  1,845
    Elated replied

    Hello,

    Please note that you can enable /disable some theme options globally in Theme Options (Header, General, Footer...) or for some specific page within Elated (Header, Footer, General..) page settings.

    5659387802.png

    7024960618.png

    - In order to achieve a Transparent Header layout, you need to navigate to Theme Options > Header and set these two options:
    - Background color > (any color, but it's required)
    - Background transparency > set to 0

    2823967165.png

    Also note that these are Global Options. And each page these same options from above, and if set on the page, it will override Global Options..

    So you need to go to Dashboard > Pages > find and Edit single page >  scroll towards the bottom > check if these two options are set already.

    If the problem sill persists please provide me with your site url + wp-admin credentials so I can take a closer look.

    For any other issue you are facing please feel free to ask us and we will assist you as soon as possible. I will give my best to help you building your site.

    Thanks & Regards,
    Vladimir


    The Elated Support Center has been moved to our centralized support platform. 

    Please note that any existing tickets prior to this change will be answered right here on Ticksy, and in due time. 

    If you wish to submit a new support request, for all new inquiries please head on to our Help Center.

    Elated Themes is part of Qode Interactive – the home of 300+ premium WordPress themes.

    Don’t forget to sign up for our newsletter and be the first to find out all the latest news.

  • rjaret replied

    Thank you for your response.

    This isn't quite what I was intending to ask. (BTW, in your text you refer to the header (which is what I'm asking about), but your screen shots show the Title area.) 

    What I'd like to do is similar to Ticket #1874715, except instead of having some generic text replace the logo, I'm asking if the Site Title (from the Customizing->Site Identity screen) could show in place of the logo when the logo is hidden. Other themes I've used behave this way, or give you explicit options to display the logo, the Site Title or both.

    I've gone ahead and used the css solution you suggested in response to #1874715. This would be nice functionality to add though, perhaps with some font/design choices.

    Thanks again,

    Rob

  •  1,845
    Elated replied

    Hello,

    Unfortunately, there is no predefined option to use text instead of image within logo area, but as you've already mentioned you can try to achieve it by using some custom css.

    @media only screen and (max-width: 1024px) {
    .eltdf-mobile-header .eltdf-mobile-logo-wrapper:after {
        content: "Vladimir";
        font-size: 22px;
        font-family: Poppins,sans-serif;
        font-weight: bold;
        line-height: 1.928em;
        text-adlign: center;
    }
    .eltdf-mobile-header .eltdf-mobile-logo-wrapper a {
        display:none;
    }
    }
    @media only screen and (min-width: 1025px) {
    .eltdf-page-header .eltdf-menu-area .eltdf-logo-wrapper:after {
        content: "Vladimir";
        font-size: 45px;
        font-family: Poppins,sans-serif;
        font-weight: bold;
        line-height: 1.928em;
    }
    .eltdf-page-header .eltdf-menu-area .eltdf-logo-wrapper a {
        display: none;
    }
    }

    I'll add this to our dev list for potential new features and suggestions.

    For any other issue you are facing please feel free to ask us and we will assist you as soon as possible. I will give my best to help you building your site.

    Thanks & Regards, 
    Vladimir


    The Elated Support Center has been moved to our centralized support platform. 

    Please note that any existing tickets prior to this change will be answered right here on Ticksy, and in due time. 

    If you wish to submit a new support request, for all new inquiries please head on to our Help Center.

    Elated Themes is part of Qode Interactive – the home of 300+ premium WordPress themes.

    Don’t forget to sign up for our newsletter and be the first to find out all the latest news.