• Resolved breecrowder

    (@breecrowder)


    Hey there!

    I’m looking to accomplish the following, maybe with CSS?

    1. Make sure all links bold and underline.
    2. Ensure more spacing between numbered items.?

    Any help is appreciated.

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Theme Author WP Royal

    (@wproyal)

    Hi,

    1. Here is a CSS for bold-underline links:

    .post-content a {
      text-decoration: underline !important;
      font-weight: bold !important;
    }

    2. Sorry, but what do you mean by “numbered items”?

    Regards, Duke

    Thread Starter breecrowder

    (@breecrowder)

    Hi Duke:

    1. That CSS isn’t working.

    2. Numbered items as seen on this page.

    Theme Author WP Royal

    (@wproyal)

    Hi,

    The CSS is working, I’ve tested and it works fine. Please navigate to Appearance > Customize > Additional CSS and add the following snippet:

    .post-content a {
      text-decoration: underline !important;
      font-weight: bold !important;
    }
    
    .post-content li {
      line-height: 24px;
      margin-bottom: 15px;
    }

    Kind Regards, Duke

    • This reply was modified 6 years, 11 months ago by WP Royal.
    Thread Starter breecrowder

    (@breecrowder)

    That worked great Duke, thanks.

    Now I’m wondering how to properly indent bulleted items. As you can see on this page, the text runs right under the bullet, but I’d like the text to align.

    Theme Author WP Royal

    (@wproyal)

    Hi,

    I’m glad that your previous issue was resolved. Please add the following CSS to align the list bullets:

    .post-content ul {
      list-style-position: outside;
      padding-left: 20px;
    }

    Regards

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Formatting Issues’ is closed to new replies.