dbk123 wrote:Is there a way to eliminate display of the page title ("Contact Me" on my site) to free up the space that this takes?
You can either reduce the font-size, or eliminate it entirely. Just keep in mind this will affect the heading in any of your other textpages(Although I see you don't have any others as of yet).
To do so, go to admin -> themes -> edit your theme -> edit theme styelsheet - From there, locate the class:
.textpage_title{
font-size: 30px;
leading: 8px;
color: #66CCFF;
font-style: normal;
}
You can reduce the font-size, or you can hide the text entirely by setting:
.textpage_title{
display: none;
}
Remember to clear your browser cache after changing the CSS file.