Digital experiences for all disciplines
Forum Replies Created
-
-
This reply has been marked as private.This reply has been marked as private.This reply has been marked as private.
That did the trick, thanks!
This reply has been marked as private.Still nothing – Absolutely no change in the menu’s appearance.
Hi Kyle,
Unfortunately this didn’t seem to have any effect. I’m using header option 2 if that helps any.
What I’m trying to achieve is similar to the navigation here: https://www.kimbellart.org — All the navigation items are centered and are padded to take up all available space.
Thanks
What about a pseudo-5 column row? Is there a way to center a row of five 1/6th blocks?
Figured it out. For anyone else who find this and wants to know how to do it, adding the below code to functions.php outputs the category slugs to the body class:
// add category nicenames in body and post class function category_id_class($classes) { global $post; foreach((get_the_category($post->ID)) as $category) $classes[] = $category->category_nicename; return $classes; } add_filter('post_class', 'category_id_class'); add_filter('body_class', 'category_id_class');
Is there a plugin that you know of that’s able to create a category class like that?
Hi there,
Is there no workaround for this? Using a sidebar on the page via the page’s options works correctly, but not when the sidebar widget is used. Seems like there should be SOME option to make this work.
Disabling “show_blog_aux” gets the sidebar back into its correct position, but I’m still left with what you see attached.
March 12, 2014 at 6:43 pm in reply to: Is it possible to have content appear BEFORE the sidebar? #57065Disregard; I got it working. For some reason Sidebar 1 does not want to display, but Sidebar 2 and up do.
This presents me with another issue, but I’ll open another ticket for that.
Thanks for your help!
March 12, 2014 at 6:33 pm in reply to: Is it possible to have content appear BEFORE the sidebar? #57063Hi Kyle,
I have my page structured as you have here, but the sidebar is not appearing. My widget is using Sidebar 1, and Sidebar 1 definitely has widgets in it to be displayed.
Any ideas?
March 12, 2014 at 3:27 pm in reply to: Is it possible to have content appear BEFORE the sidebar? #56922I have the right sidebar set, but I’d like to have a full width content block that spans the entire top of the page with the sidebar beginning under it.
My goal:
========================= | HEADER | ========================= | FULL WIDTH | ========================| | Content | Sidebar | | | | =========================
This is what I have:
========================= | HEADER | ========================= | FULL WIDTH | Sidebar | ==============|=========| | Content | Sidebar | | | | =========================
Thanks
-