Okay
  Public Ticket #1806682
Logo on different screens
Closed

Comments

  • fromsaru started the conversation

    Hi,

    Great theme.


    How do I change the logo size for desktop and mobile independently?


    Is it possible to add text to the header of the default theme or is it only possible on the portfolio theme? Please check out the website for reference. I want to add a paragraph of text ether under the R logo or under the menu. 



  •  291
    Paul replied

    Hi there!

    For your questions:

    1. You would need to use CSS media queries to control it. For example:

    @media only screen and (max-width: 1150px) {
        .logo-image {
            max-width: 200px;
        }
    }
    

    The code will set the maximum width for the logo image to be 200px when displaying on any resolutions below 1150px. For more info about media queries, please see: https://www.w3schools.com/css/css_rwd_mediaqueries.asp

    2. If you want to show a tagline under the logo, please open the Site Identity in the customizer and enter your tagline there. It should then display on the front-end.

    If you want to add some text under the menu, in the same Site Identity section, you can use the Copyright Text box there.

    Regards,
    Paul