Homepage blog background

Homepage Community Forums Epik Theme Support Homepage blog background

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #14581
    Cosmin
    Customer

      Hi!
      I have installed Epik theme on my blog http://www.cafeacutaifas.ro. I didn’t fill in any widget, I want my homepage a simple numbered blog page.
      The problem is that the color grey of the background is covering also the post excerpt on homepage. Also, the post titles are not left aligned.
      It is a big difference between my homepage snd the category archives (nice white boxed post excerpts). This didn t hsppen in 1.3 child theme version I have tried before.

      How can I sole this?

      Yhank you very much!

      #14587
      Eric
      Customer

        You can add or replace the code in your css on line 2303 –

        From this –

        .home .entry {
            box-shadow: none;
            -moz-box-shadow: none;
            -webkit-box-shadow: none;
            background: none;
        }

        To this instead –

        .home .entry {
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
            -moz-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
            -webkit-box-shadow: 0 3px 6px rgba(0,0,0, .2);
            background: #fff;
            padding: 20px; 
        }

        And that will add the white background back for your posts on the homepage. The padding I added will help with the space on the sides as well.

        Also, add this to adjust the extra space for the titles on the homepage as well –

        .home .entry-title {
        	padding: 0;
        }

        I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

        #14590
        Cosmin
        Customer

          Thank you very much, Eric!
          That solved it!

        Viewing 3 posts - 1 through 3 (of 3 total)
        • The topic ‘Homepage blog background’ is closed to new replies.