<?xml version="1.0" encoding="iso-8859-1" ?>
<rss version="2.0">
<channel>
	<title>RSS Feed</title>
	<description>RSS Feed</description>
	<link>http://www.seaton-online.com/forum/index.php</link>
	<pubDate>Wed, 08 Sep 2010 13:09:37 +0100</pubDate>
	<ttl>30</ttl>
	<item>
		<title>Getting The Key Of An Array</title>
		<link>http://www.seaton-online.com/forum/index.php?showtopic=1132</link>
		<description><![CDATA[Having a bit of trouble, I'm making a class for a simple server testing script but i can't get my array key to echo out propperly.<br /><br />First, the code:<br /><br />The class:<br /><br /><!--c1--><div class='codetop'>CODE</div><div class='codemain'><!--ec1-->&#60;?php<br />class ServerStatus{<br />&nbsp;&nbsp;&nbsp;&nbsp;function servercheck&#40;$server,$port&#41;{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//Check that the port value is not empty<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if&#40;empty&#40;$port&#41;&#41;{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$port=80;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//Check that the server value is not empty<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if&#40;empty&#40;$server&#41;&#41;{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$server='localhost';<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//Connection<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$fp=@fsockopen&#40;$server, $port, $errno, $errstr, 1&#41;;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//Check if connection is present<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if&#40;$fp&#41;{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//Return Alive<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return 1;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;} else{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//Return Dead<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return 0;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//Close Connection<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;fclose&#40;$fp&#41;;<br />&nbsp;&nbsp;&nbsp;&nbsp;}<br />&nbsp;&nbsp;&nbsp;&nbsp;<br />&nbsp;&nbsp;&nbsp;&nbsp;function doChecks&#40;&#41;{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$serviceStatus = array&#40;&#41;;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$services = array&#40;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'HTTP &#40;Port 80&#41;' =&#62; array&#40;'localhost' =&#62; 80&#41;,<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'HTTPS &#40;Port 443&#41;' =&#62; array&#40;'localhost' =&#62; 443&#41;,<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'FTP &#40;Port 21&#41;' =&#62; array&#40;'localhost' =&#62; 21&#41;,<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'MySQL &#40;Port 3306&#41;' =&#62; array&#40;'localhost' =&#62; 3306&#41;,<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'SMTP &#40;Port 25&#41;' =&#62; array&#40;'localhost' =&#62;&nbsp;&nbsp;25&#41;,<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'POP3 &#40;Port 110&#41;' =&#62; array&#40;'localhost' =&#62;&nbsp;&nbsp;110&#41;,<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'OFFLINE TEST' =&#62; array&#40;'http&#58;//www.nonexistent.com' =&#62; 80&#41;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#41;;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;foreach&#40;$services as $name =&#62; $server&#41;{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;foreach&#40;$server as $host =&#62; $port&#41;{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$currentService = key&#40;$services&#41;;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if&#40;$this-&#62;servercheck&#40;$host,$port&#41;&#41;{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$serviceStatus&#91;&#93; = array&#40;$currentService =&#62; 'online'&#41;;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}else{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$serviceStatus&#91;&#93; = array&#40;$currentService =&#62; 'offline'&#41;;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return $serviceStatus;<br />&nbsp;&nbsp;&nbsp;&nbsp;}<br />&nbsp;&nbsp;&nbsp;&nbsp;<br />&nbsp;&nbsp;&nbsp;&nbsp;function getServiceStatus&#40;&#41;{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$serviceStatus = $this-&#62;doChecks&#40;&#41;;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;foreach&#40;$serviceStatus as $statusArray&#41;{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;foreach&#40;$statusArray as $service =&#62; $status&#41;{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;echo $service . ' - ' . $status . '&#60;br /&#62;';<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />&nbsp;&nbsp;&nbsp;&nbsp;}<br />}<br />?&#62;<!--c2--></div><!--ec2--><br /><br /><br />How it's called:<br /><br /><!--c1--><div class='codetop'>CODE</div><div class='codemain'><!--ec1-->&nbsp;&nbsp;&nbsp;&nbsp;$ServerStatus = new ServerStatus;<br />&nbsp;&nbsp;&nbsp;&nbsp;<br />&nbsp;&nbsp;&nbsp;&nbsp;$ServerStatus-&#62;getServiceStatus&#40;&#41;;<!--c2--></div><!--ec2--><br /><br /><br />Now, the script does it's job apart from echoing out the names of the sites being tested, this is what happens:<br /><br />HTTPS (Port 443) - online<br />HTTPS (Port 443) - online<br />HTTPS (Port 443) - online<br />HTTPS (Port 443) - online<br />HTTPS (Port 443) - online<br />HTTPS (Port 443) - online<br />HTTPS (Port 443) - offline<br /><br /><br />And it should be:<br /><br /><br /><br />HTTP (Port 80) - online<br />HTTPS (Port 443) - online<br />FTP (Port 21) - online<br />MySQL (Port 3306) - online<br />SMTP (Port 25) - online<br />POP3 (Port 110) - online<br />OFFLINE TEST - offline<br /><br />I'm guessing I've got the key() function put in place wrong?<br /><br />Any help please? Thanks.]]></description>
		<pubDate>Fri, 07 May 2010 18:06:58 +0100</pubDate>
		<guid>http://www.seaton-online.com/forum/index.php?showtopic=1132</guid>
	</item>
	<item>
		<title>Php - Including File Names Via Get</title>
		<link>http://www.seaton-online.com/forum/index.php?showtopic=1131</link>
		<description><![CDATA[Is it bad practice to do this? Seen a few people around the net saying it is bad practice to do so. For example, I was going to change the way i "template" my sites.<br /><br />Before, I had functions (createHeader and createFooter) that simply put together the header and footer together with variables passed to createHeader for anything needed in the &lt;head&gt; of specific pages (title, extra scripts, stylesheets etc).<br /><br />I was going to do something like this:<br /><!--c1--><div class='codetop'>CODE</div><div class='codemain'><!--ec1-->&#60;html&#62;<br />&#60;head&#62;&#60;title&#62;&#60;/title&#62;&#60;/head&#62;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#60;?php<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$page = $_GET&#91;'page'&#93;;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if&#40;!empty&#40;$page&#41;&#41;{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$allowedPages = array&#40;&#34;page1&#34;, &#34;page2&#34;, &#34;page3&#34;&#41;;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if&#40;in_array&#40;$page, $allowedPages&#41;&#41;{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;include&#40;&#34;pages/&#34; . $_GET&#91;'page'&#93; . &#34;.php&#34;&#41;;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}else{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;echo &#34;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#60;h1&#62;Error&#60;/h1&#62;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#60;p&#62;The page you have requested does not exist, please go back and select another page&#60;/p&#62;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#34;;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}else{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;include&#40;'pages/main.php'&#41;;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ?&#62;<br />&#60;/html&#62;<!--c2--></div><!--ec2--><br /><br />I got the idea when i was reading on Themeforest but a few say its all bad practice, if it is, why? What are the best ways of "templating" sites?]]></description>
		<pubDate>Tue, 06 Apr 2010 15:52:08 +0100</pubDate>
		<guid>http://www.seaton-online.com/forum/index.php?showtopic=1131</guid>
	</item>
	<item>
		<title>Happy Birthday</title>
		<link>http://www.seaton-online.com/forum/index.php?showtopic=1130</link>
		<description><![CDATA[Mr P!  <img src="http://www.seaton-online.com/forum/style_emoticons/default/Big Grin.gif" style="vertical-align:middle" emoid=":biggrin:" border="0" alt="Big Grin.gif" /> <br /><br />How many is that then? You must have overtaken me by now <img src="http://www.seaton-online.com/forum/style_emoticons/default/wink.gif" style="vertical-align:middle" emoid=";)" border="0" alt="wink.gif" />]]></description>
		<pubDate>Mon, 29 Mar 2010 20:52:44 +0100</pubDate>
		<guid>http://www.seaton-online.com/forum/index.php?showtopic=1130</guid>
	</item>
	<item>
		<title>Registering Domains On Other Peoples Behalf</title>
		<link>http://www.seaton-online.com/forum/index.php?showtopic=1129</link>
		<description><![CDATA[What is the best way of registering domains for people?<br /><br />I have a reseller account for any websites I do for people but the bit I am unsure about is the domains. I can point them to the section on the server which is created for them but it is getting the domain to start with. Is there a registrar i can set up an account with and register the domains for said person with their address etc so they still own it but i can edit the nameservers etc or is it a case of getting the person to buy it themselves and asking them to change their nameservers?<br /><br />The reason i don't want to register them the usual way is that my details will be associated with the domain and i basically own it.<br /><br /><br />Thanks for any advice.]]></description>
		<pubDate>Mon, 29 Mar 2010 14:32:05 +0100</pubDate>
		<guid>http://www.seaton-online.com/forum/index.php?showtopic=1129</guid>
	</item>
	<item>
		<title>Positioning Elements In Ie</title>
		<link>http://www.seaton-online.com/forum/index.php?showtopic=1128</link>
		<description><![CDATA[Hi guys, me as usual.<br /><br />I'm having a bit of trouble with IE as usual.<br /><br />I've started learning Jquery and it has thrown me way out of my CSS comfort zone.<br /><br />My problem is, I've made a drop down menu and it's perfect in Firefox (as usual) but in IE the drop down is off to the right about 60px. I'm not sure on how to position it because i've always positioned things using margin's but since it is positioned:absolute the only way i know how to move it is via right:10px/left:10px but the issue there is that the element will be positioned differently if a browser is resized etc.<br /><br />Here is my code just incase it is something i've done wrong:<br /><br /><br />HTML:<br /><!--c1--><div class='codetop'>CODE</div><div class='codemain'><!--ec1-->&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#60;div id=&#34;header&#34;&#62;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#60;div id=&#34;header-links&#34;&#62;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#60;ul class=&#34;menu&#34;&#62;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#60;li&#62;&#60;a href=&#34;#&#34;&#62;&#60;img src=&#34;style/images/home-button.png&#34; /&#62;&#60;/a&#62;&#60;/li&#62;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#60;li id=&#34;hover&#34;&#62;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#60;a href=&#34;#&#34;&#62;&#60;img src=&#34;style/images/services-button.png&#34; /&#62;&#60;/a&#62;<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#60;ul class=&#34;submenu&#34;&#62;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#60;li&#62;&#60;a href=&#34;#&#34;&#62;4 Page Package&#60;/a&#62;&#60;/li&#62;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#60;li&#62;&#60;a href=&#34;#&#34;&#62;10 Page Package&#60;/a&#62;&#60;/li&#62;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#60;li&#62;&#60;a href=&#34;#&#34;&#62;Make Your Own&#60;/a&#62;&#60;/li&#62;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#60;li&#62;&#60;a href=&#34;#&#34;&#62;The Process&#60;/a&#62;&#60;/li&#62;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#60;/ul&#62;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#60;/li&#62;<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#60;li&#62;&#60;a href=&#34;#&#34;&#62;&#60;img src=&#34;style/images/portfolio-button.png&#34; /&#62;&#60;/a&#62;&#60;/li&#62;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#60;li&#62;&#60;a href=&#34;#&#34;&#62;&#60;img src=&#34;style/images/contact-button.png&#34; /&#62;&#60;/a&#62;&#60;/li&#62;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#60;/ul&#62;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#60;/div&#62;&lt!--end header-links--&gt;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#60;div class=&#34;clearer&#34;&#62;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#60;/div&#62;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#60;/div&#62;&lt!--end header--&gt;<!--c2--></div><!--ec2--><br /><br /><br />CSS:<br /><!--c1--><div class='codetop'>CODE</div><div class='codemain'><!--ec1-->#header-links ul{<br />list-style&#58;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;none;<br />margin&#58;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0;<br />padding&#58;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0;<br />}<br /><br />ul.menu li{<br />float&#58;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;left;<br />padding&#58;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0 10px 0 10px;<br />}<br /><br />#header-links img{<br />border&#58;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;none;<br />}<br /><br />ul.menu li ul.submenu{<br />background&#58;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;#e7e5e5;<br />position&#58;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;absolute;<br />width&#58;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;175px;<br />top&#58; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;83px;<br />-moz-border-radius-bottomleft&#58;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;10px;<br />-moz-border-radius-bottomright&#58; &nbsp;&nbsp;&nbsp;&nbsp;10px;<br />-webkit-border-bottom-left-radius&#58; &nbsp;&nbsp;&nbsp;&nbsp;5px;<br />-webkit-border-bottom-right-radius&#58; 5px;<br />display&#58;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;none;<br />}<br /><br />ul.menu li ul.submenu li{<br />width&#58;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;auto;<br />float&#58;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;left;<br />padding&#58;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;5px 0 5px 0;<br />border-top&#58; &nbsp;&nbsp;&nbsp;&nbsp;1px solid #d1d1d1;<br />border-bottom&#58; &nbsp;&nbsp;&nbsp;&nbsp;1px solid #f2f2f2;<br />width&#58;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;175px;<br />}<br /><br />ul.menu li ul.submenu li a{<br />text-decoration&#58;none;<br />color&#58;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;#535252;<br />font-weight&#58;&nbsp;&nbsp;&nbsp;&nbsp;bold;<br />padding&#58;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;5px 40px 7px 20px;<br />}<br /><br />ul.menu li&#58;hover ul.submenu{<br />display&#58;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;block;<br />}<!--c2--></div><!--ec2--><br /><br />JQUERY:<br /><!--c1--><div class='codetop'>CODE</div><div class='codemain'><!--ec1-->$&#40;document&#41;.ready&#40;function&#40;&#41;{<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;$&#40;'.menu li ul'&#41;.css&#40;{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;display&#58; 'none'&nbsp;&nbsp;&nbsp;&nbsp;<br />&nbsp;&nbsp;&nbsp;&nbsp;}&#41;;<br />&nbsp;&nbsp;&nbsp;&nbsp;<br />&nbsp;&nbsp;&nbsp;&nbsp;$&#40;'.menu li#hover'&#41;.hoverIntent&#40;function&#40;&#41;{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$&#40;this&#41;.find&#40;'ul'&#41;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;.stop&#40;'true', 'true'&#41;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;.slideDown&#40;&#41;;<br />&nbsp;&nbsp;&nbsp;&nbsp;}, function&#40;&#41;{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$&#40;this&#41;.find&#40;'ul'&#41;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;.stop&#40;'true', 'true'&#41;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;.slideUp&#40;&#41;;<br />&nbsp;&nbsp;&nbsp;&nbsp;}&#41;;<br />}&#41;;<!--c2--></div><!--ec2--><br /><br /><br />Thanks in advance for any advice.]]></description>
		<pubDate>Wed, 24 Mar 2010 02:27:35 +0000</pubDate>
		<guid>http://www.seaton-online.com/forum/index.php?showtopic=1128</guid>
	</item>
	<item>
		<title>Html Text As An Image</title>
		<link>http://www.seaton-online.com/forum/index.php?showtopic=1127</link>
		<description><![CDATA[Can this be done? I'm sure I've seen it on a website but can't remember which one.<br /><br />The text in the header started off as normal (quite blocky), then it seemed to generate into an image on the fly and the text went nice a smooth (I was in Firefox).]]></description>
		<pubDate>Thu, 04 Mar 2010 19:27:53 +0000</pubDate>
		<guid>http://www.seaton-online.com/forum/index.php?showtopic=1127</guid>
	</item>
	<item>
		<title>Where Is Everyone?</title>
		<link>http://www.seaton-online.com/forum/index.php?showtopic=1126</link>
		<description><![CDATA[How is everybody doing? Doesn't look like there has been a post on here since December.]]></description>
		<pubDate>Fri, 26 Feb 2010 18:13:05 +0000</pubDate>
		<guid>http://www.seaton-online.com/forum/index.php?showtopic=1126</guid>
	</item>
	<item>
		<title>Stopping Floating Elements Jumping Out Of Their Container</title>
		<link>http://www.seaton-online.com/forum/index.php?showtopic=1125</link>
		<description><![CDATA[Hi guys, long time no see!<br /><br />Anyway, i am trying to make a sort of 3 column layout.<br /><br />Inside my content container there is 2 images displayed vertically, then some text to the right of them, then another set of text to the right of that but i can't get any of these to stay within the background they are supposed to be in. If i float them they jump out of all div's and do their own thing. Maybe it's because I'm rusty or because I've got a cold but i cant for the life of me work it out, I'm sure it's something I've been stupid to forget as usual.<br /><br />Thanks.]]></description>
		<pubDate>Thu, 25 Feb 2010 21:09:54 +0000</pubDate>
		<guid>http://www.seaton-online.com/forum/index.php?showtopic=1125</guid>
	</item>
	<item>
		<title>Merry Christmas</title>
		<link>http://www.seaton-online.com/forum/index.php?showtopic=1124</link>
		<description><![CDATA[Hope you all have a really good day! <br />]]></description>
		<pubDate>Fri, 25 Dec 2009 12:03:18 +0000</pubDate>
		<guid>http://www.seaton-online.com/forum/index.php?showtopic=1124</guid>
	</item>
	<item>
		<title>Wordpress</title>
		<link>http://www.seaton-online.com/forum/index.php?showtopic=1123</link>
		<description><![CDATA[Hello  <img src="http://www.seaton-online.com/forum/style_emoticons/default/Big Grin.gif" style="vertical-align:middle" emoid=":biggrin:" border="0" alt="Big Grin.gif" /> <br /><br />I'm trying to pull the categoriesand archives into the content of a page I've created in wordpress but if I use the same code from the sidebar nothing displays, is there a way of getting them to display within the content of the page. ??<br /><br />Also, on the home page it display's the latest posts added, is there a way of excluding posts from 1 category ??<br /><br />Thanks<br /><br />]]></description>
		<pubDate>Wed, 02 Dec 2009 11:22:04 +0000</pubDate>
		<guid>http://www.seaton-online.com/forum/index.php?showtopic=1123</guid>
	</item>
</channel>
</rss>