Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #3677449
Blog "Standard" Pages vs "Blog Video" pages
Closed

Comments

  •  3
    AlbertCrane4 started the conversation

    Hi, 

    I'm having a hard time with something, and i think you'd be the best person to help me. 

    I'd like my blog video pages to stay as is - just like this. 

    https://youreverydayheroes.com/hero/what-would-you-tell-the-audience-laurynas/


    but i'd like my blog standard pages to be switched to a white background with black text. I've been through the customize section, i can't seem to figure out how to do that. 

    this page type white background and black font:

    https://youreverydayheroes.com/blogs/mountaineer-beatriz-flamini-spent-over-500-days-isolated-in-a-cave/


    Could you help?



  •  2,540
    PenciDesign replied

    Hi,

    Please go to Appearance → Customize → Custom CSS then add the following custom CSS code:

    body.pcdark-mode.single.single-format-standard {
      --pcbg-cl: #fff;
      --pctext-cl: #313131;
      --pcborder-cl: #dedede;
      --pcheading-cl: #313131;
      --pcmeta-cl: #888888;
      --pcaccent-cl: #6eb48c;
    }
    body.pcdark-mode.single.single-format-standard .penci-single-style-10 .penci-post-image-wrapper {
      background-color: var(--pcbg-cl);
    }
    body.pcdark-mode.single.single-format-standard .penci-single-style-10.penci-header-text-white .header-standard .post-title {
      color: var(--pcheading-cl);
    }
    body.pcdark-mode.single.single-format-standard .penci-single-style-10.penci-header-text-white .post-box-meta-single span,
    body.pcdark-mode.single.single-format-standard .penci-single-style-10.penci-header-text-white .header-standard .author-post span a {
      color: var(--pcmeta-cl);
    }
    body.pcdark-mode.single.single-format-standard .penci-single-style-10.penci-header-text-white .penci-standard-cat .cat > a.penci-cat-name {
      color: var(--pcaccent-cl);
    }

    Regards,
    PenciDesign.



  •  3
    AlbertCrane4 replied

    thanks this worked.