PRO - Edit Posts on the Index page - CSS

Hi,

I know I was able to do this in X for another client but I want to be able to change or remove the white underneath my posts that automatically show up. I was able to edit the font size, get rid of the text if needed but I want to eliminate the white on the bottom of the post all together so I can just use my image instead of my image and the text below. Either i’m hitting a major brainfart developer style or something with Pro change in my ability to edit this.

Any insight would be great!!

Hello @whatupchuk

Thanks for asking. :slight_smile:

Please try out following CSS under X/Pro > Theme Options > CSS:

.entry-wrap h2 {
    font-size: 120% !important;
}

.entry-wrap {
    padding: 0 !important;
}

1- I have found the proper CSS code selector using the Chrome browser Developer Toolbar: https://www.youtube.com/watch?v=wcFnnxfA70g

2- For the CSS code itself, I suggest that you get started with this tutorial: https://www.youtube.com/watch?v=yfoY53QXEnI

Thanks.

Perfect - did exactly what I wanted!
But one question, what does the : .entry-wrap h2 { font-size:120% !important;} solve?

Hello @whatupchuk,

You can remove this css if not applicable to you.

.entry-wrap h2 { 
  font-size:120% !important;
}

This css block will change the font size of the post title.

Hope this helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.