• Resolved michelinski

    (@michelinski)


    Hi there.
    Thanks a lot for the theme. I want to use it as minimalistic as possible.
    I read this forum to get helped, but there are still some problems.

    At first my page: streetportrait.org

    1. I would like to hide the “comments link”. It should not be displayed any more.

    2. I would like to hide the title of my post. Only pictures.

    3. I used your css add to get the pictures centred. But the date when published is still left side. Can I get the date centred too?

    4. Is there a possibulity to get endless scrolling?

    Here is the code for additional css which I tried in the wordpress customizer:

    .blog .entry,
    .archive .entry
    .search .entry {
    margin-right: 0 !important;
    width: 100% !important;
    }

    .comments-link { display: none; }

    .singular-post .post-title {
    display: none;
    }

    Can you help me to get it right?
    Thanks in advance!

Viewing 6 replies - 1 through 6 (of 6 total)
  • Theme Author Ben Sibley

    (@bensibley)

    Thanks for using Chosen!

    You can add this CSS to make the first three customizations:

    .comments-link,
    .post-title {
      display: none !important;
    }
    .post-header {
      text-align: center !important;
    }

    As for endless scroll, Jetpack has an infinite scroll module that is compatible with Chosen, although it comes with a lot of other stuff. Otherwise, this WordPress Infinite Scroll should work.

    Thread Starter michelinski

    (@michelinski)

    It works! Thank you very much, Ben!

    Theme Author Ben Sibley

    (@bensibley)

    You’re welcome ??

    Thread Starter michelinski

    (@michelinski)

    Hi Ben,
    one ore question:
    Is it possible to have a sticky menu which is fixed?

    Best regards!

    Theme Author Ben Sibley

    (@bensibley)

    Yea something like this should work pretty well:

    @media all and (min-width: 800px) {
    
      .menu-primary {
        position: fixed;
        z-index: 19;
        top: 24px;
        left: 4.167%;
        background: white;
      }
    }

    The menu will stay in the same position and this gives it a white background so it’s easy to read when scrolling over images/text.

    Thread Starter michelinski

    (@michelinski)

    Thank you!!!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘CSS Help’ is closed to new replies.