<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.2" -->
<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>Support Forum - Tag: Coding - Recent Posts</title>
		<link>http://www.kriesi.at/support/tags/coding</link>
		<description>Support Forum - Tag: Coding - Recent Posts</description>
		<language>en-US</language>
		<pubDate>Sun, 19 May 2013 15:55:20 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.2</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.kriesi.at/support/search.php</link>
		</textInput>
		<atom:link href="http://www.kriesi.at/support/rss/tags/coding" rel="self" type="application/rss+xml" />

		<item>
			<title>Dude on "Help me figure out how to center the menu!"</title>
			<link>http://www.kriesi.at/support/topic/help-me-figure-out-how-to-center-the-menu#post-80598</link>
			<pubDate>Mon, 22 Oct 2012 07:35:40 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">80598@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Imho you just need to set the width of the menu items to auto and then add a margin to them - eg like:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;.main_menu .menu &#38;gt; li {
    margin-left: 40px;
    width: auto;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;The space will be 40px between the items.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>minxgraphics on "Help me figure out how to center the menu!"</title>
			<link>http://www.kriesi.at/support/topic/help-me-figure-out-how-to-center-the-menu#post-80526</link>
			<pubDate>Sun, 21 Oct 2012 03:25:56 +0000</pubDate>
			<dc:creator>minxgraphics</dc:creator>
			<guid isPermaLink="false">80526@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thank you Devin. The website will be going live tomorrow so I would love you to have a look tomorrow evening at around 7pm (AEDST) and you will be able to see what I mean. I just want the spaces between each menu item to be even and I thought that centering the text would do that but it obviously does not as each menu title is in a column I think anyway so they will never be able to have even space between them :( The website to look at is:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.dragonflycustombooks.com.au&#34; rel=&#34;nofollow&#34;&#62;http://www.dragonflycustombooks.com.au&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Help me figure out how to center the menu!"</title>
			<link>http://www.kriesi.at/support/topic/help-me-figure-out-how-to-center-the-menu#post-80494</link>
			<pubDate>Sat, 20 Oct 2012 14:10:58 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">80494@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi minxgraphics,&#60;/p&#62;
&#60;p&#62;Unfortunately just seeing the css doesn't help. The actual html for the menu/location and what elements are all taking effect on it are unnecessary to try and target it specifically.&#60;/p&#62;
&#60;p&#62;The only other thing I can suggest is adding !important to the above css as it works for me in-browser testing. So:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#header, #header a {
text-align: center !important;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>minxgraphics on "Help me figure out how to center the menu!"</title>
			<link>http://www.kriesi.at/support/topic/help-me-figure-out-how-to-center-the-menu#post-80293</link>
			<pubDate>Fri, 19 Oct 2012 00:07:26 +0000</pubDate>
			<dc:creator>minxgraphics</dc:creator>
			<guid isPermaLink="false">80293@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Devin! Thank you very much for your help. I had already tried your suggestion, every which way I could think of! I tried it all the way at the bottom of my style.css file as you suggested as well and still no luck :( I can not make the site live for you to look at until my client has approved it unfortunately. Below is the code for the menu - As you can see below I have tried putting the text-align: code in various places of the head and menu sections with no luck:&#60;/p&#62;
&#60;p&#62;/************************************************************************&#60;br /&#62;
-) HEAD&#60;br /&#62;
*************************************************************************/&#60;br /&#62;
#header{ /*head area, which contains main menu and logo*/&#60;br /&#62;
z-index: 100;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;#header .container{&#60;br /&#62;
/*height:90px;*/ /*uncomment this is you want a specific height for the header. otherwise it will adjust to the logo size*/&#60;br /&#62;
overflow: hidden;&#60;br /&#62;
padding: 40px 0;&#60;br /&#62;
z-index: 100;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;#header .fancyborder{&#60;br /&#62;
width:100%;&#60;br /&#62;
height:5px;&#60;br /&#62;
position: absolute;&#60;br /&#62;
top:0;&#60;br /&#62;
left:0;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;#top .logo, .logo a{&#60;br /&#62;
display:block;&#60;br /&#62;
position:relative;&#60;br /&#62;
border: none;&#60;br /&#62;
padding: 0;&#60;br /&#62;
margin:0;&#60;br /&#62;
float:left;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;#top .logo a, #top .logo a:hover{&#60;br /&#62;
top:0;&#60;br /&#62;
left:0;&#60;br /&#62;
outline:none;&#60;br /&#62;
border: none;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;#top .logo img{&#60;br /&#62;
border:none;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;#top .bg-logo, #top .bg-logo a{&#60;br /&#62;
text-indent: -9999px;&#60;br /&#62;
height:100px;&#60;br /&#62;
width:190px;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;/*menu*/&#60;/p&#62;
&#60;p&#62;.main_menu .menu{&#60;br /&#62;
float: right;&#60;br /&#62;
position: relative;&#60;br /&#62;
top:93px;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;.main_menu .menu &#38;gt; li{&#60;br /&#62;
float:left;&#60;br /&#62;
width:120px;&#60;br /&#62;
line-height: 1.6em;&#60;br /&#62;
text-align:center;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;.main_menu .menu &#38;gt; li:first-child{&#60;br /&#62;
text-align:center;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;.main_menu .menu a{&#60;br /&#62;
text-decoration: none;&#60;br /&#62;
text-transform: uppercase;&#60;br /&#62;
display: block;&#60;br /&#62;
text-align: center;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;.main_menu .menu a:hover{&#60;br /&#62;
text-decoration: none;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;.main_menu .menu &#38;gt; li &#38;gt; a{&#60;br /&#62;
font-weight: bold;&#60;br /&#62;
font-size:11px;&#60;br /&#62;
letter-spacing: 1.5px;&#60;br /&#62;
padding-bottom:0px;&#60;br /&#62;
text-align:center;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;.main_menu .menu li li a{&#60;br /&#62;
font-size:11px;&#60;br /&#62;
text-transform: none&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;.main_menu .menu li li ul{&#60;br /&#62;
display:none;&#60;br /&#62;
overflow: hidden;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;.main_menu .menu li li{&#60;br /&#62;
display:block;&#60;br /&#62;
width:120px;&#60;br /&#62;
overflow: hidden&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;.main_menu .menu li li li{&#60;br /&#62;
width:120px;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;.main_menu .menu li li li li{&#60;br /&#62;
width:120px;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;.main_menu .menu li li li li li{&#60;br /&#62;
width:120px;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;.main_menu .menu li li ul.showblock{&#60;br /&#62;
display:block;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;.main_menu .menu li li:hover &#38;gt; ul{&#60;br /&#62;
display:block;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;Very frustrating indeed! I was hoping to get this sorted out by the end of this coming weekend, will just have to keep chipping away at it and see if I can solve the puzzle :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Help me figure out how to center the menu!"</title>
			<link>http://www.kriesi.at/support/topic/help-me-figure-out-how-to-center-the-menu#post-80244</link>
			<pubDate>Thu, 18 Oct 2012 12:46:45 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">80244@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey minxgraphics,&#60;/p&#62;
&#60;p&#62;Can we take a look at your site live? You can try adding the following css to your style.css (all the way at the bottom) but I'm not sure its what you are trying to do for sure:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#header, #header a {
text-align: center;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>minxgraphics on "Help me figure out how to center the menu!"</title>
			<link>http://www.kriesi.at/support/topic/help-me-figure-out-how-to-center-the-menu#post-80158</link>
			<pubDate>Wed, 17 Oct 2012 23:23:33 +0000</pubDate>
			<dc:creator>minxgraphics</dc:creator>
			<guid isPermaLink="false">80158@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi everybody! I have just finished the layout on a new Velvet themed website and I can not for the life of me figure out how to make the menu titles centered so that the space between each menu title is even. Does anybody know how I can make this happen? Any help much appreciated ASAP :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>xxsimpxx on "Pinterest Integration"</title>
			<link>http://www.kriesi.at/support/topic/pinterest-integration#post-38695</link>
			<pubDate>Wed, 25 Jan 2012 18:49:39 +0000</pubDate>
			<dc:creator>xxsimpxx</dc:creator>
			<guid isPermaLink="false">38695@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I think that integrating the Pin it button from Pinterest would be HUGE for this theme. I've tried unsuccessfully to integrate it into the theme.&#60;/p&#62;
&#60;p&#62;Here is the Pinterest Goodies page for the &#34;Pin it&#34; button: &#60;a href=&#34;https://pinterest.com/about/goodies/&#34; rel=&#34;nofollow&#34;&#62;https://pinterest.com/about/goodies/&#60;/a&#62; &#60;/p&#62;
&#60;p&#62;My biggest problem is that I really don't have any coding experience. So I figured the best place to come would be here. I was hoping you guys could come up with a short video tutorial on how you could possibly integrate this and possibly other share buttons for each picture in say a gallery, blog or portfolio.&#60;/p&#62;
&#60;p&#62;For anyone who doesn't know what Pinterest is, it is a social media site for sharing images/photos. I recommend that you check it out and again I think that it would significantly boost the value of the Flashlight Theme.&#60;/p&#62;
&#60;p&#62;Thanks For Any Help Everyone!!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Adding Font To Avisio Layout Is Now Not Working Properly Neither Is Dashboard"</title>
			<link>http://www.kriesi.at/support/topic/adding-font-to-avisio-layout-is-now-not-working-properly-neither-is-dashboard#post-27309</link>
			<pubDate>Mon, 19 Sep 2011 07:16:16 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">27309@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;We'll stick to this post: &#60;a href=&#34;http://www.kriesi.at/support/topic/optionsphp&#34; rel=&#34;nofollow&#34;&#62;http://www.kriesi.at/support/topic/optionsphp&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jdarko82 on "Adding Font To Avisio Layout Is Now Not Working Properly Neither Is Dashboard"</title>
			<link>http://www.kriesi.at/support/topic/adding-font-to-avisio-layout-is-now-not-working-properly-neither-is-dashboard#post-27302</link>
			<pubDate>Mon, 19 Sep 2011 05:50:25 +0000</pubDate>
			<dc:creator>jdarko82</dc:creator>
			<guid isPermaLink="false">27302@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;&#38;lt;?php&#60;/p&#62;
&#60;p&#62;$pageinfo = array('full_name' =&#38;gt; '&#34;'.THEMENAME.'&#34; General Options', 'optionname'=&#38;gt;'general', 'child'=&#38;gt;false, 'filename' =&#38;gt; basename(__FILE__));&#60;/p&#62;
&#60;p&#62;$options = array();&#60;/p&#62;
&#60;p&#62;$options[] = array(	&#34;type&#34; =&#38;gt; &#34;open&#34;);&#60;/p&#62;
&#60;p&#62;$options[] =  array(&#34;type&#34; =&#38;gt; &#34;group&#34;);		&#60;/p&#62;
&#60;p&#62;$options[] =	array(	&#34;name&#34; =&#38;gt; &#34;General Layout Settings&#34;,&#60;br /&#62;
			&#34;desc&#34; =&#38;gt; &#34;Here you can set several style settings to quickly edit the look and feel of your website&#34;,&#60;br /&#62;
			&#34;id&#34; =&#38;gt; &#34;generallayout&#34;,&#60;br /&#62;
			&#34;type&#34; =&#38;gt; &#34;title_inside&#34;);&#60;/p&#62;
&#60;p&#62;$options[] = array(	&#34;name&#34; =&#38;gt; &#34;'&#34;.THEMENAME.&#34;' - Skin&#34;,&#60;br /&#62;
			&#34;desc&#34; =&#38;gt; &#34;Please choose one of the &#34;.THEMENAME.&#34; skins here&#34;,&#60;br /&#62;
            &#34;id&#34; =&#38;gt; &#34;skin&#34;,&#60;br /&#62;
            &#34;type&#34; =&#38;gt; &#34;dropdown&#34;,&#60;br /&#62;
            &#34;std&#34; =&#38;gt; &#34;1&#34;,&#60;br /&#62;
            &#34;subtype&#34; =&#38;gt; array(THEMENAME.' - Default'=&#38;gt;'1',THEMENAME.' - Minimal'=&#38;gt;'2',THEMENAME.' - Dark'=&#38;gt;'3'));&#60;/p&#62;
&#60;p&#62;$options[] =	array(	&#34;name&#34; =&#38;gt; &#34;Color Options&#34;,&#60;br /&#62;
			&#34;desc&#34; =&#38;gt; &#34;Since ther release of Wordpress 3, theme authors can use a buildt in background color/image editor. &#34;.THEMENAME.&#34; uses this color switcher to further define the color scheme. &#60;br /&#62;&#60;a&#62;You can edit it here&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;&#34;,&#60;br /&#62;
			&#34;id&#34; =&#38;gt; &#34;generallayout&#34;,&#60;br /&#62;
			&#34;type&#34; =&#38;gt; &#34;title_inside&#34;);			&#60;/p&#62;
&#60;p&#62;$options[] =  array(	&#34;name&#34; =&#38;gt; &#34;Fullwidth or Boxed&#34;,&#60;br /&#62;
			&#34;desc&#34; =&#38;gt; &#34;Set if your layout should stretch fullwidth to the left and right browser border or be boxed and centered.&#34;,&#60;br /&#62;
            &#34;id&#34; =&#38;gt; &#34;layout_style&#34;,&#60;br /&#62;
            &#34;type&#34; =&#38;gt; &#34;dropdown&#34;,&#60;br /&#62;
            &#34;std&#34; =&#38;gt; &#34;stretched&#34;,&#60;br /&#62;
            &#34;subtype&#34; =&#38;gt; array(	'Stretched Layout'=&#38;gt;'stretched',&#60;br /&#62;
            					'Boxed Layout'=&#38;gt;'boxed'&#60;br /&#62;
            					));&#60;/p&#62;
&#60;p&#62;$options[] =  array(	&#34;name&#34; =&#38;gt; &#34;Heading Font&#34;,&#60;br /&#62;
			&#34;desc&#34; =&#38;gt; &#34;The Font heading utilizes the google API and allows you to use a wide range of custom fonts for your headings&#34;,&#60;br /&#62;
            &#34;id&#34; =&#38;gt; &#34;font_heading&#34;,&#60;br /&#62;
            &#34;type&#34; =&#38;gt; &#34;dropdown&#34;,&#60;br /&#62;
            &#34;std&#34; =&#38;gt; &#34;josefine_small&#34;,&#60;br /&#62;
            &#34;subtype&#34; =&#38;gt; array(	'Cantarell'=&#38;gt;'cantarell',&#60;br /&#62;
            					'Cardo'=&#38;gt;'cardo',&#60;br /&#62;
            					'Droid Sans'=&#38;gt;'droidsans',&#60;br /&#62;
            					'Inconsolata'=&#38;gt;'inconsolata',&#60;br /&#62;
            					'Josefin All Characters'=&#38;gt;'josefine',&#60;br /&#62;
            					'Josefin Common Characters'=&#38;gt;'josefine_small',&#60;br /&#62;
            					'Lobster'=&#38;gt;'lobster',&#60;br /&#62;
            					'Molengo'=&#38;gt;'molengo',&#60;br /&#62;
            					'Reenie Beanie'=&#38;gt;'reeniebeanie',&#60;br /&#62;
            					'Tangerine'=&#38;gt;'tangerine',&#60;br /&#62;
            					'Vollkorn'=&#38;gt;'vollkorn',&#60;br /&#62;
            					'Yanone Kaffeesatz'=&#38;gt;'yanonekaffeesatz',&#60;br /&#62;
                                                'Neutra2'=&#38;gt;'neutra2'&#60;br /&#62;
            					));&#60;/p&#62;
&#60;p&#62;$options[] =  array(&#34;type&#34; =&#38;gt; &#34;group&#34;);&#60;br /&#62;
$options[] = array(	&#34;name&#34; =&#38;gt; &#34;Logo&#34;,&#60;br /&#62;
			&#34;desc&#34; =&#38;gt; &#34;Add the full URI path to your logo. the themes default logo gets applied if the input field is left blank&#60;br /&#62;Logo Dimension: 247px * 94px (if your logo is larger you might need to modify style.css to align it perfectly)&#60;br /&#62; URI Exampe: &#60;a href=&#34;http://www.yourdomain.com/path/to/image.jpg&#34; rel=&#34;nofollow&#34;&#62;http://www.yourdomain.com/path/to/image.jpg&#60;/a&#62;&#60;br /&#62;&#34;,&#60;br /&#62;
			&#34;id&#34; =&#38;gt; &#34;logo&#34;,&#60;br /&#62;
			&#34;std&#34; =&#38;gt; &#34;&#34;,&#60;br /&#62;
			&#34;size&#34; =&#38;gt; 30,&#60;br /&#62;
			&#34;type&#34; =&#38;gt; &#34;upload&#34;);&#60;/p&#62;
&#60;p&#62;$options[] = array(	&#34;name&#34; =&#38;gt; &#34;Google Analytics Code&#34;,&#60;br /&#62;
		&#34;desc&#34; =&#38;gt; &#34;Paste your analytics code here, it will get applied to each page&#34;,&#60;br /&#62;
        &#34;id&#34; =&#38;gt; &#34;analytics&#34;,&#60;br /&#62;
        &#34;type&#34; =&#38;gt; &#34;textarea&#34;);&#60;/p&#62;
&#60;p&#62;$options[] = array(	&#34;type&#34; =&#38;gt; &#34;group&#34;);	&#60;/p&#62;
&#60;p&#62;$options[] = array(	&#34;name&#34; =&#38;gt; &#34;Dummy Data Import&#34;,&#60;br /&#62;
			&#34;desc&#34; =&#38;gt; &#34;If you check the checkbox below and save this page the theme will import dummy data to make it look similar to my Live Preview&#60;br /&#62;This option works best when executed on a new wordpress installation and will help you to understand how to fill posts, pages and set the different theme options.&#34;,&#60;br /&#62;
			&#34;type&#34; =&#38;gt; &#34;title_inside&#34;);	&#60;/p&#62;
&#60;p&#62;$options[] = array(	&#34;name&#34; =&#38;gt; &#34;Import Dummy Data on save&#34;,&#60;br /&#62;
		&#34;desc&#34; =&#38;gt; &#34;Import data?&#34;,&#60;br /&#62;
        &#34;id&#34; =&#38;gt; &#34;dummy&#34;,&#60;br /&#62;
        &#34;type&#34; =&#38;gt; &#34;import&#34;,&#60;br /&#62;
        &#34;file&#34; =&#38;gt; TEMPLATEPATH.&#34;/dummy.xml&#34;&#60;br /&#62;
        );&#60;/p&#62;
&#60;p&#62;$options[] = array(	&#34;type&#34; =&#38;gt; &#34;group&#34;);&#60;br /&#62;
$options[] = array(	&#34;type&#34; =&#38;gt; &#34;close&#34;);&#60;/p&#62;
&#60;p&#62;$options_page = new kriesi_option_pages($options, $pageinfo);&#60;/p&#62;
&#60;p&#62;&#60;a href='http://imageshack.us/photo/my-images/11/addingfont.png/'&#62;&#60;img src='http://img11.imageshack.us/img11/3424/addingfont.th.png' /&#62;&#60;/a&#62;
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
