Forum Replies Created

Viewing 15 posts - 46 through 60 (of 61 total)
  • Posted in:
  • in reply to: Mega Menu Help #67371
    Brentnauer
    Member
    Post count: 65
    This reply has been marked as private.
    in reply to: Menu item spacing #67366
    Brentnauer
    Member
    Post count: 65
    This reply has been marked as private.
    in reply to: Mega Menu Help #67344
    Brentnauer
    Member
    Post count: 65
    This reply has been marked as private.
    in reply to: Menu item spacing #67338
    Brentnauer
    Member
    Post count: 65

    That did the trick, thanks!

    in reply to: Menu item spacing #67274
    Brentnauer
    Member
    Post count: 65
    This reply has been marked as private.
    in reply to: Menu item spacing #67245
    Brentnauer
    Member
    Post count: 65

    Still nothing – Absolutely no change in the menu’s appearance.

    in reply to: Menu item spacing #67067
    Brentnauer
    Member
    Post count: 65

    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

    in reply to: 1/5th Columns #66423
    Brentnauer
    Member
    Post count: 65

    What about a pseudo-5 column row? Is there a way to center a row of five 1/6th blocks?

    in reply to: Different logo per category post #59521
    Brentnauer
    Member
    Post count: 65

    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');
    in reply to: Different logo per category post #59505
    Brentnauer
    Member
    Post count: 65

    Is there a plugin that you know of that’s able to create a category class like that?

    in reply to: Blog width #57319
    Brentnauer
    Member
    Post count: 65

    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.

    in reply to: Blog width #57071
    Brentnauer
    Member
    Post count: 65

    Disabling “show_blog_aux” gets the sidebar back into its correct position, but I’m still left with what you see attached.

    in reply to: Is it possible to have content appear BEFORE the sidebar? #57065
    Brentnauer
    Member
    Post count: 65

    Disregard; 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!

    in reply to: Is it possible to have content appear BEFORE the sidebar? #57063
    Brentnauer
    Member
    Post count: 65

    Hi 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?

    in reply to: Is it possible to have content appear BEFORE the sidebar? #56922
    Brentnauer
    Member
    Post count: 65

    I 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

Viewing 15 posts - 46 through 60 (of 61 total)