<?xml version="1.0"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>Support Forum Topic: Glossary of CSS selectors?</title>
<link>http://support.westciv.com/</link>
<description>Support Forum Topic: Glossary of CSS selectors?</description>
<language>en</language>
<pubDate>Thu, 29 Jul 2010 23:32:25 +0000</pubDate>

<item>
<title>Storyman on "Glossary of CSS selectors?"</title>
<link>http://support.westciv.com/topic/glossary-of-css-selectors#post-1791</link>
<pubDate>Fri, 20 Mar 2009 15:21:46 +0000</pubDate>
<dc:creator>Storyman</dc:creator>
<guid isPermaLink="false">1791@http://support.westciv.com/</guid>
<description>&#60;p&#62;PSY,&#60;/p&#62;
&#60;p&#62;If you don't have a local server set up on your system, then open Sandbox's stylesheet with SM. On the menu bar click Preview--&#38;gt;Manage Preview Documents--&#38;gt;Online (tab). Insert the site's URL, then click the Add URL button. Finally, select the newly added URL and click OK.&#60;/p&#62;
&#60;p&#62;Your web page should appear in the preview window. On occasion you'll need to click the refresh button, which is to the bottom right of the preview window and looks like green spinning arrows.&#60;/p&#62;
&#60;p&#62;Rule #1. After you think you're CSS looks like you want preview it in FireFox. ALWAYS test against FF. FF is actually more CSS compliant than IE, but all the CSS editors use IE to show the preview.
&#60;/p&#62;</description>
</item>
<item>
<title>psy on "Glossary of CSS selectors?"</title>
<link>http://support.westciv.com/topic/glossary-of-css-selectors#post-1790</link>
<pubDate>Thu, 19 Mar 2009 14:06:13 +0000</pubDate>
<dc:creator>psy</dc:creator>
<guid isPermaLink="false">1790@http://support.westciv.com/</guid>
<description>&#60;p&#62;Ok, thanks for your replies. Sounds like I may need more tutorials since I've dragged in the source code from my blog and right clicked some of the elements, but still don't know what they mean.
&#60;/p&#62;</description>
</item>
<item>
<title>guyleech on "Glossary of CSS selectors?"</title>
<link>http://support.westciv.com/topic/glossary-of-css-selectors#post-1789</link>
<pubDate>Thu, 19 Mar 2009 00:38:33 +0000</pubDate>
<dc:creator>guyleech</dc:creator>
<guid isPermaLink="false">1789@http://support.westciv.com/</guid>
<description>&#60;p&#62;Hey Psy,&#60;/p&#62;
&#60;p&#62;The included tutorial in 4.6 isn't really comprehensive (as you've discovered) - you'd be much better off getting an in-depth tutorial on CSS to get you started. You can get a copy of our &#60;a href=&#34;https://store.kagi.com/cgi-bin/store.cgi?storeID=WC4&#38;#38;&#38;amp;#courses&#34;&#62;CSS Guide&#60;/a&#62;, which has sections on how to use Style Master, as well as on CSS, or there are lots of good &#60;a href=&#34;http://www.google.com.au/search?q=css+tutorial&#38;#38;ie=utf-8&#38;#38;oe=utf-8&#38;#38;aq=t&#38;#38;rls=org.mozilla:en-GB:official&#38;#38;client=firefox-a&#34;&#62;online resources&#60;/a&#62; for learning CSS.
&#60;/p&#62;</description>
</item>
<item>
<title>b15fliptop on "Glossary of CSS selectors?"</title>
<link>http://support.westciv.com/topic/glossary-of-css-selectors#post-1788</link>
<pubDate>Wed, 18 Mar 2009 21:33:23 +0000</pubDate>
<dc:creator>b15fliptop</dc:creator>
<guid isPermaLink="false">1788@http://support.westciv.com/</guid>
<description>&#60;p&#62;It's fairly simple to figure out, if you have a basic understanding of CSS. &#60;/p&#62;
&#60;p&#62;The pound sign (#) signifies an id, so div#menu selects a div with the id &#34;menu&#34;.&#60;/p&#62;
&#60;p&#62;A period (.) signifies a class, so span.required selects a span with the class &#34;required&#34;. &#60;/p&#62;
&#60;p&#62;Your second example shows a more specific selector, which will apply whatever rules you write for it to a span with the class &#34;required&#34; ONLY if it's within a form with the id &#34;commentform&#34;.&#60;/p&#62;
&#60;p&#62;By comma-separating a list of selectors, like your last example, you will apply whatever CSS rules you write to each of the selectors in the list. &#60;/p&#62;
&#60;p&#62;Take a look at the source code for your pages to see where these classes and id's are assigned. Or better yet, since you have StyleMaster, drag a page of your blog to the preview window in StyleMaster and then right-click an element and select &#34;Suggest Selectors&#34; or &#34;New Matching Statement&#34; to help you pick the right selector.&#60;/p&#62;
&#60;p&#62;Hope this helps!
&#60;/p&#62;</description>
</item>
<item>
<title>psy on "Glossary of CSS selectors?"</title>
<link>http://support.westciv.com/topic/glossary-of-css-selectors#post-1787</link>
<pubDate>Wed, 18 Mar 2009 19:01:56 +0000</pubDate>
<dc:creator>psy</dc:creator>
<guid isPermaLink="false">1787@http://support.westciv.com/</guid>
<description>&#60;p&#62;Hi: &#60;/p&#62;
&#60;p&#62;I am trying to design a WordPress blog, using a basic WordPress theme (Sandbox) as a starting point. I also purchased StyleMaster 4.6 and worked through the introductory StyleMaster tutorial. &#60;/p&#62;
&#60;p&#62;I’ve imported the Sandbox CSS stylesheet into StyleMaster. Now I’m having trouble figuring out what all of the selectors [if that’s the right term] actually do—I didn’t see any of these in the introductory StyleMaster tutorial. For example: &#60;/p&#62;
&#60;p&#62;div#menu,&#60;br /&#62;
form#commentform span.required&#60;br /&#62;
input#author,input#email,input#url,textarea#comment&#60;/p&#62;
&#60;p&#62;Not sure where to start to edit the attributes of these since I don’t know what each of these actually does. &#60;/p&#62;
&#60;p&#62;Is there a glossary somewhere that explains them? &#60;/p&#62;
&#60;p&#62;Or do I need to take the advanced CSS course to even begin to work with these? &#60;/p&#62;
&#60;p&#62;Suggestions?&#60;/p&#62;
&#60;p&#62;Thanks.
&#60;/p&#62;</description>
</item>

</channel>
</rss>