<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>ThemeShaper Forums Tag: hidden</title>
<link>http://themeshaper.com/forums/</link>
<description>Help In Shaping WordPress Themes</description>
<language>en</language>
<pubDate>Mon, 20 May 2013 05:40:33 +0000</pubDate>

<item>
<title>jamis on "text in #content getting chopped off"</title>
<link>http://themeshaper.com/forums/topic/text-in-content-getting-chopped-off#post-21235</link>
<pubDate>Wed, 11 May 2011 20:07:03 +0000</pubDate>
<dc:creator>jamis</dc:creator>
<guid isPermaLink="false">21235@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Figured it out after a lot of trial and error. If width of #content is reduced, .hentry must also be reduced to the same number. This is all the code that was needed:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;#content, .hentry {
	width: 585px;
	}&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>jamis on "text in #content getting chopped off"</title>
<link>http://themeshaper.com/forums/topic/text-in-content-getting-chopped-off#post-21205</link>
<pubDate>Tue, 10 May 2011 15:51:40 +0000</pubDate>
<dc:creator>jamis</dc:creator>
<guid isPermaLink="false">21205@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I've created a child theme based on 2-c-l-fixed.css&#60;/p&#62;
&#60;p&#62;I want to run a red, vertical rule down the right side of #main, and I want to keep the text in #content from running into the rule. I've tried:&#60;/p&#62;
&#60;p&#62;#content {&#60;br /&#62;
	margin-right: 20px;&#60;br /&#62;
	}&#60;/p&#62;
&#60;p&#62;and &#60;/p&#62;
&#60;p&#62;#content {&#60;br /&#62;
	padding-right: 20px;&#60;br /&#62;
	}&#60;/p&#62;
&#60;p&#62;Neither does anything to reduce the width of #content.&#60;/p&#62;
&#60;p&#62;I've tried reducing the width of #content from the 620px width in 2-c-l-fixed.css:&#60;/p&#62;
&#60;p&#62;#content {&#60;br /&#62;
	border: 1px dashed red;&#60;br /&#62;
	background-color: #ff9;&#60;br /&#62;
	width: 580px;&#60;br /&#62;
	}&#60;/p&#62;
&#60;p&#62;. . . and the text gets cut off.&#60;/p&#62;
&#60;p&#62;2-c-l-fixed.css has this declaration:&#60;/p&#62;
&#60;p&#62;#content {&#60;br /&#62;
	overflow: hidden;&#60;br /&#62;
	}&#60;/p&#62;
&#60;p&#62;So I tried changing it to &#34;overflow: visible&#34;&#60;/p&#62;
&#60;p&#62;#content {&#60;br /&#62;
	border: 1px dashed red;&#60;br /&#62;
	background-color: #ff9;&#60;br /&#62;
	width: 580px;&#60;br /&#62;
	overflow: visible;&#60;br /&#62;
	}&#60;/p&#62;
&#60;p&#62;. . . and the text in #content runs all the way to my red, vertical rule.&#60;/p&#62;
&#60;p&#62;I've also tried changing the width and placement of #container, but couldn't find a solution. &#60;/p&#62;
&#60;p&#62;Does anyone have a clue what I can do to put some space to the left of the red, vertical rule?&#60;/p&#62;
&#60;p&#62;My child theme is not live yet, but I have posted a &#60;a href=&#34;http://specialtybikeexpo.com/img/issues_with_content.png&#34;&#62;screenshot with annotation.&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Thanks for the help!
&#60;/p&#62;</description>
</item>
<item>
<title>him on "Submenu hidden"</title>
<link>http://themeshaper.com/forums/topic/submenu-hidden#post-18525</link>
<pubDate>Thu, 20 Jan 2011 11:58:06 +0000</pubDate>
<dc:creator>him</dc:creator>
<guid isPermaLink="false">18525@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;well... though I solved it with:&#60;/p&#62;
&#60;p&#62;header - z-index:9999; overflow:visible;&#60;/p&#62;
&#60;p&#62;But I guess its something to do with Wordpress, because I have another child-theme working fine in 3.0.1 but in 3.0.3 I faced the same problem.
&#60;/p&#62;</description>
</item>
<item>
<title>mirko77 on "Sub pages not showing in main navigation"</title>
<link>http://themeshaper.com/forums/topic/sub-pages-not-showing-in-main-navigation#post-18152</link>
<pubDate>Thu, 06 Jan 2011 11:24:48 +0000</pubDate>
<dc:creator>mirko77</dc:creator>
<guid isPermaLink="false">18152@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I solved it removing all the &#34;overflow:hidden&#34; CSS properties in the default.css file
&#60;/p&#62;</description>
</item>
<item>
<title>beanfair on "Submenu hidden"</title>
<link>http://themeshaper.com/forums/topic/submenu-hidden#post-18022</link>
<pubDate>Fri, 31 Dec 2010 08:58:59 +0000</pubDate>
<dc:creator>beanfair</dc:creator>
<guid isPermaLink="false">18022@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I found the problem but not the cause of the problem. The stylesheet is not cascading properly on the internal pages. The original style.css was overwriting the new child stylesheet but and giving the following values to&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#access {
    position:relative;
    overflow:hidden;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;It is bad form but until I figure out why it isn't cascading properly, I removed the access rule in the parent css.&#60;br /&#62;
Now it works fine with the following code&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#access {
    border-bottom:none;
    height:32px;
    font-size:13px;
    overflow:visible;
    z-index:100;
}&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>beanfair on "Submenu hidden"</title>
<link>http://themeshaper.com/forums/topic/submenu-hidden#post-18021</link>
<pubDate>Fri, 31 Dec 2010 08:12:39 +0000</pubDate>
<dc:creator>beanfair</dc:creator>
<guid isPermaLink="false">18021@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Thanks for responding Helga.&#60;/p&#62;
&#60;p&#62;It wasn't working when it was set to 3000. I had changed it to 99 when I copied some sample code trying to fix the issue. Just for giggles I switched it back to 3000 and it still isn't working. &#60;/p&#62;
&#60;p&#62;I am really baffled.
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Submenu hidden"</title>
<link>http://themeshaper.com/forums/topic/submenu-hidden#post-18009</link>
<pubDate>Fri, 31 Dec 2010 01:11:38 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">18009@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;i think it is in your newstyles.css&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;.sf-menu li:hover ul,
.sf-menu li.sfHover ul {
	left:			0;
	top:			2.5em; /* match top ul list item height */
	z-index:		99; /*3000; */
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;the z-index is too low... something else is higher.  switch it back to the 3000 that was commented out and see what happens.
&#60;/p&#62;</description>
</item>
<item>
<title>beanfair on "Submenu hidden"</title>
<link>http://themeshaper.com/forums/topic/submenu-hidden#post-18007</link>
<pubDate>Thu, 30 Dec 2010 22:29:54 +0000</pubDate>
<dc:creator>beanfair</dc:creator>
<guid isPermaLink="false">18007@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I have been struggling with the sub-menus staying hidden on all of my internal pages. I have read and re-read the excellent post on menus dymsytified but I am still stymied. I have swapped out the default css code from thematic into my child theme and it still doesn't work. If I switch the entire theme to Thematic my sub-menus do appear so I am thinking it is CSS or code outside of the .sf_menu styles that are causing my problem but I can't find it.&#60;/p&#62;
&#60;p&#62;This is how it should work on all pages &#60;a href=&#34;http://wineworldwarehouse.com/test/&#34; rel=&#34;nofollow&#34;&#62;http://wineworldwarehouse.com/test/&#60;/a&#62;&#60;br /&#62;
This is an example of an internal page that does NOT work &#60;a href=&#34;http://wineworldwarehouse.com/test/?page_id=55&#34; rel=&#34;nofollow&#34;&#62;http://wineworldwarehouse.com/test/?page_id=55&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Any assistance would be greatly appreciated. It is probably some little thing that my old eyes are missing, but boy are they missing it!
&#60;/p&#62;</description>
</item>
<item>
<title>beanfair on "Submenu hidden"</title>
<link>http://themeshaper.com/forums/topic/submenu-hidden#post-17969</link>
<pubDate>Wed, 29 Dec 2010 02:31:15 +0000</pubDate>
<dc:creator>beanfair</dc:creator>
<guid isPermaLink="false">17969@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;My menu is not showing the submenus on some pages of my site &#60;a href=&#34;http://wineworldwarehouse.com/test/?page_id=53.&#34; rel=&#34;nofollow&#34;&#62;http://wineworldwarehouse.com/test/?page_id=53.&#60;/a&#62;&#60;br /&#62;
In Firebug it is showing the sub-menu class as greyed out. It also shows display: none; visibility: hidden; But on other pages the ul sub-menu class is working properly. &#60;/p&#62;
&#60;p&#62;I am scratching my head on this one. Suggestions?
&#60;/p&#62;</description>
</item>
<item>
<title>mirko77 on "Sub pages not showing in main navigation"</title>
<link>http://themeshaper.com/forums/topic/sub-pages-not-showing-in-main-navigation#post-17818</link>
<pubDate>Fri, 17 Dec 2010 14:52:09 +0000</pubDate>
<dc:creator>mirko77</dc:creator>
<guid isPermaLink="false">17818@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I tested the basic Thematic theme and the drop down menu works like a charm.&#60;/p&#62;
&#60;p&#62;It does not work on my child theme though.
&#60;/p&#62;</description>
</item>
<item>
<title>mirko77 on "Sub pages not showing in main navigation"</title>
<link>http://themeshaper.com/forums/topic/sub-pages-not-showing-in-main-navigation#post-17803</link>
<pubDate>Thu, 16 Dec 2010 10:58:55 +0000</pubDate>
<dc:creator>mirko77</dc:creator>
<guid isPermaLink="false">17803@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I added some child pages but they are not showing in the main  navigation menu. They are correctly shown in my page list widget though. &#60;/p&#62;
&#60;p&#62;I had a look at the markup and there are two inline css properties &#34;overflow:hidden&#34; and &#34;display:none&#34; on all the &#34;ul&#34; tags created to contain the links to those pages.&#60;/p&#62;
&#60;p&#62;Is this normal behaviour? Are there any settings I need to tweak?
&#60;/p&#62;</description>
</item>
<item>
<title>jameskyle on "Styling index page differently from post page"</title>
<link>http://themeshaper.com/forums/topic/styling-index-page-differently-from-post-page#post-17363</link>
<pubDate>Wed, 01 Dec 2010 00:06:16 +0000</pubDate>
<dc:creator>jameskyle</dc:creator>
<guid isPermaLink="false">17363@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Since my subsequent question is different from that posted originally I'll just mark this as resolved. If I have any future problems I'll start a new thread. Seems like the right thing to do.
&#60;/p&#62;</description>
</item>
<item>
<title>jameskyle on "Styling index page differently from post page"</title>
<link>http://themeshaper.com/forums/topic/styling-index-page-differently-from-post-page#post-17330</link>
<pubDate>Mon, 29 Nov 2010 15:19:11 +0000</pubDate>
<dc:creator>jameskyle</dc:creator>
<guid isPermaLink="false">17330@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Okay, here's how far I am with what I'm trying to do.&#60;/p&#62;
&#60;p&#62;I've added the following CSS:&#60;br /&#62;
&#60;code&#62;&#60;br /&#62;
/* My edits */&#60;/p&#62;
&#60;p&#62;#content {&#60;br /&#62;
	background-color:#00FF00;&#60;br /&#62;
	width: 620px;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;/* Make every instance of posts into a little box */&#60;br /&#62;
.hentry {&#60;br /&#62;
	width: 300px;&#60;br /&#62;
	margin-right: 10px;&#60;br /&#62;
	margin-bottom: 10px;&#60;br /&#62;
	float: left;&#60;br /&#62;
	background-color:#9933FF;&#60;br /&#62;
	height: 300px;&#60;br /&#62;
	padding: 0px 0px 0px 0px;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;.entry-title {&#60;br /&#62;
	width: 300px;&#60;br /&#62;
	background-color:#999999;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;.entry-content {&#60;br /&#62;
	visibility:hidden;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;.entry-utility {&#60;br /&#62;
	visibility:hidden;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;.entry-meta {&#60;br /&#62;
	visibility:hidden;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;/*Special case for single posts pages */&#60;/p&#62;
&#60;p&#62;.single #content {&#60;br /&#62;
	width: auto;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;.single .hentry {&#60;br /&#62;
	width: auto;&#60;br /&#62;
	margin 0px 0px 0px 0px;&#60;br /&#62;
	float: none;&#60;br /&#62;
	background-color:#FFCC99;&#60;br /&#62;
	height:auto;&#60;br /&#62;
	padding: 5px 5px 5px 5px;&#60;br /&#62;
	margin: 0px 0px 0px 0px;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;.single .entry-title {&#60;br /&#62;
	width:auto;&#60;br /&#62;
	background-color:transparent;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;.single .entry-content {&#60;br /&#62;
	visibility:visible;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;.single .entry-utility {&#60;br /&#62;
	visibility:visible;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;.single .entry-meta {&#60;br /&#62;
	visibility:visible;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;/* Basic unordered post )page) with exceptions */&#60;br /&#62;
.page-template-template-fullpage-php .hentry {&#60;br /&#62;
	width: auto;&#60;br /&#62;
	margin 0px 0px 0px 0px;&#60;br /&#62;
	float: none;&#60;br /&#62;
	background-color:#FFCC99;&#60;br /&#62;
	height:auto;&#60;br /&#62;
	padding: 5px 5px 5px 5px;&#60;br /&#62;
	margin: 0px 0px 0px 0px;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;.page-template-template-fullpage-php .entry-title {&#60;br /&#62;
	width:auto;&#60;br /&#62;
	background-color:transparent;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;.page-template-template-fullpage-php .entry-content {&#60;br /&#62;
	visibility:visible;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;.page-template-template-fullpage-php .entry-utility {&#60;br /&#62;
	visibility:visible;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;.page-template-template-fullpage-php .entry-meta {&#60;br /&#62;
	visibility:visible;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;/* Full page width template exceptions */&#60;br /&#62;
.page .hentry {&#60;br /&#62;
	width: auto;&#60;br /&#62;
	margin 0px 0px 0px 0px;&#60;br /&#62;
	float: none;&#60;br /&#62;
	background-color:#FFCC99;&#60;br /&#62;
	height:auto;&#60;br /&#62;
	padding: 5px 5px 5px 5px;&#60;br /&#62;
	margin: 0px 0px 0px 0px;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;.page .entry-title {&#60;br /&#62;
	width:auto;&#60;br /&#62;
	background-color:transparent;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;.page .entry-content {&#60;br /&#62;
	visibility:visible;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;.page .entry-utility {&#60;br /&#62;
	visibility:visible;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;.page .entry-meta {&#60;br /&#62;
	visibility:visible;&#60;br /&#62;
}&#60;br /&#62;
&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Now I just need to make the .hentry areas of all but those posts with exceptions (listed in the CSS above) have either a background image that's the post's featured image.
&#60;/p&#62;</description>
</item>
<item>
<title>jameskyle on "Styling index page differently from post page"</title>
<link>http://themeshaper.com/forums/topic/styling-index-page-differently-from-post-page#post-17328</link>
<pubDate>Mon, 29 Nov 2010 12:09:21 +0000</pubDate>
<dc:creator>jameskyle</dc:creator>
<guid isPermaLink="false">17328@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;In retrospect it seems I'd be better styling the posts page individually rather than the index, since this way posts would be normal when viewed but be in the 300px squares I want in every other page (archives, search, category views, etc.) I'll make those changes, but if anyone can help with making all but the single post page .hentry div background that of the featured image I'd appreciate it.
&#60;/p&#62;</description>
</item>
<item>
<title>jameskyle on "Styling index page differently from post page"</title>
<link>http://themeshaper.com/forums/topic/styling-index-page-differently-from-post-page#post-17316</link>
<pubDate>Sun, 28 Nov 2010 13:20:20 +0000</pubDate>
<dc:creator>jameskyle</dc:creator>
<guid isPermaLink="false">17316@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;That worked out great, exactly what I was looking for. I'm not sure but I don't think I could use CSS to make the background image for the content divs on the index page the featured image of the post it represents, as that'd need to be some kind of background-image=featured-image statement. Does anyone know a function that'd do this?&#60;/p&#62;
&#60;p&#62;Once I have this sorted then it's just a matter of messing about with the layout and typography, I'll hassle the forum no more. :)
&#60;/p&#62;</description>
</item>
<item>
<title>Jonny Janiero on "Styling index page differently from post page"</title>
<link>http://themeshaper.com/forums/topic/styling-index-page-differently-from-post-page#post-17256</link>
<pubDate>Wed, 24 Nov 2010 14:29:23 +0000</pubDate>
<dc:creator>Jonny Janiero</dc:creator>
<guid isPermaLink="false">17256@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;ideally, you would create this via functions, templates.&#60;br /&#62;
if you are not confident with such... and want to hide the elements using css...&#60;br /&#62;
you need to take advantage of the dynamic css classes&#60;/p&#62;
&#60;p&#62;for example ...&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;body.home .hentry {
width: 260px;
float: left;
height: 270px;
padding: 5px 5px 5px 5px;
}

body.home .entry-content {
visibility:hidden;
}

body.home .entry-utility {
visibility:hidden;
}

body.home .entry-meta {
visibility:hidden;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;the class body class 'home' relates to elements on your home page.&#60;br /&#62;
some others,&#60;br /&#62;
body.single (single post)&#60;br /&#62;
body.category (category page)&#60;br /&#62;
there are many, if you look in the extensions in thematic it shows all the dynamic classes created. you can also see them using firebug for firefox.&#60;/p&#62;
&#60;p&#62;it is better to remove things rather than hiding them on a page, but as i said, if this is something you feel you cannot do, use the classes.&#60;br /&#62;
theres plenty of resources and forum posts on how do pretty much anything with thematic. brew a coffee and get reading.&#60;/p&#62;
&#60;p&#62;hope this helps
&#60;/p&#62;</description>
</item>
<item>
<title>jameskyle on "Styling index page differently from post page"</title>
<link>http://themeshaper.com/forums/topic/styling-index-page-differently-from-post-page#post-17255</link>
<pubDate>Wed, 24 Nov 2010 12:37:29 +0000</pubDate>
<dc:creator>jameskyle</dc:creator>
<guid isPermaLink="false">17255@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I'm trying to create a photo blog where only the post title is shown on the main page, with the background image on each post relevant to the post content. Here's my edits to the default thematic styling so far...&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#60;br /&#62;
#content {&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;.hentry {&#60;br /&#62;
	width: 260px;&#60;br /&#62;
	float: left;&#60;br /&#62;
	height: 270px;&#60;br /&#62;
	padding: 5px 5px 5px 5px;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;.entry-content {&#60;br /&#62;
	visibility:hidden;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;.entry-utility {&#60;br /&#62;
	visibility:hidden;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;.entry-meta {&#60;br /&#62;
	visibility:hidden;&#60;br /&#62;
}&#60;br /&#62;
&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;This removes all but the post title from the post and sets it into two columns. When I click on one of them however, the styling carries over. Can I set it in the CSS so that the meta, content and utility areas are only hidden in the index page or is there another way to do this?
&#60;/p&#62;</description>
</item>

</channel>
</rss>
