Remove dots

How do I remove the dots from the pricing table settings?

Thanks!
d-

http://davidwaldorfweddingphotography.com/price/

Hey David,

Your theme is adding styling to lists. The CSS snippet below should override it! :slight_smile:

.fl-module-pricing-table .fl-pricing-table ul li {
  list-style: none;
}

Ben

That removed the dots but it also removed the green check marks. The check marks are there and when I publish they disappear.
Thanks!
d-

Hey David,

I didn’t see the check marks anywhere when I visited your site earlier. I do see it in the markup now but I don’t think you have FontAwesome installed. FA only loads in the builder when you use an Icon module, to reduce the number of resources. Try loading FA manually instead. You can check the links below for more info. :slight_smile:
https://fortawesome.github.io/Font-Awesome/get-started/
https://sridharkatakam.com/using-font-awesome-wordpress/

Ben

Hi Ben,

I put this code in my theme’s php but it did not work. Any suggestions?

// Load Font Awesome
add_action( ‘wp_enqueue_scripts’, ‘enqueue_font_awesome’ );
function enqueue_font_awesome() {

wp_enqueue_style( 'font-awesome', '//maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css' );

Thanks!
d-

Hey David,

You need to change the word latest to the latest version found on FA’s github site, which is 4.5.0. So simply changing latest to 4.5.0 should fix you right up! :slight_smile:

Ben

Hi Ben,

No, that did not work.

David

http://davidwaldorf.com/test-2/

Hey David,

Do you mind sharing temp admin access to the site so we can check?

Ben

[Content Hidden]

Hey David,

Looks like a different site from before. I just checked and the FA asset is loaded, just that you don’t have the markup for the check marks. Could you add them? They should work this time.

Ben

Hi Ben,

I was using the other site as a test site because I copied some non code into my theme php by mistake and brought down the site for a bit.

That worked!

What did you do to make it work?

Thanks!
d-

Hey David,

I didn’t really do anything. I simply checked your functions.php file, saw everything is in place, checked the page on the frontend and verified that the FA asset is loaded. :slight_smile:

Dealing with 2 sites was what probably confused you. Anyway, glad it’s working fine now. Enjoy BB! :slight_smile:

Ben

Thanks Ben!