Hi Jorge,
where is the doctype for your page coming from?
In NetTalk, for generated pages, the doctype is (currently) set to
<!DOCTYPE html>
Which is the new preferred "standard" (especially for HTML 5 browsers).
In the old days we used to generate;
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "
http://www.w3.org/TR/html4/loose.dtd">
- for pages with the Frame extension we generate;
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "
http://www.w3.org/TR/html4/frameset.dtd">
whereas you have
!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "
http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
So I'm wondering if this is a static page you've put in? Or perhaps you've overridden the default in NetTalk somewhere? Note that you've set your doctype to XHTML 1.0, which means you'd have to do more work to change the <html> tag. I recommend setting the doctype back to what we do.
The CapeSoft home page is a static HTML page - ad uses the doctype;
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
but then you'll notice the html tag also has the necessary attribute (which is easy to do given that this is a static page).
<html xmlns="
http://www.w3.org/1999/xhtml">
The "title" of the page is set in the header with the <title> tag;
<title>CapeSoft Home Page</title>
In all the templates this is the "Page Title" setting, which is on the "General" tab of the procedure properties.
Cheers
Bruce
cheers
Bruce