Change color of something parts

Good!

I need to change the color of the areas I frame in the images.

Thank you very much in advance!

Regards

Hello there,

I hope you are doing well today.

You can use the following CSS code to change the colors by going to Appearance > Customize > Additional CSS and pasting it there.

/*Category*/ .newspaper-x-recent-posts > ul > li .newspaper-x-category { background: #000; }

/Footer/
.site-info {
background-color: #000;
}

Best Regards,
Support

Thanks!

Only one question!
I need change the colour of the highlight on the category and the colour of search box, text and background!

Thanks

Hello there,

These should work:

/*Category hover color*/ .newspaper-x-recent-posts > ul > li .newspaper-x-category:hover { background: #000; }

.top-header #searchform input[type=“search”] {
background: #000;
color: #fff;

}

Best Regards,
Support

Many thanks!
I need to delete capitular letter of the entries.
Help! Thanks again!

Hello there,

Try using the following CSS to do so:

.single-post .entry-content p:first-of-type, .page .entry-content p:first-of-type { color: rgb(0, 25, 54); font-size: 15px !important; font-weight: 100 !important; }

Best Regards,
Support

Hello. Don’t Work for me.

HI!
I solve it with this:
.single-post .entry-content p:first-of-type, .page .entry-content p:first-of-type {
display:inline
}

HI!
I solve it with this:
.single-post .entry-content p:first-of-type, .page .entry-content p:first-of-type {
display:inline-flex
}

Hi! One question more, for change de colour of this parts?

Hello there,

You can use the following CSS code to change the color by going to Appearance > Customize > Additional CSS and pasting it there.


#site-navigation .menu > li.menu-item-has-children > ul li:hover {
    background-color: red;
}

Best Regards,
Support

Thank! Works fine!

Hello there,

I am glad the solution worked for you.
Please feel free to contact us again in the future regarding any other issues.

Best Regards,
Support