Navigation
This is archived content. Visit our new forum.
  • Author
    Posts
  • #255724

    Peter M
    Participant

    Perfect!

    Thanks so much for all your help on these things – you guys rock!

    – Peter.

    #255731

    Peter M
    Participant

    I feel liked Detective Columbo here: “oh, one last thing …” haha

    I see that that the portfolio tags are stacked vertically at the bottom of the page, above the social sharing buttons.

    Is there any way those could be aligned horizontally instead?

    – Peter.

    #255764

    Christopher
    Moderator

    Hi there,

    Please add these as well :

    .x-ul-tags {
      width: 100%;
      overflow: hidden;
    }
    .x-ul-tags li a {
      border: none !important;
    }
    .x-ul-tags li {
      float: left;
      padding: 0 5px;
    }

    Hope it helps.

    #255817

    Peter M
    Participant

    Cool, worked like a charm – thanks!

    Tried to center by changing float: left; to float: center; but it reverts back to the vertical format.

    How do I center the tags?

    – Peter.

    #255900

    Thai
    Moderator

    Hi There,
    Please update a bit in the previous CSS:

    
    ul.x-ul-tags li {
        display: inline-block;
        float: none;
        margin: 0 5px;
    }
    ul.x-ul-tags li a {
        border: 1px solid rgba(0,0,0,0.1) !important;
        padding: 5px 10px !important;
    }
    

    The screenshot: http://i.imgur.com/x2gZUyN.png.
    Hope it helps.

    #255908

    Peter M
    Participant

    Sweet! Centred nicely now, looks great!

    And once again, “one more thing” …

    I only have 2 portfolio categories: Photography and Websites.

    I have 2 items in photography, 1 item in websites.

    When I click on photography in my menu, it displays the 2 photography items. When I click on one, it displays the page I set up for it. But strangely, though, when I click the right arrow to move to the next item, it shows my one website item, then I click the arrow again and it displays the 2nd photography item.

    Why would it show the other category’s item? Shouldn’t it only display the items within that category when I click that arrow?

    Thanks.

    #256067

    Zeshan
    Member

    Hi Peter,

    The entry navigation works chronologically and ignores the category. This is the default behaviour of how it works. It could be possible to display the items from currently category only with custom development, but this would be outside the scope of support we can offer. You may wish to consult a developer to assist you with this. X is quite extensible with child themes, so there are plenty of possibilities.

    Thanks for understanding.

    #256757

    Peter M
    Participant

    Ok, that’s too bad. Doesn’t really make sense to have it scroll through other categories, though.

    For me, I only have the 2 main categories, plus several subcategories in the one, so not too bad.

    I suppose if I edit the dates of the each portfolio item according to how I want them to display, it could work the way I’d like it to. Bit of a pain.

    Thanks for the update.

    – Peter.

    #257032

    Rad
    Moderator

    Hi Peter,

    Yes, that’s the easiest but not permanent fix. Still, the best solution could need custom development.

    Thanks!