Removing the Page name from each page as displayerd

I would like to remove the page hame that appears at the top of the content area on each “page”
primarly the Home page… but all of them will work.

Nice theme… !!

This code will remove Page title only from homepage.

.home .entry-title {
    display: none;
}

if you need more specific code, please let me know your website url and I will look into it.

Aigars, would you please be so kind to explain how I can change the page name (for example change Sobre by Descondcionamento) or just how I can remove it!

I´m just beginning to build my website at www.descondicionamento.com

I have more questions but I´ll open new fórum items.

Thank you in advance!

I guess you have already figured that out. It was under WordPress dashboard - Settings - General. This allows you to change website title and it will also reflect in your website header area.

If this wasn’t what you were looking for, please let me know.

I’m also trying to figure out how to get the title off of the content area of my pages, not just the home page. For example, my about and contact pages- I just want to hide the name at the top so it goes straight to the content. If you could let me know that would be great! www.jsaphotography.com

@Jess

Add this code to Theme Options - Other - Custom CSS. It will hide titles from all pages.

.page .entry-title {
    display: none;
}