Support community for TTG plugins and products.
NOTICE
The Turning Gate's Community has moved to a new home, at https://discourse.theturninggate.net.
This forum is now closed, and exists here as a read-only archive.
You are not logged in.
Pages: 1
I am slowly setting up my test site on BlueHost, but have run into an issue I can't seem to solve. All my pages (and home page) were built using the same Default Page Template. Four pages - Instruction, Prints, About and Contact are all showing the information on the very top of the screen that I input into the Footer. Additionally, on those pages, the Navigation menu is above the masthead, when for my home page, the Nav menu is where I want it - below the masthead.
Any help would be greatly appreciated!
Offline
You're using some html that is obsolete. And you have some of those tags closing in the wrong order.
One example:
<h2><em><B>Prints</em></B></h2>
done correctly this would be: <h2><em><B>Prints</B></em></h2>
However, this should probably be done with styling:
<h2 style="font-weight:bold; font-style:italic;">Prints</h2>
Or if you wanted the em for SEO
<h2 style="font-weight:bold;><em>Prints</em></h2>
something similar is happening here:
<a href="http://www.alansislenphotography.com/contact.php" target="_blank"><B>Contact Me.</a></B></h3>
Things like this are breaking the html and that's the reason the pages are so wonky.
I'd suggest trying Markdown. It's easy to use and requires no html unless you're trying to go beyond what Markdown can do.
http://backlight.theturninggate.net/doc … h_markdown
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
Rod,
Thank you! As you have gathered, I am a complete novice at this! Your help is invaluable.
Alan
Offline
Pages: 1