• Skip to main content
  • Skip to forum navigation

StudioPress

  • Shop for Themes
  • My StudioPress

Forum navigation

  • Home
  • General Genesis Discussions
  • StudioPress Themes
  • Genesis Blocks
    • Genesis Blocks
    • Genesis Custom Blocks
  • Retired Themes
  • FAQs
  • Forum Rules
  • Internationalization and Translations
  • Forum Bugs and Suggestions
  • Forum Log In

Are You Using The WordPress Block Editor?

Genesis now offers plugins that help you build better sites faster with the WordPress block editor (Gutenberg). Try the feature-rich free versions of each plugin for yourself!

Genesis Blocks Genesis Custom Blocks

Removing bullet points from pricing table not working

Welcome!

These forums are for general discussion on WordPress and Genesis. Official support for StudioPress themes is offered exclusively at My StudioPress. Responses in this forum are not guaranteed. Please note that this forum will require a new username, separate from the one used for My.StudioPress.

Log In
Register Lost Password

Community Forums › Forums › StudioPress Themes › Genesis Sample › Removing bullet points from pricing table not working

This topic is: not resolved

Tagged: bullet list removal, bullet point removal, css, Pricing table

  • This topic has 0 replies, 1 voice, and was last updated 1 year, 9 months ago by jonathonfowler.
Viewing 1 post (of 1 total)
  • Author
    Posts
  • March 25, 2024 at 7:16 am #507605
    jonathonfowler
    Participant

    I've created a pricing table but want to remove the bullet points. I've used the following code and would really appreciate your advice on how to resolve this, as the CSS I use doesn't work:

    HTML:

    <div class="col-triple-container">
        <div class="columns">
        <ul class="price">
        <li class="header">Collection One</li>
        <li class="grey">£1395</li>
        <li><strong>One Photographer</strong></li>
        <li>Coverage begins with pre-ceremony until you sit down for dinner</li>
        <li><strong>Add Extra coverage:</strong></li>
        <li>£200 - Include morning preparations</li>
        <li>£200 - Post-meal coverage until the first few dances in the evening</li>
        <li><strong>Included in the price:</strong></li>
        <li>Fabulous photos in our signature timeless style</li>
        <li>Typically 500+ individually edited watermark-free photos with full licence to print and share</li>
        <li>A 'sneak-peek' preview of a few photos within a week of your wedding</li>
        <li>Private online web gallery for viewing/sharing your photos and ordering prints</li>
        <li>Unlimited downloads of your photos - share with family and friends</li>
        <li>Minimum two-year online backup of your photos</li>
        <li class="grey"><a href="https://loveweddingphotosandfilm.co.uk/contact/" class="button">Check availability</a></li>
        </ul>
        </div>
    
        <div class="columns">
        <ul class="price">
        <li class="header" style="background-color:#04AA6D">Collection Two</li>
        <li class="grey">£1695</li>
        <li><strong>Two Photographers for the best coverage</strong></li>
        <li>Coverage begins with pre-ceremony until you sit down for dinner</li>
        <li><strong>Add Extra coverage:</strong></li>
        <li>£300 - Include morning preparations</li>
        <li>£300 - Post-meal coverage until the first few dances in the evening</li>
        <li><strong>Included in the price: as Collection One PLUS</strong></li>
        <li>'<a href="https://loveweddingphotosandfilm.co.uk/engagement-photography-offer/">Pre-wedding day photoshoot</a>' - experience a photoshoot before your wedding day</li>
        <li>One extra photopgrapher (2 in total)</li>
        <li>Typically 800+ individually edited watermark-free photos with full licence to print and share</li>
        <li><a href="https://loveweddingphotosandfilm.co.uk/luxury-wedding-albums/">£100 discount off any wedding album</a></li>
        <li class="grey"><a href="https://loveweddingphotosandfilm.co.uk/contact/" class="button">Check availability</a></li>
        </ul>
        </div>
    
        <div class="columns">
        <ul class="price">
        <li class="header">Collection Three</li>
        <li class="grey">£349 first hour then £300 per hour</li>
        <li><strong>Micro wedding/Elopement - One Photographer</strong></li>
        <li>Minimum booking 2 hours</li>
        <li>Available for off-peak micro weddings and elopements only</li>
        <li>Fabulous photos in our signature timeless style</li>
        <li>Typically 50+ individually edited watermark-free photos per hour of coverage, with licence to print and share</li>
        <li>A 'sneak-peek' preview of a few photos within a week of your wedding</li>
        <li>Private online web gallery for viewing/sharing your photos and ordering prints</li>
        <li>Unlimited downloads of your photos - share with family and friends</li>
        <li>Minimum two-year online backup of your photos</li>
        <li class="grey"><a href="https://loveweddingphotosandfilm.co.uk/contact/" class="button">Check availability</a></li>
        </ul>
        </div>
        </div>

    CSS:

    ` .col-triple-container {
    display: flex;
    width: 100%;
    }

    .col-triple {
    flex: 1;
    border-radius: 25px;
    padding: 16px;
    margin: 4px;

    }

    /* If the browser window is smaller than 600px, make the columns stack on top of each other */
    @media only screen and (max-width: 600px) {
    .col-triple-container {
    display: block;
    width: 100%;
    }

    }

    .columns {
    float: left;
    width: 33.3%;
    padding: 8px;
    }

    .price ul li {
    list-style-type: none;
    border: 1px solid #eee;
    margin: 0;
    padding: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    }

    .price:hover {
    box-shadow: 0 8px 12px 0 rgba(0,0,0,0.2)
    }

    .price .header {
    background-color: #111;
    color: white;
    font-size: 25px;
    }

    .price li {
    border-bottom: 1px solid #eee;
    padding: 20px;
    text-align: center;
    }

    .price .grey {
    background-color: #eee;
    font-size: 20px;
    }

    @media only screen and (max-width: 600px) {
    .columns {
    width: 100%;
    }
    }

    Added:

    Ul li list-style-type: none as below, expecting this to remove the bullet points, but no joy.

    
       .price ul li {
        list-style-type: none;
        border: 1px solid #eee;
        margin: 0;
        padding: 0;
        -webkit-transition: 0.3s;
        transition: 0.3s;
         }

    Award-winning wedding photographer in Scotland

    https://loveweddingphotosandfilm.co.uk
  • Author
    Posts
Viewing 1 post (of 1 total)
  • You must be logged in to reply to this topic.
Log In

CTA

Ready to get started? Create a site or shop for themes.

Create a site with WP EngineShop for Themes

Footer

StudioPress

© 2025 WPEngine, Inc.

Products
  • Create a Site with WP Engine
  • Shop for Themes
  • Theme Features
  • Get Started
  • Showcase
Company
  • Brand Assets
  • Terms of Service
  • Accptable Usse Policy
  • Privacy Policy
  • Refund Policy
  • Contact Us
Community
  • Find Developers
  • Forums
  • Facebook Group
  • #GenesisWP
  • Showcase
Resources
  • StudioPress Blog
  • Help & Documentation
  • FAQs
  • Code Snippets
  • Affiliates
Connect
  • StudioPress Live
  • StudioPress FM
  • Facebook
  • Twitter
  • Dribbble