Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #440044

    Hi

    I have added an icon to the phone number above the header. I would like to change the line height to 18px.

    I current have this:
    <span class=”custom-text”>REQUEST FREE CONSULTATION </span><span class=”custom-number”>[av_font_icon icon='ue799' font='mobile2' style='' caption='' link='' linktarget='' size='28px' position='left' color=' #00b395'][/av_font_icon] 619.237.3490</span>

    Also, can i add text above the phone number. eg. REQUEST FREE CONSULTATION (in small text above number rather than at side)

    Appreciate your help,
    Mike

    • This topic was modified 9 years, 6 months ago by brooks.
    #440633

    Hi cannan!

    It looks like your trying to align it with the phone number. Add this to your custom CSS.

    .custom-number .av_font_icon {
      position: relative;
      top: -5px !important;
    }

    Regards,
    Elliott

    #440640
    This reply has been marked as private.
    #441167

    Hi!

    Hmm, maybe this?

    #header_main { top: -20px; }
    

    You can change the header size in Dashboard > Enfold > Header. Other than that take a screenshot and highlight exactly what your trying to do so we can get a better idea.

    Best regards,
    Elliott

    #441234
    This reply has been marked as private.
    #441408

    Hey!

    Please provide a screenshot of the header layout that you want. Try to change the position property to absolute:

    .phone-info {
      position: absolute;
      right: 50px;
      top: 5px;
    }

    Regards,
    Ismael

    #441726
    This reply has been marked as private.
    #442419

    Hi!

    Please add following code to Quick CSS as well

    @media only screen and (max-width: 669px) {
    .phone-info {
      left: 40px !important;
      top: 0 !important;
    }}

    Cheers!
    Yigit

    #443262

    Thanks Yigit!

    Is there any way to stop displaying small bar above main menu?

    #443284

    Hey!

    If you are talking about WordPress bar, it would not be visible to your visitors.

    Regards,
    Yigit

    #443295

    Hi

    No, im talking about the secondary menu bar (#header_meta) where the phone number and social icons can be displayed.

    Thanks for your help,
    Mike

    #443299

    Hi!

    Since it is set to transparent, it is currently not visible. If you remove it phone number will be deleted as well. You can add following code to Quick CSS to decrease the space from the top

    #header_meta {
      margin-top: -10px;
    }

    Regards,
    Yigit

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