Are you a GenerateCustomer?

Do you have an active GP Premium or GenerateBlocks Pro license key?

Create a GenerateSupport account for GeneratePress and GenerateBlocks support in one dedicated place.

Create an account
Already have a GenerateSupport account? Login

Just browsing?

Feel free to browse the forums. Support for our free versions is provided on WordPress.org (GeneratePress, GenerateBlocks).

Want to become a premium user? Learn more below.

CSS help with the breadcrumb

  • Hi there,

    I need help on the CSS part for the blog post bread crumb, I need it to be like normal link, not like the ones I use the following css for only blog post links, I am thinking just select the blog post part, but I dont know how to do it, the link is in the private information box, thanks for helping:

    /* Blog Post link Style */
    :is(.entry-content,.dynamic-content-template,.content-area) ul li {
        padding-top: 10px;
    }
    .single-post :is(.entry-content, .dynamic-content-template) a:not(.gb-button) {
        color: black;
        font-weight: 600;
        box-shadow: inset 0 -0.2em #e6d8ff;
        transition: box-shadow 0.2s ease-in;
    }
    .single-post :is(.entry-content, .dynamic-content-template) a:not(.gb-button):hover {
        box-shadow: inset 0 -1em #e6d8ff;
    }
    /*table of content*/
    #page .simpletoc ul.simpletoc-list li a {
        font-size:16px ;
        font-weight: 400;
        box-shadow:unset ;
    }
  • Hi there,

    Try adding this CSS:

    nav.rank-math-breadcrumb a {
      color: unset !important;
      box-shadow: unset !important;
    }
    nav.rank-math-breadcrumb a:hover {
      box-shadow: unset !important;
    }
  • Thank you so much for your help Alvind! it works perfectly!

  • You’re welcome!

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.