Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi jklarich. Do you mean you want to remove the spaces before the bullet and between the bullet and the text? Or just in front of the bullet to move the entire line over? Or…?

    Thread Starter jklarich

    (@jklarich)

    I have a line of text and then a bulleted list below that line of text. There is a space between that line of text and the start of the bulleted text. I would like the space to be removed so the bullets start right below my last line of text.

    Here is an example.

    Applications for building any structure, whether it be a dwelling, wall, commercial building, or other, can take up to two weeks for processing, larger projects may take longer. All application permits must be accompanied by:
    <would like this space removed
    ?Building Permit Application Form
    ?Site plans – 2 sets
    ?Structural plans and other documents – 2 sets

    Here it is on one of my pages:
    https://grangerwashington.org/building-permits/

    just scroll down a bit to see it.

    Try this in your custom CSS. It offsets the bottom margin on the paragraph above the list.

    /* move list up */
    .entry ul {
        margin-top: -1em;
    }
    Thread Starter jklarich

    (@jklarich)

    Worked. Thanks! What about the code only changed the spacing for my bulleted text on my FAQ content page and didn’t change it on my other content pages? Just wondering.

    The CSS being applied on your Q&A page is this:

    .page-id-1014 p {
        margin-bottom: 0;
    }

    Which I gave you in this topic:
    https://www.ads-software.com/support/topic/removing-spaces-in-a-specific-content-area/

    I don’t see the CSS I posted above anywhere on your site.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Spacing around bulleted text’ is closed to new replies.