<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Royal Deer Design &#187; web developer</title>
	<atom:link href="https://www.royaldeerdesign.com/tag/web-developer/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.royaldeerdesign.com</link>
	<description>Web Design Company</description>
	<lastBuildDate>Thu, 21 Aug 2025 15:08:29 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>Javascript Change Font Size</title>
		<link>https://www.royaldeerdesign.com/2010/06/javascript-change-font-size/</link>
		<comments>https://www.royaldeerdesign.com/2010/06/javascript-change-font-size/#comments</comments>
		<pubDate>Sat, 19 Jun 2010 15:27:50 +0000</pubDate>
		<dc:creator><![CDATA[Sheuli]]></dc:creator>
				<category><![CDATA[Internet Business News]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[web developer]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://coot.arvixe.com/~royald/?p=2175</guid>
		<description><![CDATA[We are working on a website with a dynamic font size functionality. Do you know that this so useful functionality costs only two lines of code? If you consider the need of people to see larger fonts on your website you can use JavaScript code crated by our web developer. Change Font Size with Javascript]]></description>
				<content:encoded><![CDATA[<p>We are working on a website with a dynamic font size functionality. Do you know that this so useful functionality costs only two lines of code? If you consider the need of people to see larger fonts on your website you can use JavaScript code crated by our web developer.</p>
<p>Change Font Size with Javascript Ready to use code:</p>
<p><script type="text/javascript">
<!--

function changeFontSize(multiply)
{
if (document.body.style.fontSize == "") document.body.style.fontSize = "1.0em";
document.body.style.fontSize = parseFloat(document.body.style.fontSize) + (multiply * 0.2) + "em";
}

-->
</script> </p>
<p><a href="javascript:void(0);" onclick="changeFontSize(1)">+A</a><br />
<a href="javascript:void(0);" onclick="changeFontSize(-1)">-A </a></p>
<p>You can use this code on your website, just copy the code and past it into your document. </p>
]]></content:encoded>
			<wfw:commentRss>https://www.royaldeerdesign.com/2010/06/javascript-change-font-size/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Developer&#8217;s Journal: CSS Reset</title>
		<link>https://www.royaldeerdesign.com/2010/06/web-developers-journal-css-reset/</link>
		<comments>https://www.royaldeerdesign.com/2010/06/web-developers-journal-css-reset/#comments</comments>
		<pubDate>Fri, 11 Jun 2010 18:50:37 +0000</pubDate>
		<dc:creator><![CDATA[Sheuli]]></dc:creator>
				<category><![CDATA[Internet Business Tips]]></category>
		<category><![CDATA[browsers]]></category>
		<category><![CDATA[cross-browser compatibility]]></category>
		<category><![CDATA[CSS Reset]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[web developer]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://coot.arvixe.com/~royald/?p=2195</guid>
		<description><![CDATA[Web designers and web designers around the world are struggling with a cross-browser compatibility. To make web development process easier, experts have created something called CSS Reset. CSS reset is implemented in order to normalize most of the margin and padding-related differences across different browsers. This is a starting point for each HTML/CSS job. An]]></description>
				<content:encoded><![CDATA[<p>Web designers and web designers around the world are struggling with a cross-browser compatibility. To make web development process easier, experts have created something called CSS Reset. <strong>CSS reset</strong> is implemented in order to normalize most of the margin and padding-related differences across different browsers. This is a starting point for each HTML/CSS job.</p>
<p>An example bellow is crated based on Eric Meyer&#8217;s CSS reset (<em>meyerweb.com</em>) and it is recommended by Royal Deer Design.</p>
<p>&#8212; </p>
<p>html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td<br />
{<br />
  margin: 0;<br />
  padding: 0;<br />
  border: 0;<br />
  outline: 0;<br />
  font-size: 100%;<br />
  vertical-align: baseline;<br />
  background: transparent;<br />
}</p>
<p>body {<br />
  line-height: 1;<br />
}</p>
<p>ol, ul {<br />
  list-style: none;<br />
}</p>
<p>blockquote, q {<br />
  quotes: none;<br />
}</p>
<p>blockquote:before, blockquote:after, q:before, q:after {<br />
  content: &#8221;;<br />
  content: none;<br />
}</p>
<p>:focus {<br />
  outline: 0;<br />
}</p>
<p>ins {<br />
  text-decoration: none;<br />
}</p>
<p>del {<br />
  text-decoration: line-through;<br />
} </p>
<p>table {<br />
  border-collapse: collapse;<br />
  border-spacing: 0;<br />
} </p>
<p>&#8212; </p>
<p>More info:<br />
Definition of CSS Reset from Wikipedia: CSS Reset &#8211; <em>CSS declarations remove margins and standardize cross-browser rendering on common elements. </em></p>
]]></content:encoded>
			<wfw:commentRss>https://www.royaldeerdesign.com/2010/06/web-developers-journal-css-reset/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Chrome extensions all web designers and website developers must have</title>
		<link>https://www.royaldeerdesign.com/2010/04/chrome-extensions-all-web-designers-and-website-developers-must-have/</link>
		<comments>https://www.royaldeerdesign.com/2010/04/chrome-extensions-all-web-designers-and-website-developers-must-have/#comments</comments>
		<pubDate>Sun, 25 Apr 2010 10:23:10 +0000</pubDate>
		<dc:creator><![CDATA[Sheuli]]></dc:creator>
				<category><![CDATA[Internet Business News]]></category>
		<category><![CDATA[Internet Business Tips]]></category>
		<category><![CDATA[Chrome]]></category>
		<category><![CDATA[Chrome extensions]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[web designer]]></category>
		<category><![CDATA[web developer]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://coot.arvixe.com/~royald/?p=2327</guid>
		<description><![CDATA[If you are web developer I am sure you user Firefox and its great extensions for web specialists. However, it looks like there is another browser which can make your work more efficient. Chrome &#8211; a browser from Google offers many plugging for web developers and some of the are really good! Bellow a list]]></description>
				<content:encoded><![CDATA[<p>If you are web developer I am sure you user Firefox and its great extensions for web specialists. However, it looks like there is another browser which can make your work more efficient. Chrome &#8211; a browser from Google offers many plugging for web developers and some of the are really good! Bellow a list of some of them.</p>
<p>Chrome extensions for web designers and website developers:</p>
<p>Firebug Lite &#8211; website debugging and website testing tool. </p>
<p>Web Developer &#8211; Web Developer toolbar. </p>
<p>Resolution Test &#8211; testing web pages in different screen resolutions. </p>
<p>Pendule &#8211; web developer tools. </p>
<p>Image Cropper &#8211; crops images in any website on the fly. </p>
<p>Lorem Ipsum Generator &#8211; creates random dummy text, so useful for website designers to show a draft of layout for website. </p>
<p>IE Tab (for Windows) &#8211; display web pages using IE, so you can see how your website will look in Internet Explorer. </p>
<p>jQuery Shell &#8211; something for web developers, it allows jQuery command extension in current page context. </p>
<p>Color Picker &#8211; Quickly get the Hex and RGB values of any color! Also adjust Hue, Saturation, and Balance. </p>
<p>WebEdit &#8211; so cool stuff for web deisgners, it makes any webpage editable, but changes are not permanent. </p>
<p>Webpage Screenshot &#8211; easy solution to save JPG screenshots of any webpage. This extension captures the whole page. </p>
<p>SEO Site Tools &#8211; On-Page / External metrics, Social Media info, Metrics / numbering on Yahoo, Bing, Google SERPs.Extends WMT, YSE and GA with metrics. </p>
<p>Eye Dropper &#8211; eye dropper, however sometimes it doesn&#8217;t work with some configurations of browser and operating system. </p>
<p><em>Source: Royal Deer Design research and resources from sixrevisions.com </em></p>
]]></content:encoded>
			<wfw:commentRss>https://www.royaldeerdesign.com/2010/04/chrome-extensions-all-web-designers-and-website-developers-must-have/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Developer&#8217;s Journal: moving vBulletin forums to another server</title>
		<link>https://www.royaldeerdesign.com/2010/04/web-developers-journal-moving-vbulletin-forums-to-another-server/</link>
		<comments>https://www.royaldeerdesign.com/2010/04/web-developers-journal-moving-vbulletin-forums-to-another-server/#comments</comments>
		<pubDate>Fri, 16 Apr 2010 12:33:25 +0000</pubDate>
		<dc:creator><![CDATA[Sheuli]]></dc:creator>
				<category><![CDATA[Internet Business Tips]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[forums]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[vBulletin]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[web developer]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://coot.arvixe.com/~royald/?p=2345</guid>
		<description><![CDATA[Step by step instruction to move vBulletin forums from one server to another. 1. Use FTP or your hosts&#8217; file manager to move all vBulletin files from one server to another. 2. Move database to new hosting. You can create a copy of vBulletin database by using vBulletin control panel for admin. 3. Open up]]></description>
				<content:encoded><![CDATA[<p>Step by step instruction to move vBulletin forums from one server to another.</p>
<p>1. Use FTP or your hosts&#8217; file manager to move all vBulletin files from one server to another.</p>
<p>2. Move database to new hosting. You can create a copy of vBulletin database by using vBulletin control panel for admin.</p>
<p>3. Open up includes/config.php and edit variables:</p>
<p>$config[&#8216;MasterServer&#8217;][&#8216;servername&#8217;],<br />
$config[&#8216;MasterServer&#8217;][&#8216;username&#8217;],<br />
$config[&#8216;MasterServer&#8217;][&#8216;password&#8217;],<br />
$config[&#8216;Database&#8217;][&#8216;dbname&#8217;].</p>
<p>More detailed instruction you can find at vbulletin.com /&#8230;. </p>
]]></content:encoded>
			<wfw:commentRss>https://www.royaldeerdesign.com/2010/04/web-developers-journal-moving-vbulletin-forums-to-another-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
