WP-Creativix is a popular free WordPress portfolio theme. This is a elegant, clean and modern Business & Portfolio theme which offers a mighty options set to customize WP-Creativix to your own needs. However I find Creativix will add a line on top and bottom of every bulleted and numbered lists and there is no option from backend to customize it, also the Creativix theme does not allow custom CSS. In this article we will talk about how to remove divider lines from bulleted and numbered lists within WP Creativix WordPress Theme
Normally when we want to edit the WP theme files, a child theme is highly recommended. (You can see how to create WordPress child theme here.)
Delete divider lines from bulleted, numbered lists within WP-Creativix Theme
You can edit the code of the theme to change its style. It is not the style.css file as you might expect. Instead you can find and change the code in a file called style.php. You do not have to download this file from your WordPress hosting for the editing, you can directly open and edit this file from WordPress dashboard. Log on your WordPress admin area. Go to Appearance, Editor, find and open style.php file under WP-Creativix theme.
Delete divider lines from bulleted lists
To get rid of all of the divider lines within the theme when adding bullet lists or points, search for .post ul, then comment out the code for all border-top and border-bottom attributes.
Section 1:
.post ul { /* border-top: 1px solid #CCC; */ list-style-type: disc;
Section 2:
.post ul { list-style: disc; margin: 15px 5px; padding: 10px 0px; /* border-top: 1px solid #CCC; */ /* border-bottom: 1px solid #CCC; */ }
Delete divider lines from numbered lists
Search for .post ol, then comment out the code for border-top and border-bottom.