Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1317888
    minyona
    Participant

    I would like the phone number wrapped in a p tag and made bold and larger. Help?

    #1317889
    minyona
    Participant
    This reply has been marked as private.
    #1318187
    Nico
    Moderator

    Hi There,

    Thanks for writing in.

    .x-topbar .p-info a{
        font-size: 20px;
        font-weight: bold;
    }

    Change the numbers and the CSS to achieve the best result you want.

    Hope it helps.

    Let us know how it goes.

    Thanks.

    #1318308
    minyona
    Participant

    It works when in customizer, but not when exiting: https://cl.ly/3a0V400Q3O1C

    #1318457
    Paul R
    Moderator

    Hi,

    You forgot to close your @media code.

    Please change this

    
    /*nav break point*/
    @media only screen and (max-width: 1185px) {
    .x-nav-wrap.desktop {
      display: none;
    }
    .x-btn-navbar {
      display: block;
      margin: 20px auto 20px;
      width: 50px;
    }
    .x-nav-wrap.mobile.in {
      display: block !important;
    }
    
    /*topbar styling phone*/
    .x-topbar .p-info a {
        font-size: 16px;
        font-weight: bold;
    }
    

    to this

    
    /*nav break point*/
    @media only screen and (max-width: 1185px) {
    .x-nav-wrap.desktop {
      display: none;
    }
    .x-btn-navbar {
      display: block;
      margin: 20px auto 20px;
      width: 50px;
    }
    .x-nav-wrap.mobile.in {
      display: block !important;
    }
    }  /* <- you missed this bracket */
    
    /* topbar styling phone */
    .x-topbar .p-info a {
        font-size: 16px;
        font-weight: bold;
    }
    

    Hope that helps.

    #1318919
    minyona
    Participant

    Thank you =)

    #1319016
    Prasant Rai
    Moderator

    You are most welcome. 🙂

  • <script> jQuery(function($){ $("#no-reply-1317888 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>