• Hi, I want no excerpt in the archive pages, so I changed Excerpt word count to 0 (Zero)
    from Customizing > Layout > Blog
    I have read more button, and I want it,

    I tried CSS

    .entry-summary p {
    display: none;
    }
    But this CSS also removed also read more button.

    After some google searches, I found that The ‘…’ are displayed because of the Read More button.

    So Please tell me how can I completely disable excerpt including ‘…”
    Thanks

    • This topic was modified 4 years, 6 months ago by vikral.
Viewing 4 replies - 1 through 4 (of 4 total)
  • Leo

    (@leohsiang)

    Hi there,

    Try this instead:

    .entry-summary p:not(.read-more-container) {
        display: none;
    }
    Thread Starter vikral

    (@vikral)

    That CSS Code Worked, Thanks

    Thread Starter vikral

    (@vikral)

    I Need Another Help…
    My Body Background Color is Grey
    I wanted to add another image for footer background for small screens
    I used this code.

    @media only screen and (max-width: 767px) {
      .footer-widgets {
        background-image: url(https://example.com/small-footer-background.png) !important;
        background-repeat: no-repeat !important;
        background-size: cover !important;
        background-attachment: local !important;
      }
    }

    But still, there was white in the background
    I tried background-color: transparent; but it didn’t work.

    • This reply was modified 4 years, 6 months ago by vikral.
    Leo

    (@leohsiang)

    Can you open a new topic for the separate question?

    Thanks ??

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Remove Excerpt from the archive pages’ is closed to new replies.