Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #488080

    I know that there is a way to add a small little bar above the header but from a conversion metric this is very poor.

    Numbers need to be easy to see, larger and more visible like this one: http://allegradc.com/

    How do I add a number like that on Enfold, with the menu nicely below it?

    Many thanks

    #488081

    You can add this code to your style.css file (Appearance -> Editor)

    .phone-info {
    font-size: 25px; // adjust as needed
    }
    #488180

    Hey @steve55555,

    Did you try @Cyril’s suggestion and did you have any luck with it?

    Best regards,
    Rikard

    #488276

    Hi guys,

    The problem is it will just make the number in that horrible bar at the top bigger. I want it to be in line with the logo just above the right menu.

    #488535

    Hi,

    Ok, though I’m not sure what you mean by the right menu?

    Thanks,
    Rikard

    #488814

    right menu i mean as main menu – the menu right of the logo.

    Anyway, I’d really like some nice looking contact details like telephone number, email etc in the top right of the website header – parallel with the logo – not above it like the top bar option enfold has.

    #489337

    Hi,

    Ok, I think adding a widget area to the header would give you the most freedom design wise: http://kriesi.at/documentation/enfold/adding-a-widget-area-to-the-header/

    Thanks,
    Rikard

    #491947

    When i resize my screen to test responsiveness of the contact details, they become skewed and don’t fit well. Looks great on my screen now but will look bad on other peoples computers – how do i get this right?

    #492631

    Hi,

    Please try the following in Quick CSS under Enfold–>General Styling to align it better on smaller screens:

    @media only screen and (max-width: 1060px) {
    #header .widget {
        left: 50% !important;
        top: -20px !important;
        transform: translate(0%) !important;
    }
    }

    And you can use the following to control the header and paragraph text for smaller screens:

    @media only screen and (max-width: 1060px) {
    #header .widget h3 {
    font-size:14px !important;
    }
    }
    
    @media only screen and (max-width: 1060px) {
    #header .widget p {
    font-size:10px !important;
    }
    }

    Best regards,
    Rikard

    #492811

    Hi,

    Thanks for your time I appreciate your feedback and advice.

    Have you seen what this does on the mobile website? Is there a way of saying if it’s on a mobile then show widget header below logo?

    What do I need to do for laptops?

    Thanks

    #493469

    Hi!

    as Rikard already showed you need to work with media queries. For mobile use something like this:

    @media only screen and (max-width: 736px) {
    #header .widget h3 {
    font-size:10px !important;
    }
    #header .widget p {
    font-size:8px !important;
    }}
    

    Adjust as needed.

    Cheers!
    Andy

Viewing 11 posts - 1 through 11 (of 11 total)
  • You must be logged in to reply to this topic.