Title: CSS Help
Last modified: July 12, 2017

---

# CSS Help

 *  Resolved [michelinski](https://wordpress.org/support/users/michelinski/)
 * (@michelinski)
 * [8 years, 9 months ago](https://wordpress.org/support/topic/css-help-73/)
 * 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](https://wordpress.org/support/users/bensibley/)
 * (@bensibley)
 * [8 years, 9 months ago](https://wordpress.org/support/topic/css-help-73/#post-9312098)
 * 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](https://wordpress.org/plugins/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](https://wordpress.org/plugins/ajax-load-more/)
   should work.
 *  Thread Starter [michelinski](https://wordpress.org/support/users/michelinski/)
 * (@michelinski)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/css-help-73/#post-9319777)
 * It works! Thank you very much, Ben!
 *  Theme Author [Ben Sibley](https://wordpress.org/support/users/bensibley/)
 * (@bensibley)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/css-help-73/#post-9320399)
 * You’re welcome 🙂
 *  Thread Starter [michelinski](https://wordpress.org/support/users/michelinski/)
 * (@michelinski)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/css-help-73/#post-9326975)
 * Hi Ben,
    one ore question: Is it possible to have a sticky menu which is fixed?
 * Best regards!
 *  Theme Author [Ben Sibley](https://wordpress.org/support/users/bensibley/)
 * (@bensibley)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/css-help-73/#post-9327420)
 * 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](https://wordpress.org/support/users/michelinski/)
 * (@michelinski)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/css-help-73/#post-9328780)
 * Thank you!!!

Viewing 6 replies - 1 through 6 (of 6 total)

The topic ‘CSS Help’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/chosen/1.51/screenshot.png)
 * Chosen
 * [Support Threads](https://wordpress.org/support/theme/chosen/)
 * [Active Topics](https://wordpress.org/support/theme/chosen/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/chosen/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/chosen/reviews/)

## Tags

 * [additional css](https://wordpress.org/support/topic-tag/additional-css/)
 * [hide comments](https://wordpress.org/support/topic-tag/hide-comments/)

 * 6 replies
 * 2 participants
 * Last reply from: [michelinski](https://wordpress.org/support/users/michelinski/)
 * Last activity: [8 years, 8 months ago](https://wordpress.org/support/topic/css-help-73/#post-9328780)
 * Status: resolved