Is it possible to have a different page title and site heading?

If you have questions about using mojoPortal, you can post them here.

You may want to first review our site administration documentation to see if your question is answered there.

This thread is closed to new posts. You must sign in to post in the forums.
4/7/2011 8:54:19 AM
Gravatar
Total Posts 18

Is it possible to have a different page title and site heading?

I'd like to have one of the words in my site name in the header be in italics, so I put the site title as "word1<i>word2</i> word3". This looks fine, but it also means that when you look at the page title at the title bar at the top of the browser, the title includes the <i> and </i> characters. Is there any way to have a different title in the page header than in the title bar?

4/7/2011 9:19:10 AM
Gravatar
Total Posts 18439

Re: Is it possible to have a different page title and site heading?

There is a page title override field in Page Settings.

Alternatively don't do that in the site title in Site Settings but instead just put the markup for your site title with the custom italics on the word directly in the layout.master instead of using the <portal:SiteTitle control.

For example on this site I have a different color for part of the word mojoPortal by wrapping a span around the Portal part of the word. But I did not do that from site settings, I simply removed the <portal;SiteTitle control and added this markup directly:

 <h1 class='siteheading'>
                <a class='siteheading' href='<%= Page.ResolveUrl("~/") %>'>mojo<span class="green">Portal</span><span
                    class="slogan">Advanced Web Sites Made Easy</span></a></h1>

Hope it helps,

Joe

4/7/2011 9:46:13 AM
Gravatar
Total Posts 18

Re: Is it possible to have a different page title and site heading?

Thanks!

You must sign in to post in the forums. This thread is closed to new posts.