Eliminating the Graphs From the About Section

Hello,

I am having difficulties deleting the percentage graphs within the about section. I tried eliminating the widgets from the sidebar but they are still showing up. Is there a code or something that I can use to get rid of them entirely?

Thank you

Hello there,

I hope you are doing well today.

You can use the following CSS code to remove the skill graph by going to Appearance > Customize > Additional CSS and pasting it there.


/*Remove graph*/
#about .skill {
    width: 100%;
    display: none;
}

Best Regards,
Support

Awesome thank you so much. Also do you know how to shorten the height and width of the section, so there’s no extra space where the graph’s used to be?

Hello there,

The code to reduce the space at the bottom was provided before but here is the code with an update:

/*Remove space at about*/
#about .section-header {
    margin-bottom: 10px;
}
#about {
    padding-bottom: 10px;
}


Best Regards,
Support

thanks it worked great!

Hello there,

I am glad the solution worked for you.
Please feel free to contact us again in the future regarding any other issues.

Best Regards,
Support