<?xml version="1.0" encoding="utf-8" ?>
<rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
    xmlns:admin="http://webns.net/mvcb/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:content="http://purl.org/rss/1.0/modules/content/">
    
    <channel>
    
    <title>ExpressionEngine Community Forums</title>
    <link>http://expressionengine.com/forums/</link>
    <description>ExpressionEngine Community Forums</description>
    <dc:language>en</dc:language>
    <dc:rights>Copyright 2008</dc:rights>
    <dc:date>2008-07-08T21:31:31-06:00</dc:date>
    <admin:generatorAgent rdf:resource="http://www.pmachine.com/" />
    

    <item>
      <title>IE7 Bottom Margin Bug</title>
      <link>http://expressionengine.com/forums/viewthread/84560/</link>
      <guid>http://expressionengine.com/forums/viewthread/84560/#When:21:31:31Z</guid>
      <description>&lt;p&gt;The IE7 (and I think IE8) &lt;a href=&quot;http://www.gtalbot.org/BrowserBugsSection/MSIE7Bugs/#bug119&quot;&gt;bottom margin bug&lt;/a&gt; bit me yesterday, and I was wondering how best to deal with it. Adding an empty spacing div is sort of inelegant, and some have used a conditional to sub body padding in the CSS.
&lt;/p&gt;
&lt;p&gt;
Is there a consensus on how best to deal with this?
&lt;/p&gt;</description>
      <dc:date>2008-07-08T21:31:31-06:00</dc:date>
    </item>

    <item>
      <title>HTML formatting in Discussion Forum: Questions</title>
      <link>http://expressionengine.com/forums/viewthread/84341/</link>
      <guid>http://expressionengine.com/forums/viewthread/84341/#When:22:23:15Z</guid>
      <description>&lt;p&gt;Is there a guide to understanding the &#8216;Text and HTML Formatting&#8217; section of the Discussion Forum Module?
&lt;/p&gt;
&lt;p&gt;
My Discussion Forum does not display URL hyperlinks &#45; &lt;a href=&quot;http://www.cooltownstudios.com/forums/viewthread/1/&quot;&gt;link&lt;/a&gt;. &amp;lt;a href=&quot;http://www.domain.com&quot;&amp;gt;domain&amp;lt;/a&amp;gt; comes out &amp;lt;a &amp;gt;domain&amp;lt;/a&amp;gt; on both the display and the entry field, as you can see. It does &amp;lt;b&amp;gt; just fine, and the hyperlinks work in Preview. I&#8217;ve tried every possible combination in the Text and HTML Formatting preferences.
&lt;/p&gt;
&lt;p&gt;
I hope it doesn&#8217;t have anything to do with this &lt;a href=&quot;http://expressionengine.com/forums/viewthread/35337/&quot;&gt;Extension&lt;/a&gt;, which I&#8217;ve since deleted, but can&#8217;t seem to turn off.
&lt;/p&gt;</description>
      <dc:date>2008-07-06T22:23:15-06:00</dc:date>
    </item>

    <item>
      <title>ie6 alignment issue</title>
      <link>http://expressionengine.com/forums/viewthread/84277/</link>
      <guid>http://expressionengine.com/forums/viewthread/84277/#When:20:38:07Z</guid>
      <description>&lt;p&gt;Hi,
&lt;/p&gt;
&lt;p&gt;
I have a problem with IE6, who doesn&#8217;t? Anyway I have just spent 12 hrs trying everything I know to get it to behave&#8230; actually ie7 displays the same problem. Firefox is of course fine as expected.
&lt;/p&gt;
&lt;p&gt;
I have 4 divs (amongst others);
&lt;/p&gt;
&lt;p&gt;
header (top left)
&lt;br /&gt;
logo (top right)
&lt;br /&gt;
main_pic (bottom left)
&lt;br /&gt;
side_menu (bottom right)
&lt;/p&gt;
&lt;p&gt;
It appears that the logo div is pushing out the alignment (down to the left) because when I remove it there is no problem&#8230; but there appears to be room for it
&lt;/p&gt;
&lt;p&gt;
here is the CSS:
&lt;br /&gt;
#header &#123;
&lt;br /&gt;
    float: left;
&lt;br /&gt;
    height: 125px;
&lt;br /&gt;
    bottom: 0px;
&lt;br /&gt;
    margin: 0px;
&lt;br /&gt;
    padding: 0px;
&lt;br /&gt;
    top: 0px;
&lt;br /&gt;
    width: 584px;
&lt;br /&gt;
    overflow: hidden;
&lt;br /&gt;
&#125;
&lt;/p&gt;
&lt;p&gt;
#main_pic &#123;
&lt;br /&gt;
    border: 3px solid #43c8f5;
&lt;br /&gt;
    float: left;
&lt;br /&gt;
    height: 294px;
&lt;br /&gt;
    background&#45;image: url(images/g1.jpg);
&lt;br /&gt;
    background&#45;repeat: no&#45;repeat;
&lt;br /&gt;
    margin: 0px;
&lt;br /&gt;
    padding: 0px;
&lt;br /&gt;
    width: 584px;
&lt;br /&gt;
    overflow: hidden;
&lt;br /&gt;
&#125;
&lt;br /&gt;
#logo  &#123;
&lt;br /&gt;
    width: 105px;
&lt;br /&gt;
    height: 120px;
&lt;br /&gt;
    margin&#45;right: 20px;
&lt;br /&gt;
    text&#45;align: right;
&lt;br /&gt;
    float: right;
&lt;br /&gt;
    padding: 0px;
&lt;br /&gt;
    margin&#45;top: 0px;
&lt;br /&gt;
    margin&#45;bottom: 0px;
&lt;br /&gt;
    margin&#45;left: 0px;
&lt;br /&gt;
    overflow: hidden;
&lt;br /&gt;
&#125;
&lt;br /&gt;
#side_menu  &#123;
&lt;br /&gt;
    width: 105px;
&lt;br /&gt;
    float: right;
&lt;br /&gt;
    margin&#45;right: 20px;
&lt;br /&gt;
    text&#45;align: right;
&lt;br /&gt;
    padding: 0px;
&lt;br /&gt;
    margin&#45;top: 0px;
&lt;br /&gt;
    margin&#45;bottom: 0px;
&lt;br /&gt;
    margin&#45;left: 0px;
&lt;br /&gt;
    overflow: hidden;
&lt;br /&gt;
&#125;
&lt;/p&gt;
&lt;p&gt;
All 4 divs contain flash , not loading on the VMWare server but it is OK.
&lt;br /&gt;
The site address is http://www.g1productions.com(dot)au/
&lt;/p&gt;
&lt;p&gt;
Any ideas? I am going batty!
&lt;/p&gt;</description>
      <dc:date>2008-07-05T20:38:07-06:00</dc:date>
    </item>

    <item>
      <title>Discussion Forum &amp;amp; Youtube</title>
      <link>http://expressionengine.com/forums/viewthread/84478/</link>
      <guid>http://expressionengine.com/forums/viewthread/84478/#When:04:37:05Z</guid>
      <description>&lt;p&gt;Hello,
&lt;/p&gt;
&lt;p&gt;
Is it possible to embed Youtube (or Dailymotion etc)movies on the discussion forum? If so, is it module to install?
&lt;/p&gt;</description>
      <dc:date>2008-07-08T04:37:05-06:00</dc:date>
    </item>

    <item>
      <title>Multiple style sheets</title>
      <link>http://expressionengine.com/forums/viewthread/84416/</link>
      <guid>http://expressionengine.com/forums/viewthread/84416/#When:15:46:51Z</guid>
      <description>&lt;p&gt;Can I create a template that is supported by multiple style sheets? I am running a website that uses a style sheet for each element on the page &#45; one for navigation, one for the sidebar, one for the main text area, etc.
&lt;/p&gt;</description>
      <dc:date>2008-07-07T15:46:51-06:00</dc:date>
    </item>

    <item>
      <title>Looking for a good DHTML menu package to work with EE&#63;</title>
      <link>http://expressionengine.com/forums/viewthread/84399/</link>
      <guid>http://expressionengine.com/forums/viewthread/84399/#When:13:00:39Z</guid>
      <description>&lt;p&gt;The CSS&#45;driven navigation menu provided from my designer has some cross&#45;browser issues and I gave up to debug it, I&#8217;ll just drop a DHTML/Javascript menu instead (need to support 3&#45;level nested menu).
&lt;/p&gt;
&lt;p&gt;
Just wonder if you come across a good package.&amp;nbsp; Any feedback on Milonic menu?&amp;nbsp; Any decent free package out there?
&lt;/p&gt;</description>
      <dc:date>2008-07-07T13:00:39-06:00</dc:date>
    </item>

    <item>
      <title>next/prev element not picking up css styles&#8212;why&#63;</title>
      <link>http://expressionengine.com/forums/viewthread/84378/</link>
      <guid>http://expressionengine.com/forums/viewthread/84378/#When:10:05:31Z</guid>
      <description>&lt;p&gt;in none of the pages is the next/prev element picking up the css styles (you&#8217;ll notice, for one thing, that the titles are in a serif font, and everything else on the page is in verdana).
&lt;/p&gt;
&lt;p&gt;
i&#8217;ve been playing around with this for a while, but cannot determine why this is happening or how to fix it&#8230;
&lt;/p&gt;
&lt;p&gt;
&lt;a href=&quot;http://www.vintagegriffin.com/index.php/screeningroom/comments/elizabeth_1_dvd/&quot;&gt;representative page&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;/p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;
&lt;span style=&quot;color: #007700&quot;&gt;&amp;lt;!&#45;&#45;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;begin next section&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&#45;&#45;&amp;gt;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;&#123;exp&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;:&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;weblog&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;:&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;next_entry weblog&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&quot;screeningroomcurrent&quot; &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;status&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&quot;Main Featured|Currently|open&quot;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;&#125;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;div &lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;class=&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&quot;magNext&quot;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&amp;gt;&lt;br /&gt;&amp;lt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;p&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&amp;gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;Next entry&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;:&amp;lt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;br &lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;/&amp;gt;&amp;lt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;a href&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&quot;&#123;path=&quot;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&amp;gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;&#123;title&#125;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&amp;lt;/&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;a&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&amp;gt;&amp;lt;/&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;p&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&amp;gt;&lt;br /&gt;&amp;lt;/&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;div&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&amp;gt;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;&#123;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;/&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;exp&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;:&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;weblog&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;:&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;next_entry&#125;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&amp;lt;!&#45;&#45;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;end next section&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&#45;&#45;&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;!&#45;&#45;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;begin prev section&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&#45;&#45;&amp;gt;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;&#123;exp&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;:&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;weblog&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;:&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;prev_entry weblog&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&quot;screeningroomcurrent&quot; &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;status&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&quot;Main Featured|Currently|open&quot;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;&#125;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;div &lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;class=&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&quot;magPrev&quot;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&amp;gt;&lt;br /&gt;&amp;lt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;p&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&amp;gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;Previous entry&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;:&amp;lt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;br &lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;/&amp;gt; &amp;lt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;a href&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&quot;&#123;path=&quot;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&amp;gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;&#123;title&#125;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&amp;lt;/&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;a&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&amp;gt;&amp;lt;/&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;p&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&amp;gt;&lt;br /&gt;&amp;lt;/&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;div&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&amp;gt;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;&#123;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;/&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;exp&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;:&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;weblog&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;:&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;prev_entry&#125;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&amp;lt;!&#45;&#45;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;end prev section&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&#45;&#45;&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/div&gt;&lt;p&gt;
&lt;/p&gt;
&lt;p&gt;
...it is picking up some portion of the styles...you can see that the &#8220;next&#8221; element is right&#45;justified...but it won&#8217;t pick up other things&#8230;
&lt;/p&gt;
&lt;p&gt;
&lt;/p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;
&lt;span style=&quot;color: #007700&quot;&gt;.&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;magNext &#123;&lt;br /&gt;font&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&#45;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;family&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;: &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;verdana&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;; &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;trebuchet&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;; &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;arial&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;, &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;sans&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&#45;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;serif&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;font&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&#45;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;size&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;: &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;14px&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;font&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&#45;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;weight&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;: &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;500&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;text&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&#45;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;align&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;: &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;right&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;margin&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&#45;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;top&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;: &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;0px&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;margin&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&#45;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;bottom&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;: &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;0px&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;margin&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&#45;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;left&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;: &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;0px&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;margin&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&#45;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;right&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;: &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;0px&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;padding&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&#45;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;top&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;: &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;0px&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;padding&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&#45;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;bottom&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;: &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;px&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;padding&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&#45;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;left&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;: &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;0px&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;padding&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&#45;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;right&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;: &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;10px&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;&#125;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;.&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;magPrev &#123;&lt;br /&gt;font&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&#45;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;family&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;: &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;verdana&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;; &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;trebuchet&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;; &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;arial&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;, &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;sans&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&#45;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;serif&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;font&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&#45;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;size&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;: &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;14px&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;font&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&#45;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;weight&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;: &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;500&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;text&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&#45;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;align&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;: &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;left&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;margin&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&#45;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;top&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;: &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;0px&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;margin&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&#45;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;bottom&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;: &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;0px&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;margin&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&#45;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;left&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;: &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;0px&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;margin&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&#45;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;right&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;: &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;0px&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;padding&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&#45;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;top&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;: &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;0px&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;padding&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&#45;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;bottom&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;: &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;px&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;padding&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&#45;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;left&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;: &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;0px&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;padding&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;&#45;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;right&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;: &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;0px&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;&#125;&lt;/span&gt;
&lt;/code&gt;&lt;/div&gt;&lt;p&gt;
&lt;/p&gt;
&lt;p&gt;
any assistance would be appreciated.
&lt;/p&gt;
&lt;p&gt;
thanks and cheers &lt;img src=&quot;http://ellislab.com/images/smileys/smile.gif&quot; width=&quot;19&quot; height=&quot;19&quot; alt=&quot;smile&quot; style=&quot;border:0;&quot; /&gt;
&lt;/p&gt;</description>
      <dc:date>2008-07-07T10:05:31-06:00</dc:date>
    </item>

    <item>
      <title>Themes</title>
      <link>http://expressionengine.com/forums/viewthread/84329/</link>
      <guid>http://expressionengine.com/forums/viewthread/84329/#When:16:55:15Z</guid>
      <description>&lt;p&gt;Hello all,
&lt;/p&gt;
&lt;p&gt;
Just started with EE. Before this we were using a framework called Code Igniter for our projects.
&lt;/p&gt;
&lt;p&gt;
I have a few questions. 
&lt;/p&gt;
&lt;p&gt;
Are themes the same as creating a template? If not, then where/how do we create our own themes? I tried looking at the documentation. Is it just me or is the documentation not organised properly, as it is upsetting to find the right information.
&lt;/p&gt;
&lt;p&gt;
Second, I created a template group and have the following in index: 
&lt;/p&gt;
&lt;p&gt;
http://localhost/paradisecalling/images/common/logo.gif
&lt;/p&gt;
&lt;p&gt;
Where do you all store your images (not the ones that are uploaded), the ones that are content&#45;specific such as the logo for the website? And is there a better path i can use to place into the img element for the src attribute instead of http://localhost/paradisecalling/images/common/logo.gif? Perhaps with the usage of some template variables?
&lt;/p&gt;
&lt;p&gt;
Ive already looked at the &#8220;getting started&#8221; vedeo which goes to explaining templates quite well. Is there an IRC channel for EE developers? Or other useful online resources for EE documentation?
&lt;/p&gt;
&lt;p&gt;
We are giving EE a test run. If all goes well, we will be purchasing a few licenses.
&lt;/p&gt;
&lt;p&gt;
Best regards
&lt;/p&gt;</description>
      <dc:date>2008-07-06T16:55:15-06:00</dc:date>
    </item>

    <item>
      <title>sIFR 3~Only Displaying on One Page</title>
      <link>http://expressionengine.com/forums/viewthread/84274/</link>
      <guid>http://expressionengine.com/forums/viewthread/84274/#When:18:32:10Z</guid>
      <description>&lt;p&gt;I was messing with the JQuery sIFR plugin but switched to a plain sIFR 3 setup for several reasons. I am getting image replacement to work on my main homepage but that is it. 
&lt;/p&gt;
&lt;p&gt;
I have the following setup on my site:
&lt;/p&gt;
&lt;p&gt;
The homepage is an index.php in a template group called &lt;i&gt;home&lt;/i&gt;.
&lt;br /&gt;
The about section index.php is from an &lt;i&gt;about&lt;/i&gt; template group.
&lt;br /&gt;
The blog section index.php is from a &lt;i&gt;blog&lt;/i&gt; template group.
&lt;br /&gt;
The portfolio section index.php is from a &lt;i&gt;portfolio&lt;/i&gt; template group.
&lt;br /&gt;
Finally, I have a contact section with its index.php from a &lt;i&gt;contact&lt;/i&gt; template group.
&lt;/p&gt;
&lt;p&gt;
Seems relatively simple, I guess. Each of the 5 &#8220;sections&#8221; referenced above (home, about, portfolio, blog and contact) also has its own weblog, as I have a need for a pretty complex custom fields schema.
&lt;/p&gt;
&lt;p&gt;
Finally, I am using the Pages module for the About and Contact &#8221;&lt;i&gt;sections&lt;/i&gt;.&#8221;
&lt;/p&gt;
&lt;p&gt;
With the aforementioned set of circumstances provided, can anyone guess why I am getting the sIFR headings to show up only on the homepage? I can provide more info, if necessary and aplogize if this is confusing.
&lt;/p&gt;
&lt;p&gt;
Thanks
&lt;/p&gt;</description>
      <dc:date>2008-07-05T18:32:10-06:00</dc:date>
    </item>

    <item>
      <title>Editing templates page in Dreamweaver</title>
      <link>http://expressionengine.com/forums/viewthread/84309/</link>
      <guid>http://expressionengine.com/forums/viewthread/84309/#When:07:51:58Z</guid>
      <description>&lt;p&gt;Hi,
&lt;/p&gt;
&lt;p&gt;
I am trying to edit site index page in Dreamweaver.
&lt;/p&gt;
&lt;p&gt;
I have copied the  default template and renamed it.
&lt;/p&gt;
&lt;p&gt;
I cut and pasted the code into Dreamweaver, and used FILE &#45; Preview in Browser.
&lt;/p&gt;
&lt;p&gt;
Dreamweaver asks for CONFIGURE RDS SERVER.
&lt;/p&gt;
&lt;p&gt;
I guess it need to be able to use the Expression Engine Tags when displaying the page.
&lt;/p&gt;
&lt;p&gt;
What is best way to redo the templates in Dreamweaver and be able to view in browser to check what I am doing as I make the changes?
&lt;/p&gt;
&lt;p&gt;
Or am I approaching this wrong?
&lt;/p&gt;
&lt;p&gt;
Thanks
&lt;/p&gt;
&lt;p&gt;
Lionel
&lt;/p&gt;</description>
      <dc:date>2008-07-06T07:51:58-06:00</dc:date>
    </item>

    
    </channel>
</rss>