HTML - Error On Website
Hi there
I have edited a website in front page and it has a basic slideshow of top pictures. When previewing it in frontpage it shows fine and works well. However, when uploading to the site, it shows the three pictures as one large block. Can anyone advise where I am going wrong? the page on the site is www.thepullmanlodge.co.uk/weddings.htm Thanks Similar TutorialsThis page contains the following errors: error on line 1 at column 60: Space required after the Public Identifier Below is a rendering of the page up to the first error.I copied the first part of the code because the error is at line 1.Where exactly do you think the space should come <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> well im creating a new website layout but its being an ass...or its just me well its like 5am here in the UK now which is probebly the reason for the problem but ah well i need it sorting asap and i cant work it out. my website is http://www.rharris28.com so you can see for yourself. basicly everything apart from the bar at the bottom should be on one line, but it just wont do it. i refuse to use tables as ive broken that habbit and want to stear clear of tables at all costs. so its all div's and css work. my html is HTML Code: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <title>Mixing Pixels - Internet Services :: Homepage</title> <link rel="stylesheet" type="text/css" href="style.css"> <meta name="verify-v1" content="KY6WP1pcuAyddeAyjc4oFZVeQDE0qbbA1GGcJ2Zgu8Y=" /> </head> <body> <div id="background" align="center"> <div id="container" align="left"> <div id="tb"> <div id="tbbg"></div> <div id="topsep"></div> <div id="tophome"></div> <div id="topsep"></div> <div id="topmap"></div> <div id="topsep"></div> <div id="topcontacts"></div> <div id="topsep"></div> <div id="searchbg"><b>Search:</b></div> </div> <div id="topmenu"> <div id="topmenubg">Home</div> <div id="topmenusep"></div> <div id="topmenubg">News</div> <div id="topmenusep"></div> <div id="topmenubg">Downloads</div> <div id="topmenusep"></div> <div id="topmenubg">Search</div> <div id="topmenusep"></div> <div id="topmenubgend">Services</div> </div> </div> </div> </body> </html> and my CSS is Code: * { margin: 0; padding: 0; } #background { background-color:#01557C; height: 100%; width: 100%; } #container { background-color:#FFFFFF; width: 759px; height:500px; } #tbbg { background-image:url(/images/main01.jpg); width:256px; height:41px; } #tb { float:left; width:759px; } #tophome { background-image:url(images/but_home.gif); width:74px; height:41px; } #topmap { background-image:url(images/but_site_map.gif); width:94px; height:41px; } #topcontacts { background-image:url(images/but_contacts.gif); width:96px; height:41px; } #topsep { background-image:url(images/separator.gif); width:2px; height:41px; } #searchbg { width: 231px; height: 41px; background-image:url(images/fon01.gif); } #topmenu { width:759px; } #topmenubg { background-image:url(images/fon_menu.gif); width:132px; height:42px; float:left; text-align:center; } #topmenubgend { background-image:url(images/fon_menu.gif); width:135px; height:42px; float:left; } #topmenusep { background-image:url(images/e_menu.gif); width:24px; height:42px; float:left; } please help...many thanks Hello, I hired contractors to build a site for me. The site's front page has a small section for text, the developers added some placeholder text in this spot. Now that the site is completed, I changed the text as follows: I downloaded the index.php file from my webhost. I changed it to a txt file, then opened in notepad, found the placeholder text, changed it, saved the file, renamed the file back to php, then uploaded to webhost, replacing old index.php file. When I load the page the following error message appears twice at the top of the window: Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/XXXX/public_html/index.php:1) in /home/XXXX/public_html/index.php on line 2 Does anyone know what this error indicates ? (I'm not a programmer) I did not save the old index.php file because I didn't think such a minor change would cause problems. The contract with my developer has ended and I don't want to start a new one for this. Any help appreciated. Hi How to add a website counter to my website. So that when ever a visitor visits the website I want the counter to increase say from 101 to 102 and then for a new visitor it should be 103 and then again for the next visitor 104 and so on..... I want to know the code. There are number of websites that are offering this but they put their advertisement which I don't want hello, i need a website for german customers, somethign like www.podmod.de because i would like to offer the same. So if anyone has an idea where to start, or even can offer me something i can buy, please do so. my email: verenamueller999@web.de thanks verena. I have some links (in the header, the SUPPORTERS) to different websites, but when I click on them the address in the address bar does not change to the address of the website that I clicked. How do I make it show the address that I clicked on? Thanks. http://www.ac.wwu.edu/~fencing/ I am a total noob but volunteered to administrate the website, because there was no one else to do it. Hi, I am trying to find a way in which a website that is linked on my homepage can be opened while keeping at least one form of my homepage open as well. e.g.: Google images :http://images.google.com/imgres?imgu...en-us%26sa%3DG sorry for the massive link. Hope you get the idea. So what i want is to have a bar on top that is my homepage (like the google bar in the link), but the rest is the actual website that has been linked. I don't really care much about the url. It doesn't have to be my homepage url, it can be the actual website url. Google has been able to do that somehow, so it is possible. I would just like to know how and if it is hard to do. If someone knows how to do it, it would be great if you could give me a link to a tutorial, or explain it. thanks Code: Parse error: syntax error, unexpected T_DNUMBER in /home/a6989956/public_html/include/database.php on line 24 Can anyone please tell me whats wrong? Here is line a few lines Code: class MySQLDB { var $connection; //The MySQL database connection var $num_active_users; //Number of active users viewing site var $num_active_guests; //Number of active guests viewing site var $num_members; //Number of signed-up users /* Note: call getNumMembers() to access $num_members! */ /* Class constructor */ function MySQLDB(){ /* Make connection to database */ $this->connection = mysql_connect(hostname, username, ********) or die(mysql_error()); mysql_select_db(database, $this->connection) or die(mysql_error()); /** * Only query database to find out number of members * when getNumMembers() is called for the first time, * until then, default value set. */ $this->num_members = -1; if(TRACK_VISITORS){ /* Calculate number of users at site */ $this->calcNumActiveUsers(); /* Calculate number of guests at site */ $this->calcNumActiveGuests(); } } line 24-25 is Code: $this->connection = mysql_connect(hostname, username, ********) or die(mysql_error()); mysql_select_db(database, $this->connection) or die(mysql_error()); PLEASE HELP! hello guys new here...im currently creating a website for a business im starting.but im having a problem with finishing the main page...im new to all this html coding,and ive been able to hold my own on a few things but i cant figure this out.ive crashed the page once already lol but i guess thats how it goes starting off...(of course i saved everything)...but i want to do this right the second time. here is a snapshot of the page...so basically 1. i want to remove the 3 dividers and script on the bottom and... 2. i would like for the transition images to show up only on the main page. (whatever goes into the "media" tab,ends up in the main page and vice versa.so i would like to erase the media tab and find an alternate way to put pics into the transition box on the main page) So what exactly would i be looking for to do this?...ive got lots of folders and ive searched but not sure what it would be coded as? I finally have built my website. I used wordpress. How do I implement ads onto my website? Do I need a certain amount of users viewing it or what? It is... www.thesoulofashark.com Hello, I am trying to set up a website with no such luck. I have some experience with html however I have no idea how to create what you could call "HyperLink Boxes". Can anyone help me with settings boxes around the 6 labels within this code. it is all on a picture so I can not link the text. Code: <html> <style type="text/css"> body { background: url(http://s1.postimage.org/g8k7foy94/Void_Craft.png) fixed center no-repeat;} </style> </html> The website is hosted at Voidcraft.net with a godaddy registration and its DNS'ed to a free hosting site called 000webhost with the following allowed scripts. Mysql PHP Cron jobs CSS Can anyone with allowing me to link the images that is all 1 image while doing so invisibly? If so, thanks Hi guys, my first post so hi to you all i need some help with a website i made(i know it isn't the best website in the world lol),but its my 2nd one ever so i am proud of it lol, i made the template in photoshop,sliced it in Imageready and i want to make it so i can put my text on to the main grey bit but can't figure out how for the life of me lol,can anyone tell me how to make it so i can write over the main section? is it even possible? Cheers, me Hello everyone! I am building a website and I am having a bug in IE. An item on the main page is out of place. However, if I load the "Compatibility view" everything works fine. The page also works fine in other browsers (Chrome, Firefox, Opera, Safari). Could someone point me to the right direction? The website http://yoga-light.ru/test/liquid3/index.htm Screenshot of the bug: http://yoga-light.ru/test/liquid3/iebug.jpg Thank you in advance, any help would be greatly appreciated! Nevermind i figured it out So i want my items in rows on my product page but with the shopping cart layout the way it is i can figure it out.I'm actually looking for someone to help me build it.I would especially like to be able to ask you to do something and then see it done and put on the website.I would be willing to pay for everything done.If anyone can help please let me know. OK hi there. I'm sorry if there is another topic with this but there are so many pages around here and i dont have so much free time to read everything and if there is another topic pls if you can pm with that topic and delete this topic. So my problem is this how can i make one html page or php or i dont know what i need to do this to contain two or more pages that can be accesed only when i click on some link. So more pages on a single document. That is what i need. Or i need also to know how to make different documents and they appear on a single page. Sorry again if that topics exist but how i sad earlier i dont have much free time but i really want to learn this things beacause i know some basics about html and i want to make a good website soon. Thanks in advance. Hi I am new to these forums, I am currently building a website from a template I purchased. It is coming along well but I am now stuck when trying to use the first page of my website as an ebay listing page. Of course when I upload my new ebay page there is nothing but text and broken links. How do I connect this html in my ebay listing page with my source code on my website?. Or do I have to upload all image files for borders and headers to a server separately and link straight to them one by one?. Is it to do with the very top html on the page where it says similar to href source etc etc?. My website is fine since I have uploaded all the necessary files to the directory so linking all the images etc. Really appreciate some help I have been stuck for weeks trying to get the graphics to work on my ebay page. So, I've designed my site to cater best to FF, but now I'm noticing that it looks like it should in IE, and it seems like FF blows up my text and images an extra size! Why is this? Check out my site http://www.justingillphoto.com and switch rendering between FF and IE. See how the sizing is all out of whack in FF? What's causing this? Is there some recent FF update that makes my CSS obsolete or something? It happens on every page, even my blog! This has only happened recently. It used to be fine... EDIT:: Now that I investigate it, the format is fine when I open html files on my hardrive, but they get screwy once they're uploaded on my server! What could be causing this?! |