<?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>Abeon Tech &#187; CSS</title>
	<atom:link href="http://abeontech.com/tag/css/feed" rel="self" type="application/rss+xml" />
	<link>http://abeontech.com</link>
	<description>Abeon Techs Geeky blog for Coders, Gamers, Webmasters and Tech Addicts!</description>
	<lastBuildDate>Thu, 28 Jul 2011 18:50:43 +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>Centering divs</title>
		<link>http://abeontech.com/350-webdesign-centering-divs</link>
		<comments>http://abeontech.com/350-webdesign-centering-divs#comments</comments>
		<pubDate>Mon, 14 Jun 2010 00:34:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://www.abeontech.com/?p=350</guid>
		<description><![CDATA[I often get asked how to properly align divs and containers on website pages.
The most common bugbear is centering divs either vertically and horizontally, which can be a pain unless you know how.
This post has three examples of how to position the divs and should help clear up any confusion you may have.]]></description>
			<content:encoded><![CDATA[<p>I often get asked how to properly align divs and containers on website pages.<br />
The most common bugbear is centering divs either vertically and horizontally, which can be a pain unless you know how.<br />
This post has three examples of how to position the divs and should help clear up any confusion you may have.</p>
<p>Text is simple to align with css using the &#8220;text-align&#8221; property, as below:</p>
<div class="codecolorer-container html4strict default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:500px;"><div class="html4strict codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">// CSS<br />
.positionme { text-align:center }<br />
<br />
// HTML<br />
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">div</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;positionme&quot;</span>&gt;</span><br />
Position Me!<br />
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">div</span>&gt;</span><br />
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">pre</span>&gt;</span></div></div>
<p>Positioning a div to center vertically and horizontally is a little trickier, but easy when you know how!<br />
Let&#8217;s start with centering the div horizontally:</p>
<div class="codecolorer-container html4strict default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:500px;"><div class="html4strict codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">// CSS<br />
.positionme { text-align:center; width:250px; margin:auto auto }<br />
<br />
// HTML<br />
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">div</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;positionme&quot;</span>&gt;</span><br />
Position Me!<br />
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">div</span>&gt;</span><br />
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">pre</span>&gt;</span></div></div>
<p>We can use a similar trick to get the div positioned centered vertically too:</p>
<div class="codecolorer-container html4strict default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:500px;"><div class="html4strict codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">// CSS<br />
.positionme { text-align:center; width:250px;height:250px;<br />
&nbsp; &nbsp; &nbsp; &nbsp;left:50%; top:50%;<br />
&nbsp; &nbsp; &nbsp; &nbsp;margin:-125px 0 0 -125px;<br />
&nbsp;}<br />
<br />
// HTML<br />
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">div</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;positionme&quot;</span>&gt;</span><br />
Position Me!<br />
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">div</span>&gt;</span><br />
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">pre</span>&gt;</span></div></div>
]]></content:encoded>
			<wfw:commentRss>http://abeontech.com/350-webdesign-centering-divs/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AVElf – AV Arcade Template</title>
		<link>http://abeontech.com/311-webdesign-avelf-free-av-arcade-template</link>
		<comments>http://abeontech.com/311-webdesign-avelf-free-av-arcade-template#comments</comments>
		<pubDate>Tue, 16 Dec 2008 16:30:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[AV Arcade]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Valid Code]]></category>

		<guid isPermaLink="false">http://www.abeontech.com/?p=311</guid>
		<description><![CDATA[AVElf is a free template for AV Arcade v4.0.1.
AVElf a little different from other AV Arcade Templates Ive seen, and has been modified a lot.
The flash arcade skin it totally free. All I require you leave the link in the footer.
I have moved the locations of the Featured Games and News modules so they fit into the template better.]]></description>
			<content:encoded><![CDATA[<p><strong>AVElf is a free template for the AV Arcade game site script (v4.0.1)</strong></p>
<p>AVElf is a little different from other <strong>AV Arcade Templates</strong> I&#8217;ve seen, and has been modified a lot.</p>
<p>The flash arcade skin it totally free. All I require you leave the link in the footer.</p>
<p>I have moved the locations of the Featured Games and News modules so they fit into the template better.<br />
I have also SEO and Adsense Optimized this template a little, including keywords hear the header more text on pages and so on.</p>
<p><span id="more-311"></span></p>
<h3>Install</h3>
<ol>
<li> Turn off &#8220;Featured Games&#8221; on the Admin/Settings page.</li>
<li> Upload all files from the &#8220;<strong># Replace</strong>&#8221; folder and overwrite the original ones.</li>
<li> Set AVElf as the default skin on the Admin/Settings page.</li>
<li> Report any bugs or errors!</li>
</ol>
<h3>Notes</h3>
<p><strong>Please note: This no longer works with the official AV Arcade source code. It will only display correctly when used with <a href="http://www.abeontech.com/tech-blog/av-arcade">AV Arcade v4.0.2 c [Unofficial]</a></strong>.<br />
This template has been tested on:<br />
     &#8211; FireFox v3.0.4<br />
     &#8211; Internet Explorer v7.0.5<br />
     &#8211; Opera v9.62<br />
This template looks best when viewed with FireFox, as with any website.</p>
<p><strong>Please note:</strong><br />
This template has been updated to fit into the w3c valid version. The Template is included with the modified code <img src='http://abeontech.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<div style="text-align:left;padding-left:80px;">
<a href="http://www.avelfv2.freezoka.com/"><img src="http://i42.tinypic.com/2ylqki9.png" alt="AVElf Demo" /></a> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <a href='http://www.abeontech.com/av-arcade/320/av-arcade-v402-unofficial'><img src="http://i42.tinypic.com/5505dz.png" alt="Download AVElf" /></a>
</div>
<h3>About AV Arcade</h3>
<blockquote><p>AV arcade is a free arcade script from AV Scripts. It has features which easily match those of paid scripts. There is no need for anyone to buy an arcade script!</p>
<p>AV Arcade will always be free, but support is much needed to make sure AV Arcade is around for longer. If you purchase a Gamepack or copyright removal you are really helping to keep AV Arcade development going. Version 4.0 is not too far away and will include some great new features including this template you see right here.</p></blockquote>
<p>AV Arcade is available for free by following the link below:<br />
<a href="http://www.avscripts.net/avarcade/">Download AV Arcade</a></p>
]]></content:encoded>
			<wfw:commentRss>http://abeontech.com/311-webdesign-avelf-free-av-arcade-template/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Css Image Hover Effect</title>
		<link>http://abeontech.com/34-webdesign-css-image-hover-effect</link>
		<comments>http://abeontech.com/34-webdesign-css-image-hover-effect#comments</comments>
		<pubDate>Tue, 02 Sep 2008 19:19:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://www.abeontech.com/?p=34</guid>
		<description><![CDATA[With CSS all you need to do is put a piece of code in your style sheet to automagically make image or text rollovers.
You don't need a second image or messy scripting.]]></description>
			<content:encoded><![CDATA[<p>With CSS all you need to do is put a piece of code in your style sheet to automagically make image or text rollovers.<br />
You don&#8217;t need a second image or messy scripting.</p>
<p><span id="more-34"></span></p>
<p><strong>Step 1</strong></p>
<p>Put the code in the head section of your page between the head tags, like in the below example:</p>
<div class="codecolorer-container html4strict default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:500px;"><div class="html4strict codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">head</span>&gt;</span><br />
&nbsp; &nbsp;<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">title</span>&gt;</span>CSS Image Hover Effect<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">title</span>&gt;</span><br />
&nbsp; &nbsp;<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">style</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text/css&quot;</span>&gt;</span><br />
&nbsp; &nbsp; &nbsp;#center{ text-align:center; padding:auto auto auto auto;}<br />
&nbsp; &nbsp; &nbsp;a.linkopacity img {<br />
&nbsp; &nbsp; &nbsp;filter:alpha(opacity=50);<br />
&nbsp; &nbsp; &nbsp;-moz-opacity: 0.5;<br />
&nbsp; &nbsp; &nbsp;opacity: 0.5;<br />
&nbsp; &nbsp; &nbsp;-khtml-opacity: 0.5;}<br />
<br />
&nbsp; &nbsp; &nbsp;a.linkopacity:hover img {<br />
&nbsp; &nbsp; &nbsp;filter:alpha(opacity=100);<br />
&nbsp; &nbsp; &nbsp;-moz-opacity: 1.0;<br />
&nbsp; &nbsp; &nbsp;opacity: 1.0;<br />
&nbsp; &nbsp; &nbsp;-khtml-opacity: 1.0; }<br />
&nbsp; &nbsp;<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">style</span>&gt;</span><br />
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">head</span>&gt;</span></div></div>
<p>You only have to do this once.</p>
<p><strong>Step 2</strong></p>
<p>Then add a class=&#8221;linkopacity&#8221; to the link when you want to make the rollover.<br />
It works with hyperlinked text and images.</p>
<div class="codecolorer-container html4strict default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:500px;"><div class="html4strict codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">a</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;linkopacity&quot;</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;#&quot;</span> <span style="color: #000066;">title</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;CSS-Rollover&quot;</span> &gt;</span><br />
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">img</span> <span style="color: #000066;">src</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;http://abeon-hosting.com/examples/css-image-hover-effect/css2.jpg&quot;</span> <span style="color: #000066;">border</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;0&quot;</span> <span style="color: #000066;">style</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;border:1px solid black;&quot;</span> &nbsp;<span style="color: #000066;">width</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;50&quot;</span> <span style="color: #000066;">height</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;50&quot;</span> <span style="color: #000066;">alt</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;CSS tutorials&quot;</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">a</span>&gt;</span><br />
<br />
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">a</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;linkopacity&quot;</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;#&quot;</span> <span style="color: #000066;">title</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;CSS-Design&quot;</span> &gt;</span><br />
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">img</span> <span style="color: #000066;">src</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;http://abeon-hosting.com/examples/css-image-hover-effect/css1.jpg&quot;</span> <span style="color: #000066;">border</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;0&quot;</span> <span style="color: #000066;">style</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;border:1px solid black;&quot;</span> &nbsp;<span style="color: #000066;">width</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;50&quot;</span> <span style="color: #000066;">height</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;50&quot;</span> <span style="color: #000066;">alt</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;WebDesign tutorials&quot;</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">a</span>&gt;</span><br />
<br />
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">a</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;linkopacity&quot;</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;#&quot;</span> <span style="color: #000066;">title</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;CSS-Effect&quot;</span> &gt;</span><br />
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">img</span> <span style="color: #000066;">src</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;http://abeon-hosting.com/examples/css-image-hover-effect/CSS-Stylesheets.gif&quot;</span> <span style="color: #000066;">border</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;0&quot;</span> <span style="color: #000066;">style</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;border:1px solid black;&quot;</span> &nbsp;<span style="color: #000066;">width</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;50&quot;</span> <span style="color: #000066;">height</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;50&quot;</span> <span style="color: #000066;">alt</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;Hosting tutorials&quot;</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">a</span>&gt;</span></div></div>
<p>Note:<br />
Even though this code isn&#8217;t strict standards compliant, all the style information should go in the CSS file too!</p>
]]></content:encoded>
			<wfw:commentRss>http://abeontech.com/34-webdesign-css-image-hover-effect/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

