Hey there Keimma,
I’m still unsure if you’re looking to remove only the title or the whole intro area so I’ll post both solutions here:
To remove only the title and keep the breadcrumbs please try adding the following CSS code as explained above:
#intro-core h1.page-title {
display: none;
}
#intro.option2 #breadcrumbs {
width: 100%;
}
This should remove the title and keep the breadcrumbs in the intro area.
In case you want to remove the whole intro area please try adding the following instead:
div#intro {
display: none;
}
This should remove the whole intro area.
Please let me know if this helps ??
Cheers,
Bojan