Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1188599

    Hi,

    I was able to add the phone number on top of the menu header, but it is showing up on the left and right side only. Can I add it to the middle, while changing the size of the font/colour and issue a call with ex: “a href=”tel: 123 456 7899”

    #1188935

    Hey Eugeniadms,

    https://share.getcloudapp.com/nOuNe7K4 You have inline styles added there, please remove.

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    #header_meta .phone-info {
      width: 50vw;
      margin: 0 auto;
      float: none;
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #1188983

    Thanks Victoria

    How can I change the size of the font to say 30? Is it possible to change that portion of the banner to a different colour as well?

    #1189166

    Hi,

    Please try this CSS to change the font size:

    .phone-info span {
      font-size: 30px; 
    }

    And this to change the background colour:

    #top .av_header_transparency #header_meta {
        background: red;
    }

    Best regards,
    Rikard

    #1189286

    Thanks Rikard,

    This worked well! Much appreciated!

    Is there away to make it sticky on mobile?

    • This reply was modified 4 years, 8 months ago by Eugeniadms.
    #1189970

    Hi Eugeniadms,

    Can you try adding this CSS code as well:

    @media only screen and (max-width:767px) {
      #top #wrap_all #header {
        position: fixed !important;
      }
    }

    Best regards,
    Nikko

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