NetTalk Central

Author Topic: How to place company name in page heading  (Read 2937 times)

Jim A

  • Full Member
  • ***
  • Posts: 203
    • View Profile
    • Email
How to place company name in page heading
« on: September 13, 2012, 06:30:38 PM »
Not sure how this should be done.  I want to read the company name upon the webserver firing up and display that in the header.  I've tried a few combinations with no luck.

<div class="nt-left nt-site-header-logo"><img src="images/logo.jpg" /></div><h1>COMPANY NAME HERE</h1>

Thanks.

kevin plummer

  • Hero Member
  • *****
  • Posts: 1195
    • View Profile
    • Production Accounting and Software Payroll
Re: How to place company name in page heading
« Reply #1 on: September 13, 2012, 09:57:54 PM »
The Net:s: tag reads a sessionvalue. So in the example below you need to set it first somewhere. Have a look at the docs there are lots of cool tags that can be used in xhtml.

<div class="nt-left nt-site-header-logo"><img src="images/logo.jpg" /></div><h1><!-- Net:s:CoyName --></h1>

Jim A

  • Full Member
  • ***
  • Posts: 203
    • View Profile
    • Email
Re: How to place company name in page heading
« Reply #2 on: September 14, 2012, 03:43:17 AM »
Nice.  Thanks Kevin.