Master Page Question

  • Thread starter Thread starter Samuel Shulman
  • Start date Start date
S

Samuel Shulman

I set the title of the master Page but I still get the Untitled header

Thank you,
Samuel
 
in Masterpage you can set teh title in the <head> code like the normal html
code

<head>
<title>My title for the Master Page</title>
</head>

and off course, in every content page (by default you have this set up) you
have in the first line of code
something like Title="Untitled Page"

this is "stupid" in a way that we need to delete that part of the line to
have the title of the MAster Page, but really helpfull if you want to give a
name to a particulary webpage, and only that one.

hope it helps.

--

Bruno Alexandre
København, Danmark

"a Portuguese in Denmark"

Blog. http://balexandre.blogspot.com/
Photos. http://www.flickr.com/photos/balexandre/
 
Thank you

Samuel

Bruno Alexandre said:
in Masterpage you can set teh title in the <head> code like the normal
html code

<head>
<title>My title for the Master Page</title>
</head>

and off course, in every content page (by default you have this set up)
you have in the first line of code
something like Title="Untitled Page"

this is "stupid" in a way that we need to delete that part of the line to
have the title of the MAster Page, but really helpfull if you want to give
a name to a particulary webpage, and only that one.

hope it helps.

--

Bruno Alexandre
København, Danmark

"a Portuguese in Denmark"

Blog. http://balexandre.blogspot.com/
Photos. http://www.flickr.com/photos/balexandre/
 
Back
Top