• Resolved sheridanhes

    (@sheridanhes)


    I want to remove the circles and the skill count titles entirely, how do I go about doing this in the CSS?

Viewing 9 replies - 1 through 9 (of 9 total)
  • Hey there sheridanhes,

    How are you doing today?

    I’ve quickly checked the theme on my end but wasn’t really sure which part you’re referring to, would you mind posting link to your site and let me know which part you want to remove and I’ll be happy to try to help out with providing some CSS for that ??

    Cheers,
    Bojan

    Thread Starter sheridanhes

    (@sheridanhes)

    Hi, I’m good thanks!

    My website link its https://victorianstudentnurses.com.au

    The bit I’m referring to is under the title Victorian Student Nurses, on the dark blue background. On the right there are circles with numbers in them that have “Skill #1” “Skill#2” and so on next to them. I want to get rid of them!

    Thanks so much!

    Hey again sheridanhes,

    To remove those please try adding the following CSS code in the style.css file of your child theme or add it in your site using the following plugin:

    https://www.ads-software.com/plugins/simple-custom-css

    .skills .skill .skill-count, .skills .skill {
      display: none;
    }

    This will create a gap where those circles were so in case you want to expand the other two columns to occupy that space you can try adding this as well:

    #aboutus .col-lg-4.col-md-4.column {
      width: 50%;
    }

    In case the code doesn’t work please keep it added and let me know so I can take a look.

    Hope this helps ??

    Cheers,
    Bojan

    Thread Starter sheridanhes

    (@sheridanhes)

    This worked perfectly, thanks so much!

    Glad I could help ??

    Cheers,
    Bojan

    Alexandra

    (@alexandrastan001)

    Hello Bojan,

    Thank you very much for your input! ??

    Best regards,
    Alexandra

    I tried putting it in the style css of my child theme but it’s not working. but if using simple custom css it is working. why is that?

    Hey there,

    @alexandra Happy to help ??

    @charot_ there could be few reason for that.

    It is possible that child theme style.css is not loading properly (you can check by adding anything else there and see if it is working, or this is not the case if you already have some CSS there that is working properly.)

    Also if you’re putting this at the top of your child theme style.css and you have the same selector below with different properties so it gets overridden.

    Other then that there is a chance that somewhere in your child theme style.css there is a closing bracket missing so the code below is not working.

    Hope this helps ??

    Cheers,
    Bojan

    please i would rely like if i can make the skill section horizontal please any help ??

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Remove skill count’ is closed to new replies.