<?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>Open Script Solution&#187; width</title>
	<atom:link href="http://www.openscriptsolution.com/tag/width/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.openscriptsolution.com</link>
	<description>... where solutions for script programming are found ...</description>
	<lastBuildDate>Tue, 31 Jan 2012 03:22:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How to Display The Wider Logo in WordPress Login Page using Wp Customized Login Plugin</title>
		<link>http://www.openscriptsolution.com/2010/01/09/how-to-display-the-wider-logo-in-wordpress-login-page-using-wp-customized-login-plugin/</link>
		<comments>http://www.openscriptsolution.com/2010/01/09/how-to-display-the-wider-logo-in-wordpress-login-page-using-wp-customized-login-plugin/#comments</comments>
		<pubDate>Sat, 09 Jan 2010 05:10:24 +0000</pubDate>
		<dc:creator>Masino Sinaga</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[adjust]]></category>
		<category><![CDATA[display]]></category>
		<category><![CDATA[full]]></category>
		<category><![CDATA[height]]></category>
		<category><![CDATA[login]]></category>
		<category><![CDATA[logo]]></category>
		<category><![CDATA[page]]></category>
		<category><![CDATA[width]]></category>

		<guid isPermaLink="false">http://www.openscriptsolution.com/?p=1086</guid>
		<description><![CDATA[Today I customized the WordPress logo that appears in wp-admin page with my own logo on one of my websites. I have been using Wp Customized Login plugin for this purpose. After installing and activating the plugin, everything seemed okay, until I found something that annoying me. It was about my own logo did not [...]]]></description>
			<content:encoded><![CDATA[<p>Today I customized the WordPress logo that appears in wp-admin page with my own logo on one of my websites. I have been using <a href="http://wordpress.org/extend/plugins/wp-customized-login/" target="_blank">Wp Customized Login plugin</a> for this purpose. After installing and activating the plugin, everything seemed okay, until I found something that annoying me. It was about my own logo did not appear full properly. The image seemed need to be a little too left and stops a little before the right side, since my dimension logo size is 500 pixels (width) x 100 pixels (height). Meanwhile, the recommended logo width by WordPress is about 300 pixels. After reading from <a href="http://www.thinkinginwordpress.com/2008/12/customized-wordpress-login-page-plugin/comment-page-1/#comment-54">the related comments in author&#8217;s website</a>, then I found the solution how to overcome my problem based on the comment from the author of this plugin. <span id="more-1086"></span></p>
<p>Open your <strong>/wp-content/plugins/wp-customized-login/custom-login.css</strong> file, and find this code:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>2
</pre></td><td class="code"><pre class="css" style="font-family:monospace;"><span style="color: #cc00cc;">#login</span> h1 a<span style="color: #00AA00;">&#123;</span><span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span><span style="color: #993333;">url</span><span style="color: #00AA00;">&#40;</span><span style="color: #ff0000; font-style: italic;">logo.png</span><span style="color: #00AA00;">&#41;</span> <span style="color: #993333;">no-repeat</span><span style="color: #00AA00;">;</span><span style="color: #00AA00;">&#125;</span></pre></td></tr></table></div>

<p>then replace with this following code:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>2
3
4
5
6
7
8
</pre></td><td class="code"><pre class="css" style="font-family:monospace;"><span style="color: #cc00cc;">#login</span> h1 a<span style="color: #00AA00;">&#123;</span>
  <span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span><span style="color: #993333;">transparent</span> <span style="color: #993333;">url</span><span style="color: #00AA00;">&#40;</span><span style="color: #ff0000; font-style: italic;">logo.png</span><span style="color: #00AA00;">&#41;</span> <span style="color: #993333;">no-repeat</span> <span style="color: #993333;">scroll</span> <span style="color: #cc66cc;">0</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">display</span><span style="color: #00AA00;">:</span><span style="color: #993333;">block</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span><span style="color: #933;">100px</span><span style="color: #00AA00;">;</span> <span style="color: #808080; font-style: italic;">/* adjust it with your logo's height */</span>
  <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span><span style="color: #933;">500px</span><span style="color: #00AA00;">;</span> <span style="color: #808080; font-style: italic;">/* adjust it with your logo's width */</span>
  <span style="color: #000000; font-weight: bold;">margin-left</span><span style="color: #00AA00;">:</span><span style="color: #933;">-80px</span><span style="color: #00AA00;">;</span>  <span style="color: #808080; font-style: italic;">/* adjust it in order to make your logo centered */</span>
<span style="color: #00AA00;">&#125;</span></pre></td></tr></table></div>

<p>You can see the demo result of the modification above from this login page of the following webiste: <a href="http://www.visualbasicindonesia.com/wp-admin/" target="_blank">Visual Basic Indonesia</a>.<br />
Hopefully this is helpful for you.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.openscriptsolution.com%2F2010%2F01%2F09%2Fhow-to-display-the-wider-logo-in-wordpress-login-page-using-wp-customized-login-plugin%2F&amp;title=How%20to%20Display%20The%20Wider%20Logo%20in%20WordPress%20Login%20Page%20using%20Wp%20Customized%20Login%20Plugin" id="wpa2a_2"><img src="http://www.openscriptsolution.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.openscriptsolution.com/2010/01/09/how-to-display-the-wider-logo-in-wordpress-login-page-using-wp-customized-login-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
