<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
      <title>handcoding - webeyedea forum</title>
      <link>http://webeyedea.info/forum/categories/handcoding/feed.rss</link>
      <pubDate>Sat, 25 May 13 10:50:02 +0100</pubDate>
         <description>handcoding - webeyedea forum</description>
   <language>en-CA</language>
   <atom:link href="/forum/discussions/feed.rss" rel="self" type="application/rss+xml" />
   <item>
      <title>Floating issue</title>
      <link>http://webeyedea.info/forum/discussion/503/floating-issue</link>
      <pubDate>Sun, 12 May 2013 00:26:53 +0100</pubDate>
      <dc:creator>StheRed</dc:creator>
      <guid isPermaLink="false">503@/forum/discussions</guid>
      <description><![CDATA[<p>Hello,</p>

<p>I am trying recreate my white space section of my website from vertical to horizontal, it has worked so far but the floating is messed up at the moment. I was wondering if I can get help for it please</p>

<p>my site: designbys.co.uk</p>

<p>Thanks</p>
]]></description>
   </item>
   <item>
      <title>navigation in Explorer</title>
      <link>http://webeyedea.info/forum/discussion/502/navigation-in-explorer</link>
      <pubDate>Thu, 02 May 2013 00:14:18 +0100</pubDate>
      <dc:creator>Luca_Grosso</dc:creator>
      <guid isPermaLink="false">502@/forum/discussions</guid>
      <description><![CDATA[<p>Hi guys,</p>

<p>we have a problem with the navigation in IE.</p>

<p>Firefox, Safari and Chrome work the way we want but the lovely Internet Explorer does not seem to like our code.</p>

<p>We have been trying to understand the problem for long now but we can't fix it, so we rely on your hands :)</p>

<p><a href="http://wearenoone.co.uk/testing/index.html" target="_blank" rel="nofollow">http://wearenoone.co.uk/testing/index.html</a></p>

<p>Thanks in advance for your time</p>
]]></description>
   </item>
   <item>
      <title>resizing with js</title>
      <link>http://webeyedea.info/forum/discussion/493/resizing-with-js</link>
      <pubDate>Thu, 11 Apr 2013 17:14:34 +0100</pubDate>
      <dc:creator>Mark</dc:creator>
      <guid isPermaLink="false">493@/forum/discussions</guid>
      <description><![CDATA[<p>Ok</p>

<p>so I've got my menu working with the sliding toggle but I want to turn it of when I get to screen size of 800, heres the code for the toggle</p>

<p>`function showWork() {
                $('nav ul').hide();
                $('nav strong').addClass('hidden');
                $('nav strong').click(function() {</p>

<pre><code>                $(this).next().slideToggle('normal');

                    var $this = $(this);
                    if( $this.is('.selected') ) {
                        $this.removeClass('selected');
                        $this.addClass('hidden'); 
                    }
                    else {
                        $this.removeClass('hidden');
                        $this.addClass('selected');
                    }
                    return false; 

        }); 
          } 
</code></pre>

<p>`</p>

<p>how would I do this</p>
]]></description>
   </item>
   <item>
      <title>satellite - getting rid of table on permalink.php page</title>
      <link>http://webeyedea.info/forum/discussion/494/satellite-getting-rid-of-table-on-permalink-php-page</link>
      <pubDate>Mon, 15 Apr 2013 10:56:42 +0100</pubDate>
      <dc:creator>bart</dc:creator>
      <guid isPermaLink="false">494@/forum/discussions</guid>
      <description><![CDATA[<p>Hi guys!</p>

<p>Hope everyone is ok and doing well with a client project. I can't wait to see you all on Thursday :). I'm still having a battle with my satellite :).</p>

<p>I've managed to get rid of table on "permalink.php" site. Thought it might be useful for someone or maybe for future reference.</p>

<p>Here is my modified function getImageStats($which) - the last function in preferences.php.(also with added <em>p</em> and <em>h2</em> so you can easily style it) :</p>

<pre lang="php">
function getImageStats($which) {

    global $user;
    global $apikey;
    
    $method = 'flickr.photos.getInfo';
    
    $request_url = '<a href="http://www.flickr.com/services/rest/?'" target="_blank" rel="nofollow">http://www.flickr.com/services/rest/?'</a>;
    
    if (empty($params)) $params = array();
    $params['api_key'] = $apikey;
    $params['method'] = $method;
    $params['photo_id'] = $which;
    
    foreach ($params as $var =&gt; $val) {
        $var = urlencode($var);
        $val = urlencode($val);
        $request_url .= "&amp;$var=$val";
    }
    
    $response = file_get_contents($request_url);
    $simplexml = simplexml_load_string($response);
      
    $photos =&amp; $simplexml-&gt;xpath("//photo");
    
    foreach ($photos as $photo) {   
        $id = $photo["id"];
        $server = $photo["server"];
        $secret = $photo["secret"];
    }
    
    $data =&amp; $simplexml-&gt;xpath("//title");
    
    foreach ($data as $title) {
        $theTitle = $title;
    }
    
    if ($theTitle) {
        $theTitle = "".$theTitle."";
    } else {
        $theTitle = "Untitled";
    }

    $data =&amp; $simplexml-&gt;xpath("//description");
    
    foreach ($data as $description) {
        $theDescription = $description;
    }

    
    if ($theDescription) {
        $theDescription = "".$theDescription."";
    } else {
        $theDescription = " ";
    }
    
    $data =&amp; $simplexml-&gt;xpath("//dates");
    
    foreach ($data as $date) {
        $theDate = $date['posted'];
    }
    $theDate = (int) $theDate;
    $theDate = "".date('F j, Y', $theDate)."";
    
    echo "</pre><img class="\" src="\" alt="\" />";
    echo "$theTitle $theDescription $theDate <p><a rel="nofollow" href="\" target="\">View on Flickr</a></p>";
    
}
]]></description>
   </item>
   <item>
      <title>satellite - TAGS problem in 1.0 version</title>
      <link>http://webeyedea.info/forum/discussion/495/satellite-tags-problem-in-1-0-version</link>
      <pubDate>Mon, 15 Apr 2013 11:36:23 +0100</pubDate>
      <dc:creator>bart</dc:creator>
      <guid isPermaLink="false">495@/forum/discussions</guid>
      <description><![CDATA[<p>Hi :)</p>

<p>For some reason in Satellite version 1.0 (on Pentangle server) all tags are exactly the same size (they are extremely small!). That text size of a tag in the cloud should be proportional to the count of photos for that tag.</p>

<p>It's very easy to make it work. You have to go to makeTagCloud function (in preferences.php), find the following code:</p>

<p>$id = $tag['count'];</p>

<p>and change it to this:</p>

<p>$id = (int)$tag['count'];</p>

<p>That's it! done! :).</p>

<p>Here is the original post where I've found it : <a href="http://www.flickr.com/groups/satellite/discuss/72157629407617747/" target="_blank" rel="nofollow">http://www.flickr.com/groups/satellite/discuss/72157629407617747/</a></p>

<p>Also, in the same function you can find the code responsible for your tag's look :</p>

<p>$highestTag = 0;
$lowestTag = 60000;
$maxFontSize = 60;
$minFontSize = 25;
$bright = 180;
$dark = 80;</p>

<p>Hope this will be helpful:)</p>
]]></description>
   </item>
   <item>
      <title>Toggle</title>
      <link>http://webeyedea.info/forum/discussion/490/toggle</link>
      <pubDate>Fri, 05 Apr 2013 00:15:01 +0100</pubDate>
      <dc:creator>Luca_Grosso</dc:creator>
      <guid isPermaLink="false">490@/forum/discussions</guid>
      <description><![CDATA[<p>Hi everyone,</p>

<p>hope you all had a nice Easter.
we are now trying to code our website but we are experiencing problems with the navigation.</p>

<p>We could not find a clear and good tutorial to create and customise a jquery toggle menu. If someone could point something would be of great help.</p>

<p>Here is what we did so far:</p>

<p>resize the window to see what our problem is:
<a href="http://www.wearenoone.co.uk/testing/" target="_blank" rel="nofollow">http://www.wearenoone.co.uk/testing/</a></p>

<p>This is what we want to achieve:
<a href="http://www.wearenoone.co.uk/testing/imgs/forum.png" target="_blank" rel="nofollow">http://www.wearenoone.co.uk/testing/imgs/forum.png</a></p>

<p>The way the starbucks' toggle work is what we want to achieve:
<a href="http://www.starbucks.com" target="_blank" rel="nofollow">http://www.starbucks.com</a></p>

<p>Hope someone can help :)</p>
]]></description>
   </item>
   <item>
      <title>thumbnails size - SATELLITE</title>
      <link>http://webeyedea.info/forum/discussion/484/thumbnails-size-satellite</link>
      <pubDate>Wed, 27 Mar 2013 12:50:38 +0000</pubDate>
      <dc:creator>bart</dc:creator>
      <guid isPermaLink="false">484@/forum/discussions</guid>
      <description><![CDATA[<p>Hi guys</p>

<p>I've spent hours trying to figure out how to increase the size of the thumbnails from 75px per side to 100 or 240px.</p>

<p>I was following this post:
<a href="http://www.flickr.com/groups/satellite/discuss/72157624331626750/" target="_blank" rel="nofollow">http://www.flickr.com/groups/satellite/discuss/72157624331626750/</a></p>

<p>also read the discussion from last year started by Nicole <a href="http://webeyedea.info/forum/discussion/360/changing-sizes-of-thumbnails-in-satellite/p1" target="_blank" rel="nofollow">http://webeyedea.info/forum/discussion/360/changing-sizes-of-thumbnails-in-satellite/p1</a></p>

<p>Still can't get it right. All I get is bigger images (not square thumbnails any more) looking messy (landscapes, portraits).</p>

<p>Does anyone know how to get from flickr perfect square thumbnails bigger than 75 px?</p>

<p>Please help!</p>
]]></description>
   </item>
   <item>
      <title>resize img css</title>
      <link>http://webeyedea.info/forum/discussion/468/resize-img-css</link>
      <pubDate>Fri, 22 Feb 2013 10:33:00 +0000</pubDate>
      <dc:creator>Luca_Grosso</dc:creator>
      <guid isPermaLink="false">468@/forum/discussions</guid>
      <description><![CDATA[<p>Hello guys!
I am new to the blog and to web design so I will probably be a pain for the next few weeks. Sometimes tutorials are not enough to solve my problems so hope you can help me somehow.. Thanks in advance</p>

<p>How can the header image automatically resize when you change the size of the browser window?</p>

<p><a href="http://lateralsymphony.co.uk/website/" target="_blank" rel="nofollow">http://lateralsymphony.co.uk/website/</a></p>

<pre lang="css">
<a rel="nofollow" href="/forum/search?Search=%23header&amp;Mode=like">#header</a> {
    background-image: url(../images/LS_1.jpg) ;
    background-position: 0 0;
    width: 100%;
    height: 675px;
    margin-left: auto;
    margin-right: auto;
    }
</pre>
]]></description>
   </item>
   <item>
      <title>hidden link</title>
      <link>http://webeyedea.info/forum/discussion/465/hidden-link</link>
      <pubDate>Tue, 19 Feb 2013 11:20:14 +0000</pubDate>
      <dc:creator>Mark</dc:creator>
      <guid isPermaLink="false">465@/forum/discussions</guid>
      <description><![CDATA[<p>Is there a better way of coding a skip to nav/content link thats not on the page but when to hover over the area to come down than what I've done.</p>

<p><a rel="nofollow" href="http://www.markjennings.me.uk/testing/HCAB/index.html">go here</a> to see what I have mean</p>
]]></description>
   </item>
   <item>
      <title>CSS Sprites</title>
      <link>http://webeyedea.info/forum/discussion/439/css-sprites</link>
      <pubDate>Tue, 18 Dec 2012 01:23:22 +0000</pubDate>
      <dc:creator>bukhtawarali</dc:creator>
      <guid isPermaLink="false">439@/forum/discussions</guid>
      <description><![CDATA[<p>For those who may have some problems with CSS Sprites. I found this  <a rel="nofollow" href="http://wearekiss.com/spritepad">site</a>
while I was having my problem with my code .. 
I solved my issues without but may be a help for somebody, who's still not clear on CSS Sprites.</p>
]]></description>
   </item>
   <item>
      <title>special characters - references &amp; tools</title>
      <link>http://webeyedea.info/forum/discussion/428/special-characters-references-tools</link>
      <pubDate>Sat, 24 Nov 2012 13:57:59 +0000</pubDate>
      <dc:creator>prisca</dc:creator>
      <guid isPermaLink="false">428@/forum/discussions</guid>
      <description><![CDATA[<p>Hello everyone,</p>

<p>Yago mentioned a site which shows code for special characters - thanks, Yago :)
This might get lost in the midst of an <a rel="nofollow" href="http://webeyedea.info/forum/discussion/426/what-are-you-looking-for-#Item_10">unrelated post</a> - so I thought I'd share a few more here:</p>

<ul>
<li><p><strong><a rel="nofollow" href="http://www.ascii.cl/htmlcodes.htm">HTML Codes - Characters and symbols</a></strong> — from Yago</p></li>
<li><p><strong><a rel="nofollow" href="http://bohemianalps.com/tools/characters/">HTML character codes</a></strong> — nicely presented reference for special characters and their codes</p></li>
<li><p><strong><a rel="nofollow" href="http://leftlogic.com/projects/entity-lookup">HTML Entity Character Lookup</a></strong> — type your character and this lovely tool by Remy will look up the code as well as similar character for you, one of my favourites :)</p></li>
<li><p><strong><a rel="nofollow" href="http://www.characterer.com/">Characterer</a></strong> — very handy reference with tons of different characters and associated typefaces)</p></li>
<li><p><strong><a rel="nofollow" href="http://amp-what.com/">&amp;what;</a></strong> — extensive reference, showing typefaces and codes, huge collection of characters and symbols</p></li>
<li><p><strong><a rel="nofollow" href="http://shapecatcher.com/">Shape Catcher</a></strong> — incredibly useful tool, especially if you do know the official name of a character or symbol :)</p></li>
</ul>

<p>have fun exploring these ~ I know you'll find them useful :)</p>
]]></description>
   </item>
   <item>
      <title>greenpeace</title>
      <link>http://webeyedea.info/forum/discussion/432/greenpeace</link>
      <pubDate>Wed, 05 Dec 2012 14:08:25 +0000</pubDate>
      <dc:creator>elina</dc:creator>
      <guid isPermaLink="false">432@/forum/discussions</guid>
      <description><![CDATA[<p>Hi all,</p>

<p>Hope you are well and happy with your greenpeace websites.</p>

<p>If you finished early and have some free time, please check my website's index page (Dropbox public folder). I have not been well since Saturday (living in the cold flat last week took its toll) and my head is blocked, this does not help floating the elements on the index page.</p>

<p>Please check the basic mock-up design in the "elina greenpeace" dropbox folder...The idea is for the menu, main image (kung-fu george) and small text paragraphs to live happily next to each other...with the larger text element in the footer to float underneath these three elements...</p>

<p>Please email me (elinawebdesign@gmail.com) if you are able to figure out how to move the image and the text up next to the menu (pls check mock-up for the layout). I tried to float left and right and cancelled the floats...no luck...I also tried to fix the main image as a background image in the CSS and wrote the text on it, removed the text by negative margin to the right... vast floating green fields appeared above the image...decided it was not a good idea after all...</p>

<p>Thank you for reading this message and thank you for your help.</p>

<p>Elina</p>
]]></description>
   </item>
   <item>
      <title>problems hightlighting current page</title>
      <link>http://webeyedea.info/forum/discussion/417/problems-hightlighting-current-page</link>
      <pubDate>Tue, 16 Oct 2012 11:16:40 +0100</pubDate>
      <dc:creator>yargs</dc:creator>
      <guid isPermaLink="false">417@/forum/discussions</guid>
      <description><![CDATA[<p>Hi everyone! This is Yago, one of Prisca's newbies! :)</p>

<p>I've been having problems trying to style my current navigation links. Up till now I've been giving a class to the different links in the appropriate page and styling that class but Prisca advised us that for the future it's a better approach to give id's to both the body tag and each navigation link and styling them like this:</p>

<pre><code><a rel="nofollow" href="/forum/search?Search=%23home&amp;Mode=like">#home</a> <a rel="nofollow" href="/forum/search?Search=%23h_current&amp;Mode=like">#h_current</a>, <a rel="nofollow" href="/forum/search?Search=%23about&amp;Mode=like">#about</a> <a rel="nofollow" href="/forum/search?Search=%23a_current&amp;Mode=like">#a_current</a>, ... {
   background: whatever;
   color:...
   ...
}</code></pre>

<p>The problem is that is not really working for me. I have played around with them being more specific than that but I got nowhere. 
Does anyone have any suggestions?
Thanks!</p>
]]></description>
   </item>
   <item>
      <title>HTML Tabular Data</title>
      <link>http://webeyedea.info/forum/discussion/418/html-tabular-data</link>
      <pubDate>Tue, 16 Oct 2012 21:31:54 +0100</pubDate>
      <dc:creator>TJBall</dc:creator>
      <guid isPermaLink="false">418@/forum/discussions</guid>
      <description><![CDATA[<p>I've felt that to display my "Opening Times" and "Price List" information nothing really beats using a 'table' element. I know there's a huge accessibility issue surrounding the use of tables so my question is simply, what should I do instead?</p>

<p>Or can I still use a table?</p>
]]></description>
   </item>
   <item>
      <title>jQuery expander</title>
      <link>http://webeyedea.info/forum/discussion/413/jquery-expander</link>
      <pubDate>Fri, 28 Sep 2012 14:46:32 +0100</pubDate>
      <dc:creator>naraujobianchi</dc:creator>
      <guid isPermaLink="false">413@/forum/discussions</guid>
      <description><![CDATA[<p>Any idea on how to make a jQuery, expander for some tabs. 
It need to show a read more toggle button if it is only more than 100px. If not it is going to keeps its own height.</p>

<p>Thanks,
Nicole :)</p>
]]></description>
   </item>
   <item>
      <title>IE filters</title>
      <link>http://webeyedea.info/forum/discussion/411/ie-filters</link>
      <pubDate>Mon, 10 Sep 2012 10:29:40 +0100</pubDate>
      <dc:creator>naraujobianchi</dc:creator>
      <guid isPermaLink="false">411@/forum/discussions</guid>
      <description><![CDATA[<p>Hi guys,
I am trying to make a promobar to be half way transparent in ie 7, what I am doing wrong with the filters??</p>

<pre lang="html">
<a rel="nofollow" href="/forum/search?Search=%23promotion-bar&amp;Mode=like">#promotion-bar</a> {
    padding:.5em 0;
    background:#A4A29C;
    filter: progid:DXImageTransform.Microsoft.Alpha(opacity=30);
}</pre>
]]></description>
   </item>
   <item>
      <title>Javascript for Beginners</title>
      <link>http://webeyedea.info/forum/discussion/408/javascript-for-beginners</link>
      <pubDate>Sat, 18 Aug 2012 22:06:12 +0100</pubDate>
      <dc:creator>Julio_Jeplon</dc:creator>
      <guid isPermaLink="false">408@/forum/discussions</guid>
      <description><![CDATA[<p>Hello guys if you feel like you want to move forward and learn another code here is a Javascript Fundamentals: Development for Absolute Beginners. It is very good! enjoy it ;)</p>

<p><a rel="nofollow" href="http://channel9.msdn.com/Series/Javascript-Fundamentals-Development-for-Absolute-Beginners">channel9.msdn.com/Series/Javascript-Fundamentals-Development-for-Absolute-Beginners</a></p>

<p>Please let me know what do you think.</p>
]]></description>
   </item>
   <item>
      <title>Web Developer Tool</title>
      <link>http://webeyedea.info/forum/discussion/407/web-developer-tool</link>
      <pubDate>Mon, 30 Jul 2012 15:13:26 +0100</pubDate>
      <dc:creator>mubeen</dc:creator>
      <guid isPermaLink="false">407@/forum/discussions</guid>
      <description><![CDATA[<p>In the Web Developer Tool -
When I enable the 'Display element information',</p>

<p>I can see the elements names etc - only in the toolbar at the top, near the web developer tool.
And the yellow, orangy box with elements info, on mouse click.</p>

<p>BUT
It does not outline the block, line guides - on mouse over.</p>

<p>How can I reset the tool maybe?
Thanks</p>
]]></description>
   </item>
   <item>
      <title>media querie issue</title>
      <link>http://webeyedea.info/forum/discussion/397/media-querie-issue</link>
      <pubDate>Tue, 26 Jun 2012 16:32:29 +0100</pubDate>
      <dc:creator>nazim</dc:creator>
      <guid isPermaLink="false">397@/forum/discussions</guid>
      <description><![CDATA[hi everyone,<br /><br />I can't seem to get media queries to work on my site, not able to figure out what is wrong.  Here is my site link<br /><br />webnectar.co.uk<br /><br />Thank you...<br />]]></description>
   </item>
   <item>
      <title>overflow vs clearfix</title>
      <link>http://webeyedea.info/forum/discussion/404/overflow-vs-clearfix</link>
      <pubDate>Mon, 16 Jul 2012 10:36:59 +0100</pubDate>
      <dc:creator>naraujobianchi</dc:creator>
      <guid isPermaLink="false">404@/forum/discussions</guid>
      <description><![CDATA[<p>Hello you all,</p>

<p>I'm having an issue to understand when I have to use the clearfix instead the overflow:hidden??? which I thought It would always solve all my problems.</p>

<p>By the way the clearfix, is a hack that consists in adding a class to the container, and that class uses the pseudo-element :after to create content after the container and then clearing it. 
Better explained here :
<a href="http://css.flepstudio.org/en/css-tutorials/clearfix-how-to-avoid-that-the-background-of-an-element-disapear-with-floated-content.html" target="_blank" rel="nofollow">http://css.flepstudio.org/en/css-tutorials/clearfix-how-to-avoid-that-the-background-of-an-element-disapear-with-floated-content.html</a></p>
]]></description>
   </item>
   <item>
      <title>ie 6,7 hack - my web height is cropped from bottom.</title>
      <link>http://webeyedea.info/forum/discussion/399/ie-67-hack-my-web-height-is-cropped-from-bottom-</link>
      <pubDate>Wed, 04 Jul 2012 18:52:58 +0100</pubDate>
      <dc:creator>mubeen</dc:creator>
      <guid isPermaLink="false">399@/forum/discussions</guid>
      <description><![CDATA[my contact forms submit button is cropped out. And so is the left header bar.<br /><br />I think If the left header bar section gets fixed, that may solve the submit button error.....<br /><br /><br />snap shot<br /><a href="http://go.prevue.it/view/e0jwf" target="_blank" rel="nofollow">http://go.prevue.it/view/e0jwf</a><br /><br /><br /><a href="http://darsgrill.co.uk/pages/contact.html" target="_blank" rel="nofollow">http://darsgrill.co.uk/pages/contact.html</a><br /><br />help please<br />mubeen]]></description>
   </item>
   <item>
      <title>Google form</title>
      <link>http://webeyedea.info/forum/discussion/391/google-form</link>
      <pubDate>Wed, 20 Jun 2012 20:30:43 +0100</pubDate>
      <dc:creator>Davina</dc:creator>
      <guid isPermaLink="false">391@/forum/discussions</guid>
      <description><![CDATA[Hi guys,<br /><br />Feel bit stupid but I'm having problems getting my form to work! I've done it so many times but I can't seem to get it working and I just need a fresh pair of eyes to tell me what I'm doing wrong :-(<br />]]></description>
   </item>
   <item>
      <title>Ie6 hack not working</title>
      <link>http://webeyedea.info/forum/discussion/386/ie6-hack-not-working</link>
      <pubDate>Mon, 18 Jun 2012 21:47:03 +0100</pubDate>
      <dc:creator>georgia</dc:creator>
      <guid isPermaLink="false">386@/forum/discussions</guid>
      <description><![CDATA[Hi guys,<br />
Hope you all good :)<br />
Just thought id post this link: georgia.webeyedea.info/bagerswalkfinal-3-edits-ie-2 <br />
 on here to see if you could help me please.<br />
I am doing a hack for ie6 only but its not working:(<br />
All i am trying to change is the background image,the faint blue and beige line that go through page,bunting,border wave and footer wave.As these have big ugly grey boxes around them<br />
I am putting the background images in as jpeg so i don&#039;t get the grey box and only see the white.<br />
I need to meet my client tomorrow/wed so really need to get this done :)<br />
thanks]]></description>
   </item>
   <item>
      <title>how to increase tag cloud font size on satellite</title>
      <link>http://webeyedea.info/forum/discussion/383/how-to-increase-tag-cloud-font-size-on-satellite</link>
      <pubDate>Fri, 15 Jun 2012 19:57:20 +0100</pubDate>
      <dc:creator>nazim</dc:creator>
      <guid isPermaLink="false">383@/forum/discussions</guid>
      <description><![CDATA[Hi everyone <br />
<br />
If you want to increase the font size for the tag cloud on satellite.  Then you need to change it in the preference.php file, which is found in your setup folder.<br />
<br />
Its under function makeTagCloud($theme) which is on row 215, you go down to row 249 if you want to change the font size for the text which appear big in you tag cloud and 250 for the small text.<br />
<br />
$highestTag = 0;<br />
	$lowestTag = 60000;<br />
	$maxFontSize = 40; <br />
	$minFontSize = 15; <br />
	$bright = 255;<br />
	$dark = 80;]]></description>
   </item>
   <item>
      <title>problem solving via Forrst, for Nicole</title>
      <link>http://webeyedea.info/forum/discussion/384/problem-solving-via-forrst-for-nicole</link>
      <pubDate>Sun, 17 Jun 2012 13:04:35 +0100</pubDate>
      <dc:creator>prisca</dc:creator>
      <guid isPermaLink="false">384@/forum/discussions</guid>
      <description><![CDATA[Hi,<br />
just thought I&#039;d share this link here ~ http://forrst.com/posts/bottom_panel_reveal_going_wrong_on_small_screens-xde#comment-594892<br />
<br />
we&#039;re trying to solve the issue on Nicole&#039;s site with the footer slide panel ~ if you have any ideas for solutions, please leave us a comment!]]></description>
   </item>
   <item>
      <title>contact form issues</title>
      <link>http://webeyedea.info/forum/discussion/382/contact-form-issues</link>
      <pubDate>Wed, 13 Jun 2012 12:03:57 +0100</pubDate>
      <dc:creator>naraujobianchi</dc:creator>
      <guid isPermaLink="false">382@/forum/discussions</guid>
      <description><![CDATA[Hello! How are you?<br />
<br />
I&#039;m trying to reach the end of my website but more issues are coming along.<br />
<br />
I have a problem with my footer which I don&#039;t know how to fix, my footer is a drop up form, which Prisca help me to do it using a jQuery function. The height is defined in the script at the HTML.<br />
<br />
So the problem I have is that when doing the media queries, in the smallest sizes I&#039;m clearing the float and the form is just one column, so the height is much more longer now and the form is showing up when it shouldn&#039;t.<br />
<br />
If you don&#039;t understand what I mean, take a look when the screen is less than 768px.  I&#039;ll appreciate suggestions on how to solve it! =D <br />
<br />
www.bakingdesigns.co.uk <br />
<br />
<br />
By the way if you see more issues I should change please let me know as I need the masterpiece to be ready for tomorrow! =S<br />
<br />
Thank youuuuu!! =D]]></description>
   </item>
   <item>
      <title>HTML5 shiv</title>
      <link>http://webeyedea.info/forum/discussion/380/html5-shiv</link>
      <pubDate>Fri, 08 Jun 2012 09:14:01 +0100</pubDate>
      <dc:creator>naraujobianchi</dc:creator>
      <guid isPermaLink="false">380@/forum/discussions</guid>
      <description><![CDATA[Hello there,<br />
How are you portfolios going? <br />
I&#039;m writing because I have a doubt with the HTML5 shiv?<br />
<br />
when you go to this page http://code.google.com/p/html5shiv/<br />
<br />
It said that we have to download a zip file and paste the two lines of script.<br />
<br />
What I don&#039;t know what to do is whit the zip file, Am I supposed to take a js file from there and paste it into my js folder.<br />
<br />
I know Prisca that I should know this, but I can&#039;t remember!!!!! <br />
Thanks!]]></description>
   </item>
   <item>
      <title>Horrible sit issues i can no longer see straight</title>
      <link>http://webeyedea.info/forum/discussion/381/horrible-sit-issues-i-can-no-longer-see-straight</link>
      <pubDate>Sun, 10 Jun 2012 17:29:41 +0100</pubDate>
      <dc:creator>Daniel</dc:creator>
      <guid isPermaLink="false">381@/forum/discussions</guid>
      <description><![CDATA[Good afternoon guys, i have struggled and pulled my hair out with my sites gallery and lightbox styling. For some reason my first site works but every other one will not follow suit and i cant see straight anymore. Could anyone let me know what on earth is going on as i have soo many other things to do. :(<br />
I still need to find out how to get links to my free stuff to work as zip files are not accepted and my image gallery is all over the place as well as my icon pixelation! Im going to cry now!<br />
<br />
Please check out vs3 http://daniel.webeyedea.info/cloudacre-vs3/<br />
<br />
Thank you guys, hope your at least having better luck than me.]]></description>
   </item>
   <item>
      <title>the shy menu symptom</title>
      <link>http://webeyedea.info/forum/discussion/376/the-shy-menu-symptom</link>
      <pubDate>Tue, 08 May 2012 09:45:50 +0100</pubDate>
      <dc:creator>prisca</dc:creator>
      <guid isPermaLink="false">376@/forum/discussions</guid>
      <description><![CDATA[Hello people ;)<br />
<br />
thought it would be good to start a thread on here about our common problem of the menu getting lost in our sites.<br />
<br />
The problem:<br />
if you are using the &#039;show menu&#039; function on your sites via jQuery - everything will be fine initially. However, if you scale down the window to the size when your &#039;show menu&#039; kicks in - then show the menu and hide it again - then resize the window to larger screen size - you&#039;ll notice the menu will remain hidden.<br />
<br />
We need to find a solution here before you can hand over your finals to your clients....<br />
please share your thoughts and possible solutions ;)]]></description>
   </item>
   <item>
      <title>mobile menu javascript problem</title>
      <link>http://webeyedea.info/forum/discussion/374/mobile-menu-javascript-problem</link>
      <pubDate>Mon, 30 Apr 2012 11:39:42 +0100</pubDate>
      <dc:creator>nazim</dc:creator>
      <guid isPermaLink="false">374@/forum/discussions</guid>
      <description><![CDATA[For my client project I added an accordion menu for my menu div when viewing the site on a small screen.  The following script is used to get this effect <br />
<br />
<br />
<br />
		// show menu (smallest screens)<br />
		$(&#039;#menu-toggle&#039;).click(function() {<br />
		$(&#039;#menu ul&#039;).slideToggle(&#039;slow&#039;, function() {<br />
		// Animation complete.<br />
		});<br />
		$(&#039;ul&#039;).addClass(&#039;view&#039;);<br />
		});<br />
		});<br />
<br />
<br />
However, recently my good friend Julio found out that the menu doesn&#039;t execute on all pages and if you want to enable it, the light box doesn&#039;t work and vise versa.  As most of us are using Satellite 1.5 for our client project i found out that other java script can conflict with each script, so the mootool.js and slimbox.js conflict with the above script.  On my own client site i found the recent.php, tag.php and tags.php the lightbox works fine but the accordion menu script doesn&#039;t work.  <br />
<br />
Here is what i did to solve the problem,  the first thing to do is to take the above script and make some minor changes.<br />
<br />
Below is the above script with the minor changes<br />
<br />
<br />
<br />
		// show menu (smallest screens)<br />
		var $j = jQuery.noConflict();<br />
		// Use jQuery via $j(...)<br />
		$j(document).ready(function(){<br />
		$j(&#039;#menu-toggle&#039;).click(function() {<br />
		$j(&#039;#menu ul&#039;).slideToggle(&#039;slow&#039;, function() {<br />
		// Animation complete.<br />
		});<br />
		$j(&#039;ul&#039;).addClass(&#039;view&#039;);<br />
		});<br />
		});<br />
		 [Please note #menu-toggle is the name of my  you might have a different one.]<br />
<br />
add the whole script before the  .  if you have the mootools.js and the slimbox.js script  on the top of your html page take it down to the bottom before the .  You should make the above changes in the following pages, recent.php, set.php, tag.php and tags.php (assuming you have these pages).  These are the only pages that have more then one JavaScript. <br />
<br />
I hope it helps<br />
<br />
regards<br />
Nazim<br />
<br />
p.s here is were i found the solution to the problem, just in case the above method doesn&#039;t work for you<br />
http://api.jquery.com/jQuery.noConflict/]]></description>
   </item>
   </channel>
</rss>