How to remove the head image of front page?

1: My homepage has a recent post excerpt and I want to remove it

2: Also, I want to change the right sidebar font color, Now it is gray and I want to change it. and remove the border solid line

3: And I want to add an image above the excerpt
I attach the screenshot

Could you please share me your site URL where it’s displaying so that i can help you to achieve it?

Of course.
AidSelect.com

1: My homepage has a recent post excerpt and I want to remove it

You can remove it by adding the following CSS code in the Custom CSS option of the latest version of Sparkling theme on the below path.

Admin Area -> Appearance -> Customize -> Additional CSS

.flex-caption .excerpt {
    display: none;
}
2: Also, I want to change the right sidebar font color, Now it is gray and I want to change it. and remove the border solid line

Use the below custom CSS code to achieve this.


#secondary .widget,
#secondary .widget a {
    color: #000;
}

.well {
    border: 0;
}
3: And I want to add an image above the excerpt

We are already dealing with this question on your following topic.

https://colorlibsupport.com/t/the-additional-css-code-does-not-work/page/2/

Thank you very much.
It works well
by the way, can you also help me remove the featured image and recent post title in homepage?I think it does not look good
is it related with the child theme?

Thanks.Movin
I have solved the problem.

You are most welcome here :slight_smile:

Hi, Movin
can you tell me how to change the font size of the blog post and sidebar widget?
And I want to change the color of the recent post and popular post widget of the sidebar.

Hi there,
Thanks for keeping in touch with us.

Kindly add and save the following code to Appearance > Customize > Additional CSS:

/*sidebar widget title font size*/
h3.widget-title {
    font-size: 20px!Important;
}

/*sidebar widget content font size*/
#secondary .widget a {
    font-size: 15px!important;
}

/*recent posts font color*/
.widget_recent_entries a {
    color: red!Important;
}

/*popular posts font color*/
.widget_top-posts a {
    color: blue!Important;
}

/*blog post font size*/
.blog-item-wrap p {
    font-size: 20px!Important;
}

Just choose the codes you want to add and modify them to the size and color you’d like to have and you should be good.

I hope this helps :slight_smile:

Best Regards,
Support

ok,thank you very much.

You are always welcome here :slight_smile:

Please note, To help us keep support thread separates could you please create new thread for each of your other questions here https://colorlibsupport.com/c/sparkling/ instead of asking them in your single thread as it makes the thread messy and hard to read.

We would be more than happy to help you on your new thread.