<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"><channel><title><![CDATA[Conquest of Elegance]]></title><description><![CDATA[Articles]]></description><link>http://www.conquestofelegance.com/</link><copyright><![CDATA[Copyright Conquest of Elegance]]></copyright><item><title><![CDATA[Wordpress?]]></title><description><![CDATA[Hello all, hope everyone&#39;s had a good weekend.  
  
I&#39;m thinking of using   Wordpress   on my 
website, because I&#39;m not happy with my current &quot;CMS&quot;.  
This means I&#39;ll continue updating my content -after- I&#39;ve installed Wordpress, 
because I don&#39;t want double work.  
Since I&#39;m gonna have to adjust Wordpress to my website anyway, I&#39;m thinking of 
making a new layout to go with the new CMS.  
  
Does anyone have anything good or bad to say about wordpress?  
Do you think it would fit my website?  
  
Anyway, stay tuned. Big update soon.  
  
Love, Marlou. :-)]]></description><pubDate>Sun, 07 Dec 2008 16:00:15 +0000</pubDate><link>http://www.conquestofelegance.com/home/wordpress/</link><guid>http://www.conquestofelegance.com/home/wordpress/</guid></item><item><title><![CDATA[Join the Forum!]]></title><description><![CDATA[As you've probably seen, I've starting remaking my content.  
It's not going very fast, but this is because I focussed on making a   new and improved Conquest of Elegance forum  . Let's hope it will be at least just as active as the previous one!
    
  Sign up now, it's free   :D    
      ]]></description><pubDate>Mon, 17 Nov 2008 20:14:54 +0000</pubDate><link>http://www.conquestofelegance.com/home/join-the-forum/</link><guid>http://www.conquestofelegance.com/home/join-the-forum/</guid></item><item><title><![CDATA[Website Stats]]></title><description><![CDATA[]]></description><pubDate>Thu, 13 Nov 2008 12:30:05 +0000</pubDate><link>http://www.conquestofelegance.com/about/website-stats/</link><guid>http://www.conquestofelegance.com/about/website-stats/</guid></item><item><title><![CDATA[Resolution Tester]]></title><description><![CDATA[Apart from checking your website in different browsers, you also might want to see what it looks like in   different resolutions  . For a quick and easy view - Use my Resolution Tester.
    
  
Website URL:   
    
Common:  
  
  
  
  
  
  Other:  
  
  
  
  
  * 1024x768 is the most used resolution at the moment. I advise making your website look best in it.  ]]></description><pubDate>Wed, 12 Nov 2008 22:12:34 +0000</pubDate><link>http://www.conquestofelegance.com/generators/resolution-tester/</link><guid>http://www.conquestofelegance.com/generators/resolution-tester/</guid></item><item><title><![CDATA[Dynamic textbox]]></title><description><![CDATA[With this little codesnippet, you can make a   Dynamic text-input box   like mine.   (See "Search" at the top)  
You can use this for all kinds of purposes (Search, Contact, Comment, login, etc).    
  Preview:    
  
var defaultvalue = "Search.."; 
function clearit(field) {
  field.setAttribute("class","");
  if (field.value == defaultvalue) {
    field.value = "";
  }
}
function writeit(field) {
  if(field.value == "") {
    field.value = defaultvalue;
    field.setAttribute("class","searchit");
  }
}
  
  
    
  It does the following:  
  
  Shows an input text-box with a standard value. (for example: "Search..")  
  When the user clicks the text box, the value text disappears so text can be entered.  
  When the user does not type anything in the textbox, the standard value will come back after clicking out of the textbox.  
  
      
  
&lt;script&gt;
&lt;!--
var defaultvalue = &quot;Search&quot;; // Change default value of input here
function clearit(field) {
field.setAttribute(&quot;class&quot;,&quot;&quot;);
if (field.value == defaultvalue) {
field.value = &quot;&quot;; }
}
function writeit(field) {
if(field.value == &quot;&quot;) {
field.value = defaultvalue;
field.setAttribute(&quot;class&quot;,&quot;searchit&quot;); }
}
// --&gt;
&lt;/script&gt;
      
      
  
&lt;input type=&quot;text&quot; value=&quot;Search&quot; class=&quot;searchit&quot;
onfocus=&quot;clearit(this);&quot; onblur=&quot;writeit(this);&quot; /&gt;
  
  ]]></description><pubDate>Wed, 12 Nov 2008 15:17:06 +0000</pubDate><link>http://www.conquestofelegance.com/javascript/dynamic-textbox/</link><guid>http://www.conquestofelegance.com/javascript/dynamic-textbox/</guid></item></channel></rss>