• Resolved snpbizjak

    (@snpbizjak)


    Where can the colors of the About us section, feature percentage circle, change? It is black by default, I’d like white…

Viewing 8 replies - 1 through 8 (of 8 total)
  • MariusG

    (@marius_codeinwp)

    Hello,

    Unfortunately they are hard coded and cannot be changed, at least not without manually editing the theme’s files.
    I believe it’s one of the JS files that creates the ratings.

    Kind regards,
    Marius

    Thread Starter snpbizjak

    (@snpbizjak)

    I couldn’t find the right entries in the js/jquery.knob.js, is that the right place?

    MariusG

    (@marius_codeinwp)

    I think so. Unfortunately we do not offer this kind of support to make this changes, I have given you about as much information as I could, you will have to figure this our yourself.

    Kind regards,
    Marius

    No – it’s in zerif.js

    jQuery(".skill1").knob({
    
                    'max':100,
    
                    'width': 64,
    
                    'readOnly':true,
    
                    'inputColor':' #000000 ',
    
                    'bgColor':' #222222 ',
    
                    'fgColor':' #cab7a6 '
    
                    });

    Where BG color is the off color and fgColor is the color of the knob.

    Note the listed js above is ONLY for knob1 which is the first of the four circles (knobs). You will need to push the hex color parameter to the other knobs (2, 3, 4) as well if you want the background consistent on all of them.

    How Can I please make the cercle display without showing the value?

    Alexandra

    (@alexandrastan001)

    Hello,

    Unfortunately, the theme doesn’t support this customization and, as much as I would love to help with some custom code, this is beyond the support offered for our products, which consists of bug fixing and theme documentation.

    Best regards,
    Alexandra

    Hello,
    To make the circles display without showing the value, enter the following code in a custom css plugin:

    .skill1 {
    color:transparent !important;
    }
    .skill2 {
    color:transparent !important;
    }
    .skill3 {
    color:transparent !important;
    }
    .skill4 {
    color:transparent !important;
    }

    Regards,
    Peggy

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Color of the feature percentage in the About us section’ is closed to new replies.