fearkills
Forum Replies Created
-
Forum: Plugins
In reply to: Custom Scrollbar – flexcrollChinakohl
– Im trying to get this to work too. I did as you said and im still not getting it to function properly
I’m using it in conjunction with an Iframe
Would that be why?
Forum: Fixing WordPress
In reply to: Custom Menu IssueWell, I’ve tried placing it everywhere. Here is my Header code, unadultered
</head> <body> <div id="art-main"> <div class="art-Sheet"> <div class="art-Sheet-cc"></div> <div class="art-Sheet-body"> <div class="art-Header"> <div class="art-Header-jpeg"></div> </div> <div class="art-nav"> <div class="l"></div> <div class="r"></div> <ul class="art-menu"> <?php art_menu_items();?> </div>Here it is as I currently have it now
</head> <body> <div id="art-main"> <div class="art-Sheet"> <div class="art-Sheet-cc"></div> <div class="art-Sheet-body"> <div class="art-Header"> <div class="art-Header-jpeg"></div> </div> <div class="art-nav"> <div class="l"></div> <div class="r"></div> <ul class="art-menu"> <?php art_menu_items();?> <?php wp_list_categories('orderby=name&exlude=181&title_li='); $this_category = get_category($cat); if (get_category_children($this_category->cat_ID) != "") { echo "<ul>"; wp_list_categories('orderby=id&show_count=0&title_li=&use_desc_for_title=1&child_of='.$this_category->cat_ID); echo "</ul>"; } ?> </div>I’ve put it before the ul class, immediately after but before menu items, and had all negative results.
Not sure where else it should be placed in order for it to display properly
Any other thoughts?
Forum: Fixing WordPress
In reply to: Custom Menu IssueI tried the
<?php wp_list_categories( $args ); ?>But that just lists a categories link and all the items become drop downs. Still has the same issue as well. Am I missing something in my CSS?
Forum: Fixing WordPress
In reply to: Custom Menu IssueThis is how I have it configured based on this tutorial
http://wordpress.org/support/topic/259662?replies=4
<div class="art-nav"> <div class="l"></div> <div class="r"></div> <ul class="art-menu"> <?php art_menu_items(); ?> <?php wp_list_categories('orderby=name&exlude=181&title_li='); $this_category = get_category($cat); if (get_category_children($this_category->cat_ID) != "") { echo "<ul>"; wp_list_categories('orderby=id&show_count=0&title_li=&use_desc_for_title=1&child_of='.$this_category->cat_ID); echo "</ul>"; } ?> </div>Shouldn’t that be correct?
Forum: Fixing WordPress
In reply to: Sidebar Modification IssueEsmi, Thanks. That would explain quite a bit!
However, now what I don’t quite understand is that in each new category that I created, it has a list of the other categories I had created in the post, as opposed to just listing the posts in the respective categories.
Screenshot attached (Sidebar darkened):
http://www.cmprssrmedia.com/mockup2.jpg
Sorry If I’m missing something elemental. Still getting used to this
Any help would be appreciated
Thanks!