Hello and thanks in advance for reading and for any help.

I am very new to Drupal, having taken over a site that was built for us a year ago. so far all I have done is transfer it to a new server and make a tiny tweek of the template.

At the moment, the problem which is annoying me is that at the top of each page there is a random number (104, 70, etc), which changes with each page you visit. The website is at:

http://www.makeabignoise.org.uk/latest-news.html

I have tried quoting out various lines in the page.tpl.php file for the site's theme but to no avail. Could anyone suggest any other likely files to ammend to get rid of these numbers?

Cheers,

Alan

Comments

onejam’s picture

Looks like could be the node ID, perhaps there is a code snippet in your template that needs to be removed. Probably somewhere just under the < body > tag

-----------------------------------------------------------------
We build engaging websites and intuitive designs that will benefit your business.
Duvien

will_kelly’s picture

It's not the node ID

Page 70 = http://www.makeabignoise.org.uk/how-donate.html

Node/70 = http://www.makeabignoise.org.uk/aimee-leading.html

It appears as though your tpl.php file is printing it.

Look in your file after the close of the .

There is a

that starts with

The print statement directly after this

is calling the element that is printing the numbers.

Try removing or commenting out the call to find out where it's coming from and why.

onejam’s picture

Sorry will_kelly was right, it's nothing to do with node ID.

-----------------------------------------------------------------
We build engaging websites and intuitive designs that will benefit your business.
Duvien

will_kelly’s picture

Look in your file after the close of the head.

There is a body id "". The class is different on each page. It is at the top of the page and most likely is the cause of the problem.

Something in the initial print statement for the body is calling that number.