<?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 - Topic: Customizing Header Section</title>
		<link>http://www.kriesi.at/support/topic/customizing-header-section</link>
		<description>Support Forum - Topic: Customizing Header Section</description>
		<language>en-US</language>
		<pubDate>Sat, 25 May 2013 11:35:21 +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/topic/customizing-header-section" rel="self" type="application/rss+xml" />

		<item>
			<title>Dude on "Customizing Header Section"</title>
			<link>http://www.kriesi.at/support/topic/customizing-header-section#post-18047</link>
			<pubDate>Fri, 29 Apr 2011 05:12:51 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">18047@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;You can use the same structure like Kriesi. Use a list like:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;ul class=&#38;quot;social_bookmarks&#38;quot;&#38;gt;

&#38;lt;li class=&#38;#39;my-icon-class&#38;#39;&#38;gt;Your icon&#38;lt;/li&#38;gt;
....

&#38;lt;/ul&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;and adjust the css a bit.&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;.social_bookmarks .my-icon-class a {
    background: url(&#38;quot;../images/skin1/icon.png&#38;quot;) no-repeat scroll 0 0 transparent;
}

.social_bookmarks a {
    border: medium none;
    display: block;
    float: left;
    height: 24px;
    outline: medium none;
    padding: 0;
    text-indent: -9999px;
    width: 24px;
}&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>onurkiyak on "Customizing Header Section"</title>
			<link>http://www.kriesi.at/support/topic/customizing-header-section#post-18032</link>
			<pubDate>Thu, 28 Apr 2011 20:47:45 +0000</pubDate>
			<dc:creator>onurkiyak</dc:creator>
			<guid isPermaLink="false">18032@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;All of them works. Thanks a lot. One quick question. When I use a table to hold all the social icons, it gets messed up and the table of the background becomes white. Any suggestion? Rather than using table?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Customizing Header Section"</title>
			<link>http://www.kriesi.at/support/topic/customizing-header-section#post-18024</link>
			<pubDate>Thu, 28 Apr 2011 20:08:19 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">18024@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;br /&#62;
1) Try:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#top .avia_mega &#38;gt; li &#38;gt; ul, #top .avia_mega &#38;gt; li &#38;gt; ul ul {
padding: 2px !important;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;2) Delete following code in header.php:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;get_search_form();&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;and:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;ul class=&#38;quot;social_bookmarks&#38;quot;&#38;gt;
						&#38;lt;li class=&#38;#39;rss&#38;#39;&#38;gt;&#38;lt;a href=&#38;quot;&#38;lt;?php bloginfo(&#38;#39;rss2_url&#38;#39;); ?&#38;gt;&#38;quot;&#38;gt;RSS&#38;lt;/a&#38;gt;&#38;lt;/li&#38;gt;
						&#38;lt;?php
						if($twitter = avia_get_option(&#38;#39;avia, twitter&#38;#39;)) echo &#38;quot;&#38;lt;li class=&#38;#39;twitter&#38;#39;&#38;gt;&#38;lt;a href=&#38;#39;http://twitter.com/&#38;quot;.$twitter.&#38;quot;&#38;#39;&#38;gt;Twitter&#38;lt;/a&#38;gt;&#38;lt;/li&#38;gt;&#38;quot;;
						if($facebook = avia_get_option(&#38;#39;avia, facebook&#38;#39;)) echo &#38;quot;&#38;lt;li class=&#38;#39;facebook&#38;#39;&#38;gt;&#38;lt;a href=&#38;#39;&#38;quot;.$facebook.&#38;quot;&#38;#39;&#38;gt;Twitter&#38;lt;/a&#38;gt;&#38;lt;/li&#38;gt;&#38;quot;;
						 ?&#38;gt;
					&#38;lt;/ul&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;You can replace the social bookmarks code with your code if you like.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>onurkiyak on "Customizing Header Section"</title>
			<link>http://www.kriesi.at/support/topic/customizing-header-section#post-18009</link>
			<pubDate>Thu, 28 Apr 2011 17:10:07 +0000</pubDate>
			<dc:creator>onurkiyak</dc:creator>
			<guid isPermaLink="false">18009@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;James,&#60;/p&#62;
&#60;p&#62;I just  want to reduce the border of drop down lists. I just copy paste Dude's code to my custom.css. Unfortunately, it is not working. You can see it from &#60;a href=&#34;http://www.gourmetmarketing.net&#34; rel=&#34;nofollow&#34;&#62;http://www.gourmetmarketing.net&#60;/a&#62;.&#60;/p&#62;
&#60;p&#62;I also want to take off the social icons, rss icon and search box and insert the code above. After Dude's code, I don't see facebook and twitter. However, Rss icon and Search box is still there. With you recommendation: where should I put the above code that will fit right side of the header section?&#60;/p&#62;
&#60;p&#62; Thanks&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
		</item>
		<item>
			<title>James Morrison on "Customizing Header Section"</title>
			<link>http://www.kriesi.at/support/topic/customizing-header-section#post-17969</link>
			<pubDate>Thu, 28 Apr 2011 10:47:17 +0000</pubDate>
			<dc:creator>James Morrison</dc:creator>
			<guid isPermaLink="false">17969@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;/p&#62;
&#60;p&#62;If you're trying to adjust the border of drop down items, Dude's code does work. If you want to change the top level items padding, you'll find the code to adjust on line 274 of style.css:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;#top .main_menu .avia_mega a {
    display: block;
    float: left;
    height: 34px;
    line-height: 34px;
    margin: 0 3px 0 0;
    outline: medium none;
    padding: 0 19px;
    position: relative;
    text-align: center;
    text-decoration: none;
    z-index: 35;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;However, it is recommended to use the custom.css file in the CSS folder to avoid having to redo your changes if the theme is updated. In /css/custom.css add this code:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;#top .main_menu .avia_mega a {
    padding: 0 19px;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;and change the padding value to suit your needs.&#60;/p&#62;
&#60;p&#62;2.) What's the site URL where you've added this code?&#60;/p&#62;
&#60;p&#62;3.) What do you mean by &#34;slug section&#34;?&#60;/p&#62;
&#60;p&#62;4.) There are 2 ways to adjust the output:&#60;/p&#62;
&#60;p&#62;a.) Use the More tag within your posts. For usage instructions see the Codex page: &#60;a href=&#34;http://codex.wordpress.org/Customizing_the_Read_More&#34; rel=&#34;nofollow&#34;&#62;http://codex.wordpress.org/Customizing_the_Read_More&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;b.) Open up /includes/loop-index.php and change:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;the_content(__(&#38;#39;Read more&#38;#39;,&#38;#39;avia_framework&#38;#39;));&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;to:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;the_excerpt();&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Personally I recommend the a.) option but it's up to you. Bear in mind that any changes to loop-index.php changes every page which calls this template file.&#60;/p&#62;
&#60;p&#62;James
&#60;/p&#62;</description>
		</item>
		<item>
			<title>onurkiyak on "Customizing Header Section"</title>
			<link>http://www.kriesi.at/support/topic/customizing-header-section#post-17923</link>
			<pubDate>Wed, 27 Apr 2011 14:02:30 +0000</pubDate>
			<dc:creator>onurkiyak</dc:creator>
			<guid isPermaLink="false">17923@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;two more question. &#60;/p&#62;
&#60;p&#62;1) How can I hide the slug section? &#60;/p&#62;
&#60;p&#62;2) When I put the Blog section on my Homepage using Template Builder, it shows the full page of each post. How can I put excerpt?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>onurkiyak on "Customizing Header Section"</title>
			<link>http://www.kriesi.at/support/topic/customizing-header-section#post-17916</link>
			<pubDate>Wed, 27 Apr 2011 12:44:36 +0000</pubDate>
			<dc:creator>onurkiyak</dc:creator>
			<guid isPermaLink="false">17916@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Mate,&#60;/p&#62;
&#60;p&#62;thanks for the response. But both codes didn't work. First of all, I put the first code inside custom.css but I don't see any difference.&#60;/p&#62;
&#60;p&#62;For the section section, I replace the code. However I still see the search box and Feed button. &#60;/p&#62;
&#60;p&#62;Please advise&#60;/p&#62;
&#60;p&#62;thanks
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Customizing Header Section"</title>
			<link>http://www.kriesi.at/support/topic/customizing-header-section#post-17632</link>
			<pubDate>Sat, 23 Apr 2011 17:42:05 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">17632@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;br /&#62;
1) add following code to custom.css (located in the &#34;css&#34;):&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#top .avia_mega &#38;gt; li &#38;gt; ul, #top .avia_mega &#38;gt; li &#38;gt; ul ul{
padding:8px;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Adjust the padding as you like (i.e.decrease the value and the border will be thiner.&#60;/p&#62;
&#60;p&#62;2) Open up header.php and replace:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;/*
					*	display the theme search form
					*   the tempalte file that is called is searchform.php in case you want to edit it
					*/
					get_search_form();
					?&#38;gt; 

					&#38;lt;ul class=&#38;quot;social_bookmarks&#38;quot;&#38;gt;
						&#38;lt;li class=&#38;#39;rss&#38;#39;&#38;gt;&#38;lt;a href=&#38;quot;&#38;lt;?php bloginfo(&#38;#39;rss2_url&#38;#39;); ?&#38;gt;&#38;quot;&#38;gt;RSS&#38;lt;/a&#38;gt;&#38;lt;/li&#38;gt;
						&#38;lt;?php
						if($twitter = avia_get_option(&#38;#39;avia, twitter&#38;#39;)) echo &#38;quot;&#38;lt;li class=&#38;#39;twitter&#38;#39;&#38;gt;&#38;lt;a href=&#38;#39;http://twitter.com/&#38;quot;.$twitter.&#38;quot;&#38;#39;&#38;gt;Twitter&#38;lt;/a&#38;gt;&#38;lt;/li&#38;gt;&#38;quot;;
						if($facebook = avia_get_option(&#38;#39;avia, facebook&#38;#39;)) echo &#38;quot;&#38;lt;li class=&#38;#39;facebook&#38;#39;&#38;gt;&#38;lt;a href=&#38;#39;&#38;quot;.$facebook.&#38;quot;&#38;#39;&#38;gt;Twitter&#38;lt;/a&#38;gt;&#38;lt;/li&#38;gt;&#38;quot;;
						 ?&#38;gt;
					&#38;lt;/ul&#38;gt;
					&#38;lt;!-- end social_bookmarks--&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;with your code - maybe you need to adjust some css though.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>onurkiyak on "Customizing Header Section"</title>
			<link>http://www.kriesi.at/support/topic/customizing-header-section#post-17575</link>
			<pubDate>Fri, 22 Apr 2011 12:58:51 +0000</pubDate>
			<dc:creator>onurkiyak</dc:creator>
			<guid isPermaLink="false">17575@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey guys,&#60;/p&#62;
&#60;p&#62;great template. I have two questions for you. &#60;/p&#62;
&#60;p&#62;1. How can I reduce the border in the navigation bar?&#60;/p&#62;
&#60;p&#62;2. Can I get rid off social media icons and the search box and put my own social media icons? Below is the code:&#60;/p&#62;
&#60;p&#62;&#38;lt;script type=&#34;text/javascript&#34;&#38;gt;&#60;br /&#62;
&#38;lt;!--&#60;br /&#62;
function MM_preloadImages() { //v3.0&#60;br /&#62;
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();&#60;br /&#62;
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i&#38;lt;a.length; i++)&#60;br /&#62;
    if (a[i].indexOf(&#34;#&#34;)!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;function MM_swapImgRestore() { //v3.0&#60;br /&#62;
  var i,x,a=document.MM_sr; for(i=0;a&#38;amp;&#38;amp;i&#38;lt;a.length&#38;amp;&#38;amp;(x=a[i])&#38;amp;&#38;amp;x.oSrc;i++) x.src=x.oSrc;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;function MM_findObj(n, d) { //v4.01&#60;br /&#62;
  var p,i,x;  if(!d) d=document; if((p=n.indexOf(&#34;?&#34;))&#38;gt;0&#38;amp;&#38;amp;parent.frames.length) {&#60;br /&#62;
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}&#60;br /&#62;
  if(!(x=d[n])&#38;amp;&#38;amp;d.all) x=d.all[n]; for (i=0;!x&#38;amp;&#38;amp;i&#38;lt;d.forms.length;i++) x=d.forms[i][n];&#60;br /&#62;
  for(i=0;!x&#38;amp;&#38;amp;d.layers&#38;amp;&#38;amp;i&#38;lt;d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);&#60;br /&#62;
  if(!x &#38;amp;&#38;amp; d.getElementById) x=d.getElementById(n); return x;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;function MM_swapImage() { //v3.0&#60;br /&#62;
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i&#38;lt;(a.length-2);i+=3)&#60;br /&#62;
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}&#60;br /&#62;
}&#60;br /&#62;
//--&#38;gt;&#60;br /&#62;
&#38;lt;/script&#38;gt;&#60;br /&#62;
&#38;lt;body onLoad=&#34;MM_preloadImages('http://www.gourmetmarketing.net/social/join-our-email-newsletter_f2.png','http://www.gourmetmarketing.net/social/linkedin_f2.png','http://www.gourmetmarketing.net/social/facebook_f2.png','http://www.gourmetmarketing.net/social/twitter_f2.png','http://www.gourmetmarketing.net/social/flickr_f2.png','http://www.gourmetmarketing.net/social/feed_f2.png')&#34;&#38;gt;&#38;lt;table width=&#34;280&#34; border=&#34;0&#34; cellpadding=&#34;0&#34; cellspacing=&#34;0&#34;&#38;gt;&#60;br /&#62;
  &#38;lt;tr&#38;gt;&#60;br /&#62;
    &#38;lt;td width=&#34;125&#34; height=&#34;26&#34; align=&#34;right&#34; &#38;gt;&#38;lt;iframe src=&#34;http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.gourmetmarketing.net&#38;amp;layout=button_count&#38;amp;show_faces=true&#38;amp;width=125&#38;amp;action=recommend&#38;amp;font=trebuchet+ms&#38;amp;colorscheme=light&#38;amp;height=21&#34; scrolling=&#34;No&#34; frameborder=&#34;0&#34; style=&#34;border:none; overflow:hidden; width:125px; height:21px;&#34; allowtransparency=&#34;true&#34;&#38;gt;&#38;lt;/iframe&#38;gt;&#38;lt;/td&#38;gt;&#60;br /&#62;
    &#38;lt;td width=&#34;24&#34;&#38;gt;&#60;a href=&#34;join-our-email-newsletter.html&#34;&#62;&#60;img src=&#34;http://www.gourmetmarketing.net/social/join-our-email-newsletter.png&#34; alt=&#34;Join Our Email Newsletter&#34; /&#62;&#60;/a&#62;&#38;lt;/td&#38;gt;&#60;br /&#62;
    &#38;lt;td width=&#34;24&#34;&#38;gt;&#60;a href=&#34;http://www.linkedin.com/company/gourmet-marketing?trk=copro_tab&#34;&#62;&#60;img src=&#34;http://www.gourmetmarketing.net/social/linkedin.png&#34; alt=&#34;Linkedin&#34; /&#62;&#60;/a&#62;&#38;lt;/td&#38;gt;&#60;br /&#62;
    &#38;lt;td width=&#34;24&#34;&#38;gt;&#60;a href=&#34;http://www.facebook.com/gourmetmarketing&#34;&#62;&#60;img src=&#34;http://www.gourmetmarketing.net/social/facebook.png&#34; alt=&#34;Facebook&#34; /&#62;&#60;/a&#62;&#38;lt;/td&#38;gt;&#60;br /&#62;
    &#38;lt;td width=&#34;24&#34;&#38;gt;&#60;a href=&#34;http://twitter.com/#!/gmarketing_nyc&#34;&#62;&#60;img src=&#34;http://www.gourmetmarketing.net/social/twitter.png&#34; alt=&#34;Twitter&#34; /&#62;&#60;/a&#62;&#38;lt;/td&#38;gt;&#60;br /&#62;
    &#38;lt;td width=&#34;24&#34;&#38;gt;&#60;a href=&#34;http://www.flickr.com/photos/gourmet_marketing/&#34;&#62;&#60;img src=&#34;http://www.gourmetmarketing.net/social/flickr.png&#34; alt=&#34;Flickr&#34; /&#62;&#60;/a&#62;&#38;lt;/td&#38;gt;&#60;br /&#62;
    &#38;lt;td width=&#34;24&#34;&#38;gt;&#60;a href=&#34;http://feeds.feedburner.com/gourmetmarketing/nSAP&#34;&#62;&#60;img src=&#34;http://www.gourmetmarketing.net/social/feed.png&#34; alt=&#34;RSS&#34; /&#62;&#60;/a&#62;&#38;lt;/td&#38;gt;&#60;br /&#62;
  &#38;lt;/tr&#38;gt;&#60;br /&#62;
&#38;lt;/table&#38;gt;
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
