Background Color in Post Box change

It's about the background color in the Post Box on the Blog Page in the GRID Layout.

I've tried everything, but I can not change the background color in the box.

Link: http://fotospot.ch/projekte/


The background Color in the excerpt text should be #25292b (is now #FFFFFF).

In the Footer (Love-Box & read more) it should be Color #191c1e (is now #FAFAFA).


Does this require a separate CSS-Code? Which one?


Thanks for your Help.


Regards

Spenglermeister

Comments

  • Hi,
    you need to use custom css
    .grid .post-desc-wrapper .post-desc {
    background:red !important;
    color:blue !important;
    }
    .grid .post-footer {
    color:red !important;
    }
    .grid .post-footer a, .grid .post-footer span{
    color:red !important;
    }
  • Thanks, that worked very well.


    How can I do this on the starting page? Unfortunately, it does not work automatically. This is about Section with Item Blog in "Masonry Blog Style".

    http://fotospot.ch

  • .home .blog_wrapper .post-desc-wrapper .post-desc {
    background:red !important;
    color:blue !important;
    }
    .home .blog_wrapper .post-footer {
    color:red !important;
    }
    .home .blog_wrapper .post-footer a, .home .blog_wrapper .post-footer span{
    color:red !important;
    }
Sign In or Register to comment.