• Resolved green4547

    (@green4547)


    Hello,

    I have just updated the newest version of Sydney and am in the process of adjusting designs. I need help with several points and I will go one by one.

    Archive pages and category pages are all colored pale green. I would like to have them just as other pages being white framed by the pale green. I checked “customize” but could not find a relevant section. I guess I need CSS code for it.

    Thank you in advance.

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

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi @green4547,

    Try adding this CSS code to Appearance > Customize > Additional CSS from dashboard.

    .archive-wrapper .posts-layout > .row,
    .search .content-wrapper .posts-layout > .row {
      background-color: #fff;
    }
    Thread Starter green4547

    (@green4547)

    Hi @kharisblank,

    Thank you for your prompt response. The code did work beautifully for the archive pages. I still have the same problems with category pages and tag pages. They are still all colored in pale green. Can give me another CSS? Thanks!

    You can see one of the category pages below:
    https://suzuki-akiko.com/category/attachment/

    Also, you can see one of the tag pages below:
    https://suzuki-akiko.com/tag/couple/

    Hi @green4547,

    Thank you for getting back.

    Upon checking, those two pages require separate CSS code. Try adding this:

    .archive .content-area .page-header {
      padding-top: 15px;
      padding-left: 15px;
      padding-right: 15px;
      margin-left: -15px;
      margin-right: -15px;
      background-color: #fff;
    }
    
    .archive .content-area .page-header .taxonomy-description p {
      margin-bottom: 0;
    }
    
    .archive .content-area .posts-layout > .row {
      background-color: #fff;
    }
    Thread Starter green4547

    (@green4547)

    Hi @kharisblank,

    Thank you for the CSS code! The separate code also worked perfectly.

    I appreciate your prompt response.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Archive pages and category pages are all colored’ is closed to new replies.