<rss version="2.0">
		<channel>
			<title>SkillShare Forum - CSS Beauty - All Discussions</title>
			<lastBuildDate>Tue, 21 May 2013 07:30:33 -0400</lastBuildDate>
			<link>http://cssbeauty.com/skillshare/</link>
			<description></description>
			<generator>Lussumo Vanilla 1.1.9</generator>
			<item>
		<title>Forum Rules, Please READ before starting a new thread or commenting.</title>
		<link>http://cssbeauty.com/skillshare/discussion/145/</link>
		<guid isPermaLink="false">http://cssbeauty.com/skillshare/discussion/145/</guid>
		<pubDate>Sun, 08 Jan 2006 12:43:35 -0500</pubDate>
		<author>admin</author>
		<description>
			<![CDATA[<ol ><br /><li >Choose the right category when starting a thread</li><br /><li >Be descriptive with your questions, we are not mind readers.</li><br /><li >Provide example URLs whenever possible</li><br /><li >Spam will not be tolerated</li><br /><li >No Affiliate links of any kind</li><br /><li >The use of profanity will not be tolerated</li><br /><li >ENGLISH! Please try to spell and grammar check your post.</li><br /><li >NO more "Site critique, site showcase, or site review". SkillShare's mission is to help with problems, and to discuss Web Standards and Web Design topics, <strong >NOT</strong> to review sites. If you need help with a certain problem on your site, then ask specifically about that issue.</li><br /><li >NO self promotion! This means no URLs to your own websites, unless related to discussion.</li><br /></ol><br />New rules will be added as appropriate, and others will be adjusted as necessary.]]>
		</description>
	</item>
	<item>
		<title>Website Developer (Chicago, IL)</title>
		<link>http://cssbeauty.com/skillshare/discussion/3447/</link>
		<guid isPermaLink="false">http://cssbeauty.com/skillshare/discussion/3447/</guid>
		<pubDate>Fri, 03 May 2013 11:30:11 -0400</pubDate>
		<author>WebToMed</author>
		<description>
			<![CDATA[WebToMed, a leading provider of medical website development and Internet marketing services, seeks an experienced HTML developer.  Ideal candidate will be responsible for developing new websites and managing existing projects.  A strong existing online web development portfolio is a must.<br /> <br />Requirements <br />Candidate must meet the following qualifications and be experienced in the following areas:<br />•	Expert knowledge of XHTML, CSS, table-less layout, and jQuery<br />•	Ability to hand-code XHTML<br />•	Knowledge of Photoshop and Dreamweaver<br />•	Minimum of three years experience focusing on website development<br />•	Strong website usability and content organization skills<br />•	Comfortable working in a fast-paced environment<br />•	Ability to keep timelines and meet deadlines<br />•	Excellent written and verbal communication skills<br /><br />Additional skills:<br />•	Bachelor’s degree or other formal training<br />•	Experience with content management systems<br /><br />Why apply at WebToMed:<br />•	Work with established and successful Internet professionals<br />•	Succeed in a rewarding and fun business environment<br />•	Develop new skills and exercise creative talents<br />•	Receive competitive compensation and bonuses<br />•	Enjoy attractive benefits and medical coverage<br /><br />We’re looking for a team member that is able to work well in a group setting, as well as independently. Ideal candidate should be detail oriented with outstanding organizational and prioritization skills.  Candidates should provide a link to an online website development portfolio or links to samples of previous work and selected candidates may be tested for proficiency during interview process.<br /><br />Resume, link to online design portfolio, and salary history should be sent to: hr@webtomed.com]]>
		</description>
	</item>
	<item>
		<title>help with CSS3 animations</title>
		<link>http://cssbeauty.com/skillshare/discussion/3446/</link>
		<guid isPermaLink="false">http://cssbeauty.com/skillshare/discussion/3446/</guid>
		<pubDate>Mon, 29 Apr 2013 10:42:57 -0400</pubDate>
		<author>johndove523</author>
		<description>
			<![CDATA[Please see http://www.backstageweb.net/newsite/images/fpo.jpg graphic to aid with instructions below.<br /><br />I want to do two fairly basic animations on this page and they are essentially the same:<br /><br />#1 - When &quot;portfolio&quot; is clicked, I want the spotlights to slide in from the left and right respectively, from outside the viewport to their location shown. When any other button is clicked, I want them to disappear the same way.<br /><br />#2 - Again, when portfoilo is clicked, I want the 'web' and 'print' menus to slide in from the left and right respectively, and whichever one is clicked, the other one disappears.<br /><br />I've got the animation code from http://daneden.me/animate/, and the instructions from https://github.com/daneden/animate.css, (I apologize, I know I'm straying into jQuery here a bit) but under 'Usage' on the github page I don't understand where that jQuery code goes.<br /><br />Right now what I've got is this:<br /><br />&lt;div class=&quot;section&quot; id=&quot;portfolio&quot;&gt;<br />	&lt;img src=&quot;images/left-lights.png&quot; alt=&quot;lights left&quot; class=&quot;lights-left&quot;&gt;<br />	&lt;img src=&quot;images/right-lights.png&quot; alt=&quot;lights right&quot; class=&quot;lights-right&quot;&gt;<br /><br />and CSS:<br /><br />.lights-left {<br />    height: 112px;<br />    left: -24px;<br />    position: relative;<br />    top: -26px;<br />    width: 169px;<br />	<br />	-webkit-animation-name: LightsLeft;<br />	-webkit-animation-duration: 1s;<br />	-webkit-animation-iteration-count: 1;<br />	-webkit-animation-timing-function: ease-out;<br />	-webkit-animation-direction: forwards;<br />	-webkit-animation-fill-mode: both;<br />	}<br />	<br />.lights-right {<br />    height: 112px;<br />    position: relative;<br />    right: -858px;<br />    top: -26px;<br />    width: 175px;<br />	<br />	-webkit-animation-name: LightsRight;<br />	-webkit-animation-duration: 1s;<br />	-webkit-animation-iteration-count: 1;<br />	-webkit-animation-timing-function: ease-out;<br />	-webkit-animation-direction:forwards;<br />	-webkit-animation-fill-mode: both;<br />	}<br /><br />@-webkit-keyframes LightsLeft {      /*and the same/opposite for 'lights-right' */<br />	0% {opacity: 0; -webkit-transform: translateX(-180px); }<br />	<br />	50% {	opacity: .5;}	<br />	<br />	100% {opacity: 1; -webkit-transform: translateX(0);}<br />}<br /><br />I don't know about this positioning, seems to me it shouldn't be 'relative' but when I make it absolute the animation doesn't work at all. I'd be most grateful for some help with this.<br /><br />Thanks,<br /><br />John]]>
		</description>
	</item>
	<item>
		<title>jQuery Menu like barbour.com</title>
		<link>http://cssbeauty.com/skillshare/discussion/3445/</link>
		<guid isPermaLink="false">http://cssbeauty.com/skillshare/discussion/3445/</guid>
		<pubDate>Fri, 20 Jul 2012 04:42:38 -0400</pubDate>
		<author>JB</author>
		<description>
			<![CDATA[	<p>I&#8217;m looking for a jQuery/javascript menu to do something like www.barbour.com so that when you hover over the menu it drops down and then when you hover over an item in the menu it displays an image related to that item.</p>

	<p>Does anybody know where I could download a script like this?</p>

	<p>thanks</p>

]]>
		</description>
	</item>
	<item>
		<title>nav menu display problem in IE9, 8, 7</title>
		<link>http://cssbeauty.com/skillshare/discussion/3444/</link>
		<guid isPermaLink="false">http://cssbeauty.com/skillshare/discussion/3444/</guid>
		<pubDate>Thu, 05 Jul 2012 19:12:56 -0400</pubDate>
		<author>johndove523</author>
		<description>
			<![CDATA[The display problem I'm encountering is semi-reproducable depending on the machine it's viewed on. On my Win7 laptop using IE9, the display problem occurs only when I navigate to the blog page and every page thereafter. It does not occur in IE 9 or 8 on my work computers (XP and Win7) It occurs in IE 7 without fail, it you can look at it in that browser.<br /><br />Since I cannot attach a graphic here, I will describe the problem as best I can. I think I have the problem code isolated, I just don't know how to code it correctly. Here are the steps:<br /><br />1. In IE7 (if possible) go to URL: http://caspca.org/wordpress/  In IE7, you can immediately see that the navbar &lt;li&gt;s don't float left, and are bursting out of their container to the right.<br /><br />In IE9 (on my Win7 laptop), the navbar is fine, until you navigate to the blog page (Under News &gt; Blog). Here's where it blows up.<br /><br />2. Using IE's development tools (element inspector), click on a nav li (&quot;home&quot; is:<br /> &lt;li class=&quot;menu-item menu-item-type-custom menu-item-object-custom menu-item-81&quot; id=&quot;menu-item-81&quot;&gt; )<br /><br />3. In the element inspector, scroll down and you'll see that in ie.css, on the MENU LI, there is a min-width:100% property. If you click that off, the menu displays correctly, except it still overflows its container to the right.<br /><br />Can someone tell me what code will correct this?<br /><br />Thank very much,<br /><br />John]]>
		</description>
	</item>
	<item>
		<title>Some help with JQuery toggle function</title>
		<link>http://cssbeauty.com/skillshare/discussion/3442/</link>
		<guid isPermaLink="false">http://cssbeauty.com/skillshare/discussion/3442/</guid>
		<pubDate>Tue, 22 Nov 2011 14:32:06 -0500</pubDate>
		<author>aleare</author>
		<description>
			<![CDATA[Hi everyone, <br />I have made this script to open the extended text of a newsline "more reading" service:<br /><br />$(document).ready(function() {<br />	$(".morereading").click(function(){<br />	$(".newsBox").slideToggle("1");<br />	});<br />});<br /><br />The problem is this script works pretty good only for only ONE newsline, but probably there will be more than one in the same html... If I put a different ID to every "more reading", how do I call their respective extended text by this ID given?<br /><br />All suggestions or modifications are welcome<br />Thanks!<br /><br />Alejandra]]>
		</description>
	</item>
	<item>
		<title>Web site editors</title>
		<link>http://cssbeauty.com/skillshare/discussion/3443/</link>
		<guid isPermaLink="false">http://cssbeauty.com/skillshare/discussion/3443/</guid>
		<pubDate>Mon, 06 Feb 2012 14:10:54 -0500</pubDate>
		<author>gogogob</author>
		<description>
			<![CDATA[I've been using Aptana Studio Community Edition for years, without problems.<br />Now, While I have been working on a long (49Kb), principally editorial site, it has gone completely flakey.<br />It has been chewing up half my processor resources, and crashing.<br />I've tried all the obvious fixes.<br />How can we know the causes, Aptana certainly has some elementary problems such as no word wrap?<br />I suspect a project grown too complex, and nobody around to handle the problems from the root.<br /><br />My request - What free alternatives are available for Aptana... <br />All my work is hand-coded, I need a good coding environment with the usual features... file management, code colouring, mistake flagging, browser preview, script and css coding support -- just good basics.<br /><br />I would appreciate your suggestions.<br /><br />By the way... I have received an enormous amount of traffic from CSS Beauty for my antique, then-cutting edge website... www.panavista.eu . That is hand coding!!<br /><br />Old school ... John McAllister ... gogogob ... grow old disgracefully.]]>
		</description>
	</item>
	<item>
		<title>Need help conflicting jquerycss menu with other jquery css tabs</title>
		<link>http://cssbeauty.com/skillshare/discussion/3441/</link>
		<guid isPermaLink="false">http://cssbeauty.com/skillshare/discussion/3441/</guid>
		<pubDate>Thu, 10 Nov 2011 03:47:00 -0500</pubDate>
		<author>Yubi</author>
		<description>
			<![CDATA[I added a jQuery menu tab to my page and there is a clash in the CSS, as can be seen here: http://newbie-cms.com/demo1.<br /><br />I separated a page with only the jQuery tabs here: http://newbie-cms.com/demo1/channeltabs and that works fine. Also, the http://newbie-cms.com/demo1/index.html page works fine without the tabs.<br /><br />But once I combine the tabs code with the videos page, the ul,li items of the tabs become displaced.<br /><br />I also understand that based on my menu, the ul element should have classes ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all and li elements should have classes ui-state-default ui-corner-top. I can find the classes in the menu.css and jquery-ui.css file sbut I don't reallyunderstand how to fix this.  I would apreciate help in fixing this.Thank you.]]>
		</description>
	</item>
	<item>
		<title>Burlesque Dance Website Design - Please Critique!</title>
		<link>http://cssbeauty.com/skillshare/discussion/3434/</link>
		<guid isPermaLink="false">http://cssbeauty.com/skillshare/discussion/3434/</guid>
		<pubDate>Mon, 09 May 2011 11:04:15 -0400</pubDate>
		<author>RevelationConcept</author>
		<description>
			<![CDATA[I just finished this site for an LA based Burlesque Dance group &quot;Je Suis Femme&quot;. I really love the way it turned out, but I want feedback from the design community. I would label myself an &quot;intermediate&quot; level designer. It's been a long road as I've been self teaching myself over the past two years and trying to be standards compliant etc.<br /><br />Any and all feedback is welcome...I want to learn where I need to improve on both design and coding. Thanks in advance for your time!<br /><br />WEBSITE TO CRITIQUE: http://BlushingMovement.com]]>
		</description>
	</item>
	<item>
		<title>How do I create a Gmail like navigation the locks itself when hitting top of window?</title>
		<link>http://cssbeauty.com/skillshare/discussion/3440/</link>
		<guid isPermaLink="false">http://cssbeauty.com/skillshare/discussion/3440/</guid>
		<pubDate>Thu, 06 Oct 2011 02:13:23 -0400</pubDate>
		<author>fransgaard</author>
		<description>
			<![CDATA[Hi<br /><br />The subject really says it all. How do I create a navigation that scrolls with the page until it hits the top of the browser screen at which point it locks itself to the top?<br /><br />Much similar to the Archive, Spam Delete bar in the new Gmail interface.<br /><br />Any examples?<br /><br />Many thanks in advance]]>
		</description>
	</item>
	<item>
		<title>Styling issue on jQuery scroller</title>
		<link>http://cssbeauty.com/skillshare/discussion/3439/</link>
		<guid isPermaLink="false">http://cssbeauty.com/skillshare/discussion/3439/</guid>
		<pubDate>Mon, 12 Sep 2011 15:11:49 -0400</pubDate>
		<author>johndove523</author>
		<description>
			<![CDATA[Hi,<br /><br />Please see URL http://backstageweb.net/StyleCity/.<br /><br />I am 90% of the way there styling the jQuery scroller in the text box area of the page, but can't quite get the positioning right. The scrollbar itself is too tall, and I don't know how to make it shorter, but the main issue is that when you pull down on the scrollbar, it goes PAST the end of the text (by quite a bit), and then when you try and go back up, you can only go back up about halfway (and see the latter half of the text). I'd be most grateful if someone can straighten me out on this.<br /><br />The source site for the jQ scroller is http://manos.malihu.gr/jquery-custom-content-scroller<br /><br />The suspect code:<br /><br />#main{<br />	background:url(../images/CityBkgrnd.jpg) no-repeat;<br />	float:left;<br />	width:697px;<br />	height:579px;<br />	margin:0;<br />	padding:0;<br />	}<br /><br />#borderbox {<br />	border: 2px solid #e4e085;<br />	width:620px;<br />	height:265px;<br />	margin:272px 33px 0 36px;<br />	background:url(../images/TextBkgrnd.png) repeat;<br />	}<br /><br />#main .customScrollBox {<br />        height:265px; <br />        overflow:hidden; <br />        }<br /><br />#main .customScrollBox .container {<br />	position:relative; <br />	width:586px; <br />	float:left;<br />	}<br /><br />#main .customScrollBox .content {<br />	clear:both;<br />	}<br /><br />#main .dragger_container {<br />	position:relative; <br />	width:2px; <br />	height:220px; <br />	float:left; <br />	margin:10px 0 0 5px; <br />	background:#000; <br />	cursor:pointer;<br />	-moz-border-radius:2px; <br />	-khtml-border-radius:2px; <br />	-webkit-border-radius:2px; <br />	border-radius:2px; <br />	}<br /><br />#main .dragger {<br />	position:absolute; <br />	width:2px; <br />	height:20px; <br />	background:#999; <br />	text-align:center; <br />	line-height:40px; <br />	color:#666; <br />	overflow:hidden; <br />	cursor:pointer; <br />	-moz-border-radius:2px; <br />	-khtml-border-radius:2px; <br />	-webkit-border-radius:2px; <br />	border-radius:2px;<br />	}]]>
		</description>
	</item>
	<item>
		<title>ie7 problems. please help.</title>
		<link>http://cssbeauty.com/skillshare/discussion/3438/</link>
		<guid isPermaLink="false">http://cssbeauty.com/skillshare/discussion/3438/</guid>
		<pubDate>Sun, 14 Aug 2011 04:30:44 -0400</pubDate>
		<author>jay0316</author>
		<description>
			<![CDATA[I'm having some trouble with finding a solution to a couple ie7 problems.<br /><br />First page is this: http://fridaynightohio.com/stage/videos/episode/3886<br /><br />The left side of the second panel isn't showing in ie7 and there is a big blue bar at the bottom of it. If you look in firefox, you can see what it's supposed to look like.<br />The videos are also not showing up. Could that be outdated embed code?<br /><br />Next page is the home page: http://fridaynightohio.com/stage/<br /><br />"Top Players" blue panel. The panel appears to be collapsed behind the content.<br />Then same problem with the videos not showing in the player.<br /><br />Any suggestions?<br /><br />Thanks!]]>
		</description>
	</item>
	<item>
		<title>My North Carolina Golf Community Site is 8th position...</title>
		<link>http://cssbeauty.com/skillshare/discussion/2187/</link>
		<guid isPermaLink="false">http://cssbeauty.com/skillshare/discussion/2187/</guid>
		<pubDate>Wed, 18 Jul 2007 12:02:25 -0400</pubDate>
		<author>waynem80</author>
		<description>
			<![CDATA[My site is 8th position on Google for keywords "NC GOLF" but i know that it's way better than any site listed above, plus have more traffic than those sites too.. Why isn't google putting me at the top of the list? is the because i don't have enough Keyword Optimized? <br /><br />thanks,<br />wayne]]>
		</description>
	</item>
	<item>
		<title>disappearing submenu items on webpage and same issue caused by flash as hover submenus disappear</title>
		<link>http://cssbeauty.com/skillshare/discussion/3437/</link>
		<guid isPermaLink="false">http://cssbeauty.com/skillshare/discussion/3437/</guid>
		<pubDate>Sat, 09 Jul 2011 10:20:25 -0400</pubDate>
		<author>Yubi</author>
		<description>
			<![CDATA[Hello Everyone,<br /><br />I have a website from a shopping cart solution here: http://brandcomputers.eu. I have css issues on the homepage specifically for the left categories menu. On hovering over a category and trying to select a submenu item, it disappears because of the content beneath it. The flash also causes the same issue in different browsers. I would like to fix this on IE7,8 , FF and Chrome for different resolutions.<br />I tried increasing z-index and changed the ff:<br />WHAT I DID:<br /><br />1) FOR categories box:<br />previously was :<br /><br />#dd-categories-box li {list-style: none none;}<br /><br /><br />changed to :.dd-categories-box li {<br />position: relative;<br />}<br /><br />2)FOR box content<br /><br /><br />previously was:<br /><br />.box-content {padding: 10px;z-index:300000}<br /><br /><br />changed to :.box-content .box-content {<br />left: 210px;<br />position: absolute;<br />top: 0;<br />}<br /><br />The special product promotions in the center of the page are in a table.Tried with divs but still got same issue with disappearing submenu items.<br />I can provide the css file on demand but didnt see how to upload it. Appreciate your help.]]>
		</description>
	</item>
	<item>
		<title>Basic SEO Tips for beginners</title>
		<link>http://cssbeauty.com/skillshare/discussion/3421/</link>
		<guid isPermaLink="false">http://cssbeauty.com/skillshare/discussion/3421/</guid>
		<pubDate>Thu, 03 Feb 2011 23:20:40 -0500</pubDate>
		<author>Trincypris12</author>
		<description>
			<![CDATA[1. Title Link and Text<br /><br />The link of your title should not be a number like – ( <a href='http://xyz.com/123.html'>http://xyz.com/123.html</a> ) or random letters of the alphabet. This is a poor SEO technique and will affect you rankings horribly. A good permalink structure does have an impact on SEO.<br /><br /><br /><br />So you should always try putting in some keywords related to the content on that page in your URL? Once you have chosen keywords to include in the URL, write out the title of your post. You will have some keywords to work, so it will make it a little easier on you.<br /><br />When talking about one of the most important factors of good SEO, we talk about the title of the page. By looking at the title of your page in search engine results, people should be able to make decision about the kind of content they have in store on that page for them. So again include your main keywords in your title, but don’t make it spammy by including too many keywords or by making it read as gibberish.<br />2. Keywords<br /><br />If you want your post to appear on search engines for certain keywords then make sure that these keywords appear often in your post. You should skillfully incorporate the keyword into your post five to six times – without making it look artificial for your readers.<br /><br />But be careful, don’t use the keywords too much or the search engine spider may suspect spam. And if you are creating friendly content, have your keywords in your content where they fit in naturally. And please keep your keyword density lower than 2 percent!<br />3. Quality Links<br /><br />It is important that your blog is linked from various high quality websites, as this will increase your number of backlinks (link to a previous post) which has great SEO benefits<br /><br />At the same time, if your site is linked to undesirable sites such as link farms, bad neighborhoods, etc. then it will have a negative effect on your search engine rankings.<br /><br />So link to authority and trusted websites only so that your website outgoing profile becomes stronger. And at the same time, get links from quality websites and blogs only. You can grab some quality links for your website by submitting your content on ezine publishing websites, guest posts, genuine blog commenting on the blogs in your niche and getting links from other bloggers.<br />4. Image Alt Tag<br /><br />Always add an ALT tag to your images when you insert an image. This is important as there is a lot of traffic that is to be gained from indexed images as well.<br /><br />An ALT tag is basically an alternative description of your image and it is crawled by search engine spiders.<br /><br />Using ALT text with an image is important as people will be able to see some text when they are having image off on their systems or when see in an email body. And in the absence of ALT text, they will not get any information about the image you placed on a page or email content if they don’t prefer seeing image from an email or page they browse.<br />5. Use Anchor Text<br /><br />When you interlink your pages in the blog, be sure to add proper anchor text. Anchor text is basically a word that is related to the post that you have linked it to; in other words: keywords.<br /><br />Suppose you have a post about toy making, and use the anchor text, sell toys in any of your posts that link to it. When search engines visit your site and see that anchor text, they follow it, and know your page is about selling toys.<br />6. Interlink Your Pages<br /><br />Bloggers are so obsessed with getting quality links from other blogs that they forget that the most basic step of SEO: interlinking pages.<br /><br />This can do a number of things for you. By interlinking, you are basically selecting keywords in your article and linking them to another page on your blog. You can do this with old articles, pages on your blog, etc. This increases the pageviews on your blog, and makes it easier for search engines to travel deep into your blog.<br /><br /><br />http://www.reputationmanagements.com/]]>
		</description>
	</item>
	<item>
		<title>Where do I start?</title>
		<link>http://cssbeauty.com/skillshare/discussion/3436/</link>
		<guid isPermaLink="false">http://cssbeauty.com/skillshare/discussion/3436/</guid>
		<pubDate>Fri, 24 Jun 2011 23:28:21 -0400</pubDate>
		<author>mikko_arlanza</author>
		<description>
			<![CDATA[Guys can you help me out? I'm making a website and i don't know where to start. I know a little of html and css. Could you guys give me some tips or common problems when making a website?  Thanks guys! :)]]>
		</description>
	</item>
	<item>
		<title>CSS EXPERT WANTED</title>
		<link>http://cssbeauty.com/skillshare/discussion/2695/</link>
		<guid isPermaLink="false">http://cssbeauty.com/skillshare/discussion/2695/</guid>
		<pubDate>Fri, 28 Mar 2008 21:27:14 -0400</pubDate>
		<author>nml</author>
		<description>
			<![CDATA[Interested in a freelance project? Omelle.com (my luxury footwear company) needs a freelancer to work with us to create the CSS<br />for our site. We have a rails guy working on the back end of the site - and I am the graphic designer (nicolelafave.com). We are<br />looking for a CSS expert that is amazing and detailed and can match mockups in Adobe Illustrator as close as possible with little<br />instruction. Samples are a must - Interested? This will be ongoing and an exciting project.]]>
		</description>
	</item>
	<item>
		<title>Need CSS Designer for Sportbike website</title>
		<link>http://cssbeauty.com/skillshare/discussion/1092/</link>
		<guid isPermaLink="false">http://cssbeauty.com/skillshare/discussion/1092/</guid>
		<pubDate>Wed, 06 Sep 2006 21:35:44 -0400</pubDate>
		<author>camarofloyd</author>
		<description>
			<![CDATA[I'm looking for a talented artist/designer that has a good eye for balance and form.<br /><br />I would like him/her to come up with a template that I can pick apart and use for an upcoming web 2.0 website. The page needs to look grungy, fast, dark, and technological all at the same time. I have been looking at other websites, and one in particular has that sort of style... <a href="http://soulpurpose.co.nz/" >http://soulpurpose.co.nz/</a> &lt;-- the pictures are good, the edges are torn, the contrast is black on a diagonally striped gray background. If someone can come up with a good and unique design, I will be willing to give you a payment for what its worth.<br /><br />Again the page needs a grungy, technological feel, like a chrome tool case, the Nebuchadnezzar in the Matrix, or spraypainted gang symbols under a train passing. The site will be dealing mainly with Sport bikes and the modification scene, so if you are familar, that is a major plus.<br /><br />The website is currently located at <a href="http://www.bikermods.com/index.php" >http://www.bikermods.com/index.php</a><br /><br />If you think you have some crazy ideas for something that looks great, send a message!<br /><br />More related websites follow : <br /><a href="http://www.elansnowboards.com/" >http://www.elansnowboards.com/</a><br /><a href="http://mattbrett.com/" >http://mattbrett.com/</a><br /><a href="http://csszengarden.com/?cssfile=/116/116.css" >http://csszengarden.com/?cssfile=/116/116.css</a><br /><a href="http://www.csszengarden.com/?cssfile=113/113.css" >http://www.csszengarden.com/?cssfile=113/113.css</a><br /><br />Position : CSS Designer<br />Compensation : $200 - $500<br />Contact email : <a href="mailto:floydroute@gmail.com" >floydroute@gmail.com</a>]]>
		</description>
	</item>
	<item>
		<title>Some simple CSS work</title>
		<link>http://cssbeauty.com/skillshare/discussion/3306/</link>
		<guid isPermaLink="false">http://cssbeauty.com/skillshare/discussion/3306/</guid>
		<pubDate>Tue, 27 Apr 2010 12:35:11 -0400</pubDate>
		<author>cocothecat</author>
		<description>
			<![CDATA[I hope I'm posting in the correct place, I need someone to fix some cross browser issues I have. Its probably 2 hours work maximum simple stuff but we pay quickly and there is more to follow form the same project.<br /><br />I'll forward details on request.<br /><br />Regards<br /><br />John]]>
		</description>
	</item>
	<item>
		<title>JQuery CYCLE Not Working</title>
		<link>http://cssbeauty.com/skillshare/discussion/3435/</link>
		<guid isPermaLink="false">http://cssbeauty.com/skillshare/discussion/3435/</guid>
		<pubDate>Fri, 20 May 2011 01:45:40 -0400</pubDate>
		<author>sherman</author>
		<description>
			<![CDATA[Hey Guys! can you help me figure out why the slideshow is not working<br /><br />The effect I am trying to achieve is : http://jquery.malsup.com/cycle/pager6.html &amp; http://www.migreyes.com/work/threadless-loves/<br /><br />My website is http://www.widerpurpose.com/tees<br /><br />Please help. <br /><br />Thanks]]>
		</description>
	</item>
	<item>
		<title>Appearance of text in Photoshop vs Browser</title>
		<link>http://cssbeauty.com/skillshare/discussion/407/</link>
		<guid isPermaLink="false">http://cssbeauty.com/skillshare/discussion/407/</guid>
		<pubDate>Thu, 23 Mar 2006 11:21:08 -0500</pubDate>
		<author>rasice</author>
		<description>
			<![CDATA[I have recently developed a liking towards text based design. I have always designed my websites entirely using photoshop and then moved on to coding.<br /><br /> The thing that bugs me(and makes it difficult to do such designs) is how anti aliased text looks on photoshop and then how it looks entirely different on the browser when its coded using the same font. For example fonts like Lucida Grande/Sans Unicode, look terrible on photoshop and great on the browser once coded (as we know).<br /><br />I was wonder if theres something im doing wrong, or is there sort of setting that could fix this problem?<br /><br />I am using CS2 on the windows platform<br /><br />thanks in advance<br /><br /><br /><br />EDIT: I do mean aliased text , anti aliased text obviously is totally different.]]>
		</description>
	</item>
	<item>
		<title>fade in a div#1 onload, start fade in div#2 when div#1 fully visible</title>
		<link>http://cssbeauty.com/skillshare/discussion/3291/</link>
		<guid isPermaLink="false">http://cssbeauty.com/skillshare/discussion/3291/</guid>
		<pubDate>Sat, 13 Mar 2010 10:47:52 -0500</pubDate>
		<author>mykstor</author>
		<description>
			<![CDATA[I'm redesigning my website which was built for me originally using all Flash. I want to use JQuery for my do-over.<br /><br />To give my site entrance page some dramatic impact, I'm having my logo drop into place from the top of the window. I used a drop-in slide show script for this and altered it so it doesn't repeat after its first cycle through the jpg array.<br /><br />I need help getting my slogan to fade from 0 to 100% opacity in a division just below this as soon as my logo has dropped in completely. <br />At the same time an ENTER SITE button should also go from 0 to 100% opacity in a division below this, at screen center.<br /><br />I know that JQuery has a fadeIn command, but I don't know how to implement it. I've found several examples of far more complicated fade-ins triggered by onclick, etc, but nothing that simply fades in a jpg triggered by onload. Can someone advise me on how to write the whole code for this? <br />Is JQuery a good choice for this? <br />I like the esthetic of using enhanced Javascript instead of a Flash movie if possible.<br /><br />Thanks in advance for any help offered by any of you!<br /><br />Mike Storer, a perfumer in Los Angeles.<br />michaelstorer.com]]>
		</description>
	</item>
	<item>
		<title>Trouble with centered Layout</title>
		<link>http://cssbeauty.com/skillshare/discussion/3279/</link>
		<guid isPermaLink="false">http://cssbeauty.com/skillshare/discussion/3279/</guid>
		<pubDate>Tue, 23 Feb 2010 00:36:27 -0500</pubDate>
		<author>Maquita</author>
		<description>
			<![CDATA[Hi there,<br /><br />I'm going nuts.  I just can't find a solution for this. This is how it SHOULD look like: <br /><img src="http://forum.smashingmagazine.com/download/file.php?id=524" width="400px" /><br /><br />The navigation will have background image (full width), but the menu itself should be centered. Same for the footer. And that's my problem. This is how it currently looks:<br /><br /><img src="http://forum.smashingmagazine.com/download/file.php?id=525" width="400px" /><br /><br />The red box in the background is the footer, which of course should be at the bottom below the blue box.<br /><br />That's my HTML:<br /><br />div id="menu"<br />	div id="menu-content" /div<br />/div<br /><br />div id="header" /div<br />div id="conten" /div<br />div id="footer" /div<br /><br />And my CSS:<br /><br />#menu{width:100%;height:60px;background:#FF0;}<br /><br />#menu-content {left:50%;margin-<br />left:-512px;position:absolute;overflow:hidden;height:60px;width:1024px;background:#0FF;}<br /><br />#header {width:1024px;height:300px;background:#CF0;left:50%;position:absolute;margin-left:-512px;}<br /><br />#content{width:1024px;height:500px;background:#03C;left:50%;position:absolute;margin-left:-512px;margin-top:300px;}<br /><br />#footer{width:100%;height:100px;background:#C33;}<br /><br />Any suggestions what I'm doing wrong or how I could solve this?<br /><br />Thanks a lot<br />Nicole]]>
		</description>
	</item>
	<item>
		<title>Outlook background image?</title>
		<link>http://cssbeauty.com/skillshare/discussion/3297/</link>
		<guid isPermaLink="false">http://cssbeauty.com/skillshare/discussion/3297/</guid>
		<pubDate>Mon, 12 Apr 2010 19:48:31 -0400</pubDate>
		<author>dmitryseliv</author>
		<description>
			<![CDATA[Is the way to display background image in outlook?<br />I know it's pretty safe to use background color which works ok most of the time but not having much luck with outlook displaying backround image.<br /><br />DS]]>
		</description>
	</item>
	<item>
		<title>JQuery: Fade In on Mouse Over</title>
		<link>http://cssbeauty.com/skillshare/discussion/1593/</link>
		<guid isPermaLink="false">http://cssbeauty.com/skillshare/discussion/1593/</guid>
		<pubDate>Tue, 23 Jan 2007 10:09:43 -0500</pubDate>
		<author>Yakuzza</author>
		<description>
			<![CDATA[Hi,<br /><br />I'm searching for a method to create the following effekt using jquery.<br /><br />The idea<br /><br />I have a page with thumbnails of some photos on it. Initially the thumbnails should have an lower transparency maybe 30% of its original.<br />On hover the selected thumbnail should fade in to 100%.<br /><br />I've been searchin for a while in goole but I'am not very experienced with jquery.<br /><br />I hope someon can help me :)<br /><br />THX in advance]]>
		</description>
	</item>
	<item>
		<title>Free Facebook templates for fan page applications</title>
		<link>http://cssbeauty.com/skillshare/discussion/3433/</link>
		<guid isPermaLink="false">http://cssbeauty.com/skillshare/discussion/3433/</guid>
		<pubDate>Wed, 20 Apr 2011 03:29:05 -0400</pubDate>
		<author>kensmith</author>
		<description>
			<![CDATA[wanted to share a growing collection of <a href="http://hostfb.com/templates" >free and premium facebook templates</a> for facebook fan page applications. register for free at hostFB.com and apart of getting free facebook fan page hosting you will also get unlimited access to the collection of facebook templates.]]>
		</description>
	</item>
	<item>
		<title>site discussion</title>
		<link>http://cssbeauty.com/skillshare/discussion/3432/</link>
		<guid isPermaLink="false">http://cssbeauty.com/skillshare/discussion/3432/</guid>
		<pubDate>Thu, 14 Apr 2011 10:37:30 -0400</pubDate>
		<author>john</author>
		<description>
			<![CDATA[hello varland.....<br /> i've visited your site you done great job provided  information s are handy for employers... but designing is not salient ...]]>
		</description>
	</item>
	<item>
		<title>image does not position correctly in Safari 4</title>
		<link>http://cssbeauty.com/skillshare/discussion/3430/</link>
		<guid isPermaLink="false">http://cssbeauty.com/skillshare/discussion/3430/</guid>
		<pubDate>Fri, 08 Apr 2011 16:30:09 -0400</pubDate>
		<author>kirks</author>
		<description>
			<![CDATA[I have a site that I have created in WordPress using a pre-designed theme that I heavily customized. <br />http://www.newlivingwaygreenville.org/blog/<br /><br />The site looks great in Firefox 3.6, IE 7 and IE8 but one image on the home page will not align to the right in Safari 4.x.<br />The image of the pastors floats to the left and directly over the Flash slideshow in Safari 4 while in the proper place in the others.<br /><br />The image is using inline styles to overcome the limitations of this particular WordPress theme.<br />style=&quot;position:absolute; border:0;margin-top: -4px;*margin-top:-10px;&quot;<br /><br />Any ideas why this doesn't work right in Safari and what I can do to fix it?<br /><br />Thanks!<br /><br />ks]]>
		</description>
	</item>
	<item>
		<title>Flash movie as background!!!</title>
		<link>http://cssbeauty.com/skillshare/discussion/1335/</link>
		<guid isPermaLink="false">http://cssbeauty.com/skillshare/discussion/1335/</guid>
		<pubDate>Tue, 07 Nov 2006 16:38:31 -0500</pubDate>
		<author>dmitryseliv</author>
		<description>
			<![CDATA[Just curries!<br /><br />If you can use flash movie as background with CSS?<br />Let say I have a CSS based website but I want to use a flash background that does some simple animation.<br /><br />Best, DS]]>
		</description>
	</item>
	<item>
		<title>missing pages redirect?</title>
		<link>http://cssbeauty.com/skillshare/discussion/3116/</link>
		<guid isPermaLink="false">http://cssbeauty.com/skillshare/discussion/3116/</guid>
		<pubDate>Tue, 07 Apr 2009 10:12:08 -0400</pubDate>
		<author>dmitryseliv</author>
		<description>
			<![CDATA[Hi,<br /><br />Does anybody knows how to make permanant redirect on all missing pages to root of the website?<br />So I don't have to create entry for each missing page in .htaccess file.<br /><br />Cheers, DS]]>
		</description>
	</item>
	
		</channel>
	</rss>