Okay
  Public Ticket #1607795
Progress Bars
Closed

Comments

  • Alexanderm_Kehoe started the conversation

    The Progress bar percentage is not responsive, it does not scale to mobile viewports. It will overlap the text even. In our example a bar which is set to 45% will take up about 15% of the screen on mobile, not correctly going past the text. Is there any way to fix this?

  •  9,005
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box located in your Salient Options panel (All custom css provided is tested in the Live Browser so it will work as intended . If you cant see any changes make sure there is no red cross in the Custom CSS Box as that syntax error would cause all css below it to not show up on the Frontend):

    @media only screen and (max-width: 690px) {
        .nectar-progress-bar .bar-wrap, .nectar-progress-bar span {
            margin-top: 15px !important;
        }
    }

    Thanks


    ThemeNectar Support Team 

  • Alexanderm_Kehoe replied

    Hey Tahir,

    Don't believe that fixed it.

    You can check here on this link to see what I am talking about (the percentage numbers will overlap the text depending on the resolution used). 

    https://caveni.com/services/

  •  9,005
    Tahir replied

    Seems to be working on my end : http://prntscr.com/jvf35i .

    Please clear your cache using this guide: https://themenectar.ticksy.com/article/6226/ 

    Best.


    ThemeNectar Support Team 

  • Alexanderm_Kehoe replied

    Hey Tahir,

    Thank you for the fix. 

    Sorry for the late response, but though it is fixed on mobile it still has the same issue on desktop (when resolution is lowered). 

    Possible to have a similar CSS fix fort his as well?

    Thank you!

  •  9,005
    Tahir replied

    Add this into the Custom CSS box located in your Salient Options panel (All custom css provided is tested in the Live Browser so it will work as intended . If you cant see any changes make sure there is no red cross in the Custom CSS Box as that syntax error would cause all css below it to not show up on the Frontend):

    @media only screen and (max-width: 1025px) {
        .nectar-progress-bar .bar-wrap, .nectar-progress-bar span {
            margin-top: 15px !important;
        }
    }

    Thanks


    ThemeNectar Support Team