[Support request] Category Description

Home Forums Support [Support request] Category Description

Home Forums Support Category Description

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #918846
    Sonja

    Hello,

    how can I design the Category descpription like the posts in a container with the same Shadow?

    And how can I design the pagination also with this shadow of the posts?

    #918865
    David
    Staff
    Customer Support

    Hi there,

    try this CSS:

    .archive .page-header {
        background-color: #fff !important;
        padding: 40px !important;
    }
    
    @media (max-width: 768px) {
        .archive .page-header {
            background-color: #fff !important;
            padding: 30px !important;
        }
    }
    #919148
    Sonja

    Hi David,

    this works for the category description, but not for the pagination. There is the shadow missing.

    #919291
    David
    Staff
    Customer Support

    So find this original CSS:

    .sidebar .widget,
    .comments-area {
        border: 1px solid rgba(232, 234, 237, 1);
        box-shadow: 0 0 10px rgba(232, 234, 237, .5)
    }

    and update it to:

    .sidebar .widget,
    .comments-area,
    .paging-navigation,
    .archive .page-header {
        border: 1px solid rgba(232, 234, 237, 1);
        box-shadow: 0 0 10px rgba(232, 234, 237, .5)
    }

    This also includes the archive page header, so i have edited the code i provided above to remove it from them.

    #919311
    Sonja

    Hi David, thanks, that works.

    #919358
    David
    Staff
    Customer Support

    Glad to be of help

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