Help with logo and branding

Home Forums Jevelin Theme Help with logo and branding

Home Forums Jevelin Theme Help with logo and branding

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
  • lifestylegr
    Participant

    Hi SH people!

     

    Please see attached screen grab of my web page.  I’ve marked two boxes.

     

    In the first, I have put my company icon but it looks pretty rubbish.  How do I sort this ?

     

    In the second, I want my company name to appear.  I can’t find anywhere how to put it in this position

     

    Please advise, thanks y’all

     

    Attachments:
    You must be logged in to view attached files.

    Hi @lifestylegr,

     

    I hope you are well today and thank you for your questions.

     

    In the first, I have put my company icon but it looks pretty rubbish.  How do I sort this ?

     

    Do you wan to change its size?

     

    Could you please share me your site URL where it’s displaying so that i can help you to achieve it?

    In the second, I want my company name to appear.  I can’t find anywhere how to put it in this position

    You have to develop custom code to achieve this.

     

    Best regards,
    Shufflehound team

    lifestylegr
    Participant

    thank you.

     

    http://www.lifestylegardenrooms.com

     

    Very disappointing to be told that something as basic and obviously needed as adding a company name to a website needs development!

     

    I have done everything else with no tech knowledge thanks to an otherwise fabulous theme 🙁

    In the first, I have put my company icon but it looks pretty rubbish.  How do I sort this ?

    You can change its size to display it more attractive by adding the following CSS code in the Custom CSS code option of your theme on the below path.

     

    Admin Area -> Appearance -> Theme Settings -> Custom Code -> CSS Code

     

    #page-container .header-logo img {
        height: auto;
        max-height: 100%;
    }

     

    Very disappointing to be told that something as basic and obviously needed as adding a company name to a website needs development!

    We will implement this feature in the future version of theme.

    In the meanwhile you can use below CSS code to achieve it.

    #page-container .header-logo:after{
        content: "Lifestyle Garden Rooms";
        display: block;
        float: left;
        margin: 25px 0 0 15px;
    }
    
    .header-logo-container {
        float: left;
    }

    lifestylegr
    Participant

    Thank you.  Now that IS support !  Sorry for my rant!

    lifestylegr
    Participant

    Sorry but seeing as you are so helpful, please can you give me the CSS so I can make it appear as follows:

     

    ‘Lifestyle’ in rgb(84,38,38)

    ‘Garden Rooms’ in rgb(127,197,39)

     

    both in 20px for desktop and 10px for mobile

     

    I know I am pushing it but for a skilled person like you, it won’t take long 😉

    You can achieve this by apply any one color on them using below custom CSS code.

     

    #page-container .header-logo:after{
        color: rgb(84,38,38);
    }
    
    @media (min-width: 1025px){
    #page-container .header-logo:after{
        font-size: 20px;
        margin-top: 5px;
    }
    }
    @media (max-width: 1025px){
    #page-container .header-logo:after{
        font-size: 10px;
            margin-top: 5px;
    }
    }

    We have added a new option to display site title in the header under Theme Settings > Header > Logo Title in the following latest version of theme so please update your theme version to below latest version.

     


    Please login to access this file

Viewing 8 posts - 1 through 8 (of 8 total)