<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.1" -->
<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>Secretary Forum &#187; Recent Posts</title>
		<link>http://www.thesecretary.org/forum/</link>
		<description>Secretary Forum &#187; Recent Posts</description>
		<language>en-US</language>
		<pubDate>Sun, 05 Feb 2012 13:05:21 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.thesecretary.org/forum/search.php</link>
		</textInput>
		<atom:link href="http://www.thesecretary.org/forum/rss.php" rel="self" type="application/rss+xml" />

		<item>
			<title>asgerb on "Use keyboard to control slideshow"</title>
			<link>http://www.thesecretary.org/forum/topic.php?id=943#post-2765</link>
			<pubDate>Sat, 04 Feb 2012 18:55:56 +0000</pubDate>
			<dc:creator>asgerb</dc:creator>
			<guid isPermaLink="false">2765@http://www.thesecretary.org/forum/</guid>
			<description><p>Aha, well this is not a problem since it's on individual project pages and they just have one slideshow, but thanks for the comment :)
</p></description>
		</item>
		<item>
			<title>mikael on "Use keyboard to control slideshow"</title>
			<link>http://www.thesecretary.org/forum/topic.php?id=943#post-2757</link>
			<pubDate>Thu, 02 Feb 2012 21:54:20 +0000</pubDate>
			<dc:creator>mikael</dc:creator>
			<guid isPermaLink="false">2757@http://www.thesecretary.org/forum/</guid>
			<description><p>That will trigger it for all slideshows on a page, which means this will only make sense if you have only one slideshow on a page at any time. More than that and it won't work as expected (it will only do next/prev on the first slideshow the code finds)
</p></description>
		</item>
		<item>
			<title>microbians on "Jquery post() How to use Ajax to replace content?"</title>
			<link>http://www.thesecretary.org/forum/topic.php?id=192#post-2756</link>
			<pubDate>Thu, 02 Feb 2012 14:53:42 +0000</pubDate>
			<dc:creator>microbians</dc:creator>
			<guid isPermaLink="false">2756@http://www.thesecretary.org/forum/</guid>
			<description><p>The best to implement a ajax version is to use a custom query variable, I use ?ajax=true, but also my layout_projects.php is a include of the layout_default.php, and I control all the pages from this PHP using pageInfo(currentPage()) I select what to render and how.
</p></description>
		</item>
		<item>
			<title>asgerb on "Most images are broken (FIXED)"</title>
			<link>http://www.thesecretary.org/forum/topic.php?id=969#post-2752</link>
			<pubDate>Wed, 01 Feb 2012 23:25:27 +0000</pubDate>
			<dc:creator>asgerb</dc:creator>
			<guid isPermaLink="false">2752@http://www.thesecretary.org/forum/</guid>
			<description><p>Hey Mikael, it's me again :)</p>
<p>So I got everything working the way I wanted to and just needed to move the site from a subfolder (/dev/) to the root of the server. I changed the index.php and the all the folder settings in the dashboard. The problem is that the site is still pointing towards images in the old folder: <code>/dev/cms/files/projects/</code> and not <code>/cms/files/projects/</code>. All the settings should be correct though – any idea what might be the problem?<br />
Uploading new images is also not working.</p>
<p>--------------------<br />
Edit:</p>
<p>Okay it's working, the upload path was correct, but not the URL :)<br />
(Posting a problem and then finding the solution right after seems to be a recurring theme for me, sorry about that)
</p></description>
		</item>
		<item>
			<title>asgerb on "Use keyboard to control slideshow"</title>
			<link>http://www.thesecretary.org/forum/topic.php?id=943#post-2749</link>
			<pubDate>Wed, 01 Feb 2012 15:53:25 +0000</pubDate>
			<dc:creator>asgerb</dc:creator>
			<guid isPermaLink="false">2749@http://www.thesecretary.org/forum/</guid>
			<description><p>Thanks alot for your answer Mikael, but I was looking for a way to bind the slideshow navigation, this is for next/previous project, right?<br />
––––––––––––––<br />
Edit:<br />
I managed to find a solution :) posting it here if anyone else should need this code:</p>
<pre><code>$(document).keydown(function(e){
    if (e.keyCode == 37) {
       $(&#039;.prev&#039;).click();
       return false;
    }
    if (e.keyCode == 39) {
       $(&#039;.next&#039;).click();
       return false;
    }
});</code></pre></description>
		</item>
		<item>
			<title>mikael on "Use keyboard to control slideshow"</title>
			<link>http://www.thesecretary.org/forum/topic.php?id=943#post-2737</link>
			<pubDate>Tue, 31 Jan 2012 14:59:56 +0000</pubDate>
			<dc:creator>mikael</dc:creator>
			<guid isPermaLink="false">2737@http://www.thesecretary.org/forum/</guid>
			<description><p>If you create links in your HTML and give them IDs, like:</p>
<p><code><br />
&#60;a</code><code> id="prev_project"&#62;Prev Project&#60;/</code><code>a&#62;<br />
&#60;a</code><code> id="next_projet"&#62;Next Project&#60;/</code><code>a&#62;<br />
</code></p>
<p>You can then do this:<br />
<pre><code>$(document).keydown(function(e){
    if (e.keyCode == 37) {
       window.location= $(&#34;#prev_project&#34;).attr(&#34;href&#34;);
       return false;
    }
    if (e.keyCode == 39) {
       window.location= $(&#34;#next_project&#34;).attr(&#34;href&#34;);
       return false;
    }
});</code></pre></description>
		</item>
		<item>
			<title>mikael on "Title in 2 lines"</title>
			<link>http://www.thesecretary.org/forum/topic.php?id=942#post-2724</link>
			<pubDate>Fri, 27 Jan 2012 15:09:02 +0000</pubDate>
			<dc:creator>mikael</dc:creator>
			<guid isPermaLink="false">2724@http://www.thesecretary.org/forum/</guid>
			<description><p>Enter <code>&#60;?php echo projectTags() ?&#62;</code>. See the guide: <a href="http://www.thesecretary.org/guide/general-usage/projects/template-tags" rel="nofollow">http://www.thesecretary.org/guide/general-usage/projects/template-tags</a></p>
<p>Just put it after the title code in your template.
</p></description>
		</item>
		<item>
			<title>utskiboo on "Title in 2 lines"</title>
			<link>http://www.thesecretary.org/forum/topic.php?id=942#post-2723</link>
			<pubDate>Wed, 25 Jan 2012 23:22:44 +0000</pubDate>
			<dc:creator>utskiboo</dc:creator>
			<guid isPermaLink="false">2723@http://www.thesecretary.org/forum/</guid>
			<description><p>Thanks alot...  Could you be so kind to tell me the exact code to cut from where and where to paste it, to get the tags under the title?
</p></description>
		</item>
		<item>
			<title>sdrib on "Spam on the forum"</title>
			<link>http://www.thesecretary.org/forum/topic.php?id=726#post-2722</link>
			<pubDate>Tue, 24 Jan 2012 13:09:45 +0000</pubDate>
			<dc:creator>sdrib</dc:creator>
			<guid isPermaLink="false">2722@http://www.thesecretary.org/forum/</guid>
			<description><p>Nice!!<br />
It's good to see this place weeded. :D
</p></description>
		</item>
		<item>
			<title>sdrib on "Why make The Secretary into an Opensource GitHub project?"</title>
			<link>http://www.thesecretary.org/forum/topic.php?id=941#post-2721</link>
			<pubDate>Tue, 24 Jan 2012 13:08:51 +0000</pubDate>
			<dc:creator>sdrib</dc:creator>
			<guid isPermaLink="false">2721@http://www.thesecretary.org/forum/</guid>
			<description><p>Brilliant! Great to hear!
</p></description>
		</item>
		<item>
			<title>asgerb on "Use keyboard to control slideshow"</title>
			<link>http://www.thesecretary.org/forum/topic.php?id=943#post-2720</link>
			<pubDate>Mon, 23 Jan 2012 20:57:16 +0000</pubDate>
			<dc:creator>asgerb</dc:creator>
			<guid isPermaLink="false">2720@http://www.thesecretary.org/forum/</guid>
			<description><p>Hey Mikael!<br />
Can you help me with binding the arrow keys to the next / previous buttons of the slideshow?<br />
I found the jQuery needed (which I suppose I have to put it in the slideshow.plugin.php):</p>
<pre><code>$(document).keydown(function(e){
    if (e.keyCode == 37) {
       # BIND TO PREVIOUS
       return false;
    }
    if (e.keyCode == 39) {
       # BIND TO NEXT
       return false;
    }
});</code></pre></description>
		</item>
		<item>
			<title>mikael on "Title in 2 lines"</title>
			<link>http://www.thesecretary.org/forum/topic.php?id=942#post-2719</link>
			<pubDate>Mon, 23 Jan 2012 20:03:36 +0000</pubDate>
			<dc:creator>mikael</dc:creator>
			<guid isPermaLink="false">2719@http://www.thesecretary.org/forum/</guid>
			<description><p>You can modify your project_list.html template to include the tags under the title. That would allow you to write the type of project.</p>
<p>To sort by date, put "order= date, orderHow= desc" in the Page Content Options field.</p>
<p>EDIT: just double checked and the way it is setup now, it will always sort with the project sections and whatever else you want to. So you won't be able to get the actual newest project first unless it is in the first section. I'll have to fix that for the next update.
</p></description>
		</item>
		<item>
			<title>utskiboo on "Title in 2 lines"</title>
			<link>http://www.thesecretary.org/forum/topic.php?id=942#post-2718</link>
			<pubDate>Mon, 23 Jan 2012 08:58:19 +0000</pubDate>
			<dc:creator>utskiboo</dc:creator>
			<guid isPermaLink="false">2718@http://www.thesecretary.org/forum/</guid>
			<description><p>Hi...</p>
<p>Is it possible to add yet another line to the project title thumbnail caption, And in that way have for instance the name of the project and underneath the type of project?</p>
<p>Also I would like to know how to sort project after date when looking at all project groups, and not after projectsgroups and then date, so that the newest project is the first and so on, no matter what project group it belongs to...</p>
<p>Great thnx in advance</p>
<p>U
</p></description>
		</item>
		<item>
			<title>mikael on "Why make The Secretary into an Opensource GitHub project?"</title>
			<link>http://www.thesecretary.org/forum/topic.php?id=941#post-2717</link>
			<pubDate>Sun, 22 Jan 2012 20:06:19 +0000</pubDate>
			<dc:creator>mikael</dc:creator>
			<guid isPermaLink="false">2717@http://www.thesecretary.org/forum/</guid>
			<description><p>Definitely, already on the list. Have an account too.
</p></description>
		</item>
		<item>
			<title>sdrib on "Why make The Secretary into an Opensource GitHub project?"</title>
			<link>http://www.thesecretary.org/forum/topic.php?id=941#post-2716</link>
			<pubDate>Sun, 22 Jan 2012 15:46:35 +0000</pubDate>
			<dc:creator>sdrib</dc:creator>
			<guid isPermaLink="false">2716@http://www.thesecretary.org/forum/</guid>
			<description><p>Just an idea.<br />
I have seen a lot of projects flourish after they where put on GitHub.<br />
You remain in control of the project and it's master branch. People can submit patches and updates.</p>
<p>What do you think?
</p></description>
		</item>
		<item>
			<title>faywray on "A New Page &quot;Photos&quot; with the same properties as a projects-page"</title>
			<link>http://www.thesecretary.org/forum/topic.php?id=938#post-2715</link>
			<pubDate>Sun, 22 Jan 2012 14:27:13 +0000</pubDate>
			<dc:creator>faywray</dc:creator>
			<guid isPermaLink="false">2715@http://www.thesecretary.org/forum/</guid>
			<description><p>Thank you very much! I use the "Humii"-Theme and i think i got how it works, now.
</p></description>
		</item>
		<item>
			<title>mitko_to on "Problem , with projects."</title>
			<link>http://www.thesecretary.org/forum/topic.php?id=894#post-2714</link>
			<pubDate>Sun, 22 Jan 2012 08:40:26 +0000</pubDate>
			<dc:creator>mitko_to</dc:creator>
			<guid isPermaLink="false">2714@http://www.thesecretary.org/forum/</guid>
			<description><p>I just sent you an email.<br />
Thanks for your time  and help.
</p></description>
		</item>
		<item>
			<title>mikael on "Problem , with projects."</title>
			<link>http://www.thesecretary.org/forum/topic.php?id=894#post-2713</link>
			<pubDate>Sat, 21 Jan 2012 16:42:07 +0000</pubDate>
			<dc:creator>mikael</dc:creator>
			<guid isPermaLink="false">2713@http://www.thesecretary.org/forum/</guid>
			<description><p>So send me an email!
</p></description>
		</item>
		<item>
			<title>mitko_to on "Problem , with projects."</title>
			<link>http://www.thesecretary.org/forum/topic.php?id=894#post-2712</link>
			<pubDate>Sat, 21 Jan 2012 14:09:11 +0000</pubDate>
			<dc:creator>mitko_to</dc:creator>
			<guid isPermaLink="false">2712@http://www.thesecretary.org/forum/</guid>
			<description><p>somebody to help :(<br />
I`ve try everything that i know, but same problems.
</p></description>
		</item>
		<item>
			<title>sldonmtns on "Slideshow with different sizes"</title>
			<link>http://www.thesecretary.org/forum/topic.php?id=226#post-2711</link>
			<pubDate>Fri, 20 Jan 2012 22:30:27 +0000</pubDate>
			<dc:creator>sldonmtns</dc:creator>
			<guid isPermaLink="false">2711@http://www.thesecretary.org/forum/</guid>
			<description><p>Thanks! It works perfectly with the animated code!</p>
<p>Here's an example page, using the animation, if anyone needs it: <a href="http://dannyrolph.net/portfolio/super-bridge" rel="nofollow">http://dannyrolph.net/portfolio/super-bridge</a>
</p></description>
		</item>
		<item>
			<title>mikael on "Slideshow with different sizes"</title>
			<link>http://www.thesecretary.org/forum/topic.php?id=226#post-2710</link>
			<pubDate>Fri, 20 Jan 2012 15:45:38 +0000</pubDate>
			<dc:creator>mikael</dc:creator>
			<guid isPermaLink="false">2710@http://www.thesecretary.org/forum/</guid>
			<description><p>If you don't want it animated, use this instead:</p>
<p><code><br />
before: function(curr, next, opts, fwd)<br />
{<br />
var ht = $(next).height();</p>
<p>$(this).parent().css({height: ht});<br />
}<br />
</code></p>
<p>But this isn't nearly as nice (it jumps a bit)
</p></description>
		</item>
		<item>
			<title>mikael on "Slideshow with different sizes"</title>
			<link>http://www.thesecretary.org/forum/topic.php?id=226#post-2709</link>
			<pubDate>Fri, 20 Jan 2012 15:42:57 +0000</pubDate>
			<dc:creator>mikael</dc:creator>
			<guid isPermaLink="false">2709@http://www.thesecretary.org/forum/</guid>
			<description><p>Yes, have just implemented it. Will be included in the next update.</p>
<p>If you don't want to wait, open up .../system/plugins/displayers/slideshow/slideshow.plugin.php and scroll down to line 87 (<code>{$jquery_slideshow_opts['js']}</code>)</p>
<p><strong>Before</strong> that line paste the following:</p>
<p><code><br />
before: function(curr, next, opts, fwd)<br />
{<br />
	var ht = $(next).height();</p>
<p>	$(this).parent().animate({height: ht});<br />
}<br />
</code>
</p></description>
		</item>
		<item>
			<title>mikael on "How could I add a title to my project’s groups"</title>
			<link>http://www.thesecretary.org/forum/topic.php?id=940#post-2708</link>
			<pubDate>Fri, 20 Jan 2012 15:05:27 +0000</pubDate>
			<dc:creator>mikael</dc:creator>
			<guid isPermaLink="false">2708@http://www.thesecretary.org/forum/</guid>
			<description><p>The only option really is to use a texblock for each title and insert some HTML, like &#60;h1&#62;GROUP TITLE&#60;/h1&#62;. Otherwise you would need a plugin to add this functionality, but that would require modifying the database and output structure on the frontend.
</p></description>
		</item>
		<item>
			<title>mikael on "A New Page &quot;Photos&quot; with the same properties as a projects-page"</title>
			<link>http://www.thesecretary.org/forum/topic.php?id=938#post-2707</link>
			<pubDate>Fri, 20 Jan 2012 15:03:25 +0000</pubDate>
			<dc:creator>mikael</dc:creator>
			<guid isPermaLink="false">2707@http://www.thesecretary.org/forum/</guid>
			<description><p>Good to hear you're happy with it!</p>
<p>You need to use the Page Type option.</p>
<p>See here: <a href="http://www.thesecretary.org/guide/general-usage/pages/the-page-type-option" rel="nofollow">http://www.thesecretary.org/guide/general-usage/pages/the-page-type-option</a> and <a href="http://www.thesecretary.org/guide/general-usage/projects/page-type-options" rel="nofollow">http://www.thesecretary.org/guide/general-usage/projects/page-type-options</a></p>
<p>You can also take a look your "Relases" pages and copy the Page Type options.
</p></description>
		</item>
		<item>
			<title>julienb on "How could I add a title to my project’s groups"</title>
			<link>http://www.thesecretary.org/forum/topic.php?id=940#post-2706</link>
			<pubDate>Fri, 20 Jan 2012 13:33:17 +0000</pubDate>
			<dc:creator>julienb</dc:creator>
			<guid isPermaLink="false">2706@http://www.thesecretary.org/forum/</guid>
			<description><p>Hi all.</p>
<p>First things first; thank you, Mr Stær for this rocking cms.</p>
<p>It almost perfectly suits my needs. The only problem I’ve got is with project-page visual structure. I'd like to be able to define a title for every group in my projects. But if I kinda understood how that works, groups don’t reallly “exist”, I am wrong ?</p>
<p>Could you guide me to the way of properly achieving this need ? Should I try to add a new group type for titles, create a module / plugin, …<br />
As I am not so easy with php and haven’t yet deeply dove into your code, I would greatly appreciate a little help.</p>
<p>Thanks.
</p></description>
		</item>
		<item>
			<title>sldonmtns on "Slideshow with different sizes"</title>
			<link>http://www.thesecretary.org/forum/topic.php?id=226#post-2705</link>
			<pubDate>Fri, 20 Jan 2012 07:50:35 +0000</pubDate>
			<dc:creator>sldonmtns</dc:creator>
			<guid isPermaLink="false">2705@http://www.thesecretary.org/forum/</guid>
			<description><p>Did you ever look into this issue?</p>
<p>PS: Thanks for developing this project!
</p></description>
		</item>
		<item>
			<title>faywray on "A New Page &quot;Photos&quot; with the same properties as a projects-page"</title>
			<link>http://www.thesecretary.org/forum/topic.php?id=938#post-2703</link>
			<pubDate>Thu, 19 Jan 2012 23:43:45 +0000</pubDate>
			<dc:creator>faywray</dc:creator>
			<guid isPermaLink="false">2703@http://www.thesecretary.org/forum/</guid>
			<description><p>Dear folks,</p>
<p>i am very very happy with this cms. I have had wordpress and went quite mad in trying to get nice, minimalistic and well structured portfolio-like sites with it.</p>
<p>The secretary is wonderful.</p>
<p>Well, but as i am new with it, i haven't found good solutions for my attempts, yet.</p>
<p>I want to do photo galleries on my site.</p>
<p>You can look at the early drafts of the page here (<a href="http://www.raindearrevelations.com/site/site.php" rel="nofollow">http://www.raindearrevelations.com/site/site.php</a>), maybe it helps to understand my following questions.</p>
<p>I have a page called photos. When i reach there, i want thumbnails to show up, like on my projects ("releases")-Page. On that photos-startpage thumbnails should link to the specific galleries, where again thumbnails link to the photos. Which i want to show up with light-box or something like this (in case of the last problem, i'll have a look for this by myself).</p>
<p>I've searched through this forum, but can't find inputs how to achieve my named thumbnail-photo-thingy.</p>
<p>Maybe i have to Edit the templates/.php for this?</p>
<p>Do you have good advices for me?</p>
<p>Thanks for reading!<br />
Martin
</p></description>
		</item>
		<item>
			<title>mikael on "Assigning id to each image in project view"</title>
			<link>http://www.thesecretary.org/forum/topic.php?id=934#post-2700</link>
			<pubDate>Wed, 18 Jan 2012 19:29:16 +0000</pubDate>
			<dc:creator>mikael</dc:creator>
			<guid isPermaLink="false">2700@http://www.thesecretary.org/forum/</guid>
			<description><p>Sounds interesting.</p>
<p>Wouldn't be possible without editing the displayer plugins...I assume you are doing this Javascript? In that case, you don't need IDs, if the images are to be randomly placed. You can just loop through all the div.file elements (I assume you're using jQuery? - use .each()) and randomly place them.
</p></description>
		</item>
		<item>
			<title>asgerb on "Assigning id to each image in project view"</title>
			<link>http://www.thesecretary.org/forum/topic.php?id=934#post-2697</link>
			<pubDate>Wed, 18 Jan 2012 01:10:35 +0000</pubDate>
			<dc:creator>asgerb</dc:creator>
			<guid isPermaLink="false">2697@http://www.thesecretary.org/forum/</guid>
			<description><p>Hey Mikael!<br />
Thanks for all the hard work ;)</p>
<p>I was hoping you might be able to help me out. I'm playing around with a collage effect in my project view and in order to get the images to be positioned randomly I need each image to have an ID.</p>
<p>So all the images shown as one-by-one, slideshow or whatever, has IDs as for instace box1, box2, box3 etc.<br />
Is this possible?</p>
<p>All the best<br />
Asger
</p></description>
		</item>
		<item>
			<title>marzipanfish on "How to make next/prev project buttons circular?"</title>
			<link>http://www.thesecretary.org/forum/topic.php?id=619#post-2679</link>
			<pubDate>Wed, 11 Jan 2012 18:39:02 +0000</pubDate>
			<dc:creator>marzipanfish</dc:creator>
			<guid isPermaLink="false">2679@http://www.thesecretary.org/forum/</guid>
			<description><p>If anyone else wanted the previous button to loop to the first project, we've found a way to resolve it here (just replace the prevProject function in your projects/view.php with this code instead, should be line 891 to 948)</p>
<p>function prevProject( $returnData= false )<br />
	{<br />
		global $clerk;</p>
<p>		$projectsList= array();<br />
		$orderedProjects= array();<br />
		$currentProject= projectInfo( selectedProject() );<br />
		$currentIndex= 0;<br />
		$count= 0;</p>
<p>		$page= pageInfo( currentPage() );<br />
		$options= prepare_settings( $page['content_options'] );<br />
		$section= $clerk-&#62;query_fetchArray( $clerk-&#62;query_select( "project_sections", "", "WHERE name= '{$options['section']}' OR slug= '{$options['section']}' OR id='{$options['section']}'" ) );<br />
		$section= $section['id'];</p>
<p>		if ( !empty( $section ) )<br />
		{<br />
			$projects= $clerk-&#62;query_select( "projects", "", "WHERE section= '$section' ORDER BY pos ASC" );<br />
		}<br />
		else<br />
		{<br />
			$projects= $clerk-&#62;query_select( "projects", "", "ORDER BY section, pos ASC" );<br />
		}</p>
<p>		while ( $project= $clerk-&#62;query_fetchArray( $projects ) )<br />
		{<br />
			$projectsList[]= $project;<br />
		}</p>
<p>		$getSections= $clerk-&#62;query_select( "project_sections", "", "ORDER BY pos ASC" );<br />
		while ( $section= $clerk-&#62;query_fetchArray( $getSections ) )<br />
		{<br />
			foreach ( $projectsList as $p )<br />
			{<br />
				if ( $p['section'] == $section['id'] )<br />
				{<br />
					$orderedProjects[]= $p;<br />
					if ( $p['id'] == $currentProject['id'] )<br />
					{<br />
						$currentIndex= $count;<br />
					}<br />
					$count++;<br />
				}<br />
			}<br />
		}</p>
<p>		$projNumber = count($projectsList) - 1;</p>
<p>		$prevProject= $orderedProjects[$currentIndex - 1];</p>
<p>		if ( $returnData )<br />
		{<br />
			$prevProject['link']= linkToProject( $prevProject['id'] );<br />
			return $prevProject;<br />
		}</p>
<p>		return ( $currentIndex != 0 ) ? linkToProject( $prevProject['id'] ) : linkToProject( $orderedProjects[$projNumber]['id'] );<br />
	}
</p></description>
		</item>
		<item>
			<title>mitko_to on "logo, loop and autostart ?"</title>
			<link>http://www.thesecretary.org/forum/topic.php?id=908#post-2670</link>
			<pubDate>Tue, 10 Jan 2012 19:43:49 +0000</pubDate>
			<dc:creator>mitko_to</dc:creator>
			<guid isPermaLink="false">2670@http://www.thesecretary.org/forum/</guid>
			<description><p>Hi , </p>
<p>I`m now sure but , for the logo you must edit the header file on the following area:</p>
<p>&#60;div id="title"&#62;<br />
<a>&#60;h1&#62;&#60;?php echo siteTitle()?&#62;&#60;/h1&#62;</a><br />
&#60;/div&#62;</p>
<p>Just delete: &#60;h1&#62;&#60;?php echo siteTitle()?&#62;&#60;/h1&#62; and put : &#60;img src="logo/path/...jpg" betwean anchor tag.<br />
If you need some extra style for your logo , you may edit the main.css file on section:</p>
<p>#header #title {<br />
	some: attributes ;<br />
}
</p></description>
		</item>
		<item>
			<title>ninaknudsen on "logo, loop and autostart ?"</title>
			<link>http://www.thesecretary.org/forum/topic.php?id=908#post-2669</link>
			<pubDate>Tue, 10 Jan 2012 15:13:11 +0000</pubDate>
			<dc:creator>ninaknudsen</dc:creator>
			<guid isPermaLink="false">2669@http://www.thesecretary.org/forum/</guid>
			<description><p>Hello<br />
I have two problems I cant solve<br />
Im using Granti<br />
1)<br />
Is it possible to make one of my videos in projects loop and autostart ?<br />
And where ? I mean in Cyberduck, in the edit of Granti or ???</p>
<p>2)<br />
How do I put my logo (jpg.) instead of tittle ?<br />
should I begin with insetting logo.jpg using cyberduck first ?</p>
<p>hope you understand what I mean, im pretty new in this<br />
xx
</p></description>
		</item>
		<item>
			<title>mitko_to on "Problem , with projects."</title>
			<link>http://www.thesecretary.org/forum/topic.php?id=894#post-2659</link>
			<pubDate>Mon, 09 Jan 2012 09:59:17 +0000</pubDate>
			<dc:creator>mitko_to</dc:creator>
			<guid isPermaLink="false">2659@http://www.thesecretary.org/forum/</guid>
			<description><p>Provide me a e-mail address please.
</p></description>
		</item>
		<item>
			<title>mikael on "Problem , with projects."</title>
			<link>http://www.thesecretary.org/forum/topic.php?id=894#post-2658</link>
			<pubDate>Mon, 09 Jan 2012 09:24:28 +0000</pubDate>
			<dc:creator>mikael</dc:creator>
			<guid isPermaLink="false">2658@http://www.thesecretary.org/forum/</guid>
			<description><p>Ok, send me an email with the login info to your Secretary installation.
</p></description>
		</item>
		<item>
			<title>mitko_to on "Problem , with projects."</title>
			<link>http://www.thesecretary.org/forum/topic.php?id=894#post-2657</link>
			<pubDate>Sun, 08 Jan 2012 13:19:26 +0000</pubDate>
			<dc:creator>mitko_to</dc:creator>
			<guid isPermaLink="false">2657@http://www.thesecretary.org/forum/</guid>
			<description><p>Thanks,</p>
<p>The url is <a href="http://mitko.powernet.bg" rel="nofollow">http://mitko.powernet.bg</a>
</p></description>
		</item>

	</channel>
</rss>

