Getting rid of elements

Hi,

I’m trying to create a portfolio using the guidelines provided in the tutorial video.

When creating a portfolio, the portfolio title, publisher, date of publishing, and the user it was posted under all appear.

Is there a way to get rid of or edit these elements?

The portfolio title wouldn’t be so bad if it were a different color, which might be the same for the crediting, but it might just be easier to get rid of them.

Thanks

I didn’t see an edit button. Sorry for the double post.

I’d like to create a page similar to this referenced thread.

https://colorlibsupport.com/t/gravatar-portfolio/

The user didn’t explain how he solved the second issue.

Odd. I still cannot find an edit button. Sorry for the triple post.

It seems to be the case that on some of the portfolio pages, the comment section is enabled.
(enabled)
http://bjorklundphotos.com/portfolio/1976/

Whereas on others, it is disabled
(disabled)
http://bjorklundphotos.com/portfolio/maya-c/

Sorry that this has basically turned into a collective problem thread.

I’ve figured out how to delete the author info with

body.single-jetpack-portfolio .author-bio {
    display: none;
}

However, I still have not figured out how to change the color nor get rid of the comments on the other portfolios.

Hi @tbjorklund,

I hope you are well today and thank you for your questions.

You can disable the comments on portfolio page by unchecking the option “Allow comments.” in the admin area by editing the portfolio as shown in the attached screenshot.

You can try changing the portfolio title color by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Shapely Options -> Other

.single-jetpack-portfolio h1.post-title.entry-title {
    color: #fff;
}

Please change the color value in the above code to whatever you want to use by referring the following pages.

http://www.w3schools.com/html/html_colors.asp
http://www.w3schools.com/html/html_colorvalues.asp
http://www.w3schools.com/tags/ref_colorpicker.asp

Best Regards,
Movin