Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #41919
    nac2311
    Member

    Hi @sakin,

    When I post there’s a line that shows who posted, when and whether comments are on or off. Can this be turned off or is there a way to translate this text to another language as I’m working on a French website and the text is currently in english?

    Thanks
    Neil

    #41928
    Sakin
    Keymaster

    Hi Neil,

    Are you using Simple Catch Free theme and then installed WordPress in French language then it should be automatically translated to French. As all the Theme Text has been translated in French language in file fr_FR.po inside languages folder inside simple-catch directory. For for translation, check that file with http://poedit.net/ software.

    You can add the following CSS in “Appearance => Theme Options => Custom CSS” box to hide that.
    #main #content ul.post-by { display: none; }

    Regards,
    Sakin

    #41929
    nac2311
    Member

    @sakin,
    Again, you are the best! Thank you so much 🙂

    #42410
    kat22
    Member

    Hi Sakin,

    HELP! I have the feeling that everything what I put in CSS is not working….
    http://www.advancedplay.org

    1. I tried to get rid of the ‘who posted, when and whether comments are on or off’ in a post with the following CSS: #main #content ul.post-by { display: none; }
    But it doesn’t work.

    2. I also tried to change the color (bright yellow) of the text on the slider images.

    3. Can I only show the post title in the slider, not the information in the post? (second slider shows both)

    Hopefully you can help me. Thank you so much!
    Kat

    #42414
    Sakin
    Keymaster

    Hi Kat,

    The problem is that you are using Catch Everest Theme and visiting Simple Catch Theme support forum. So, these two themes are totally different and css will not work. Please use appropriate support forum http://catchthemes.com/support-forum/forum/catch-everest-public/

    I just check in your custom css and there is issue of extra bracket } that you need to remove first. Go to “Appearance => Theme Options => Custom CSS” box and see your code as:

    #featured-post .entry-header .entry-title a { color: #ff0000; }
    }
    #main #content ul.post-by { display: none; }

    There you can see extra } remove that and it should be as

    #featured-post .entry-header .entry-title a { color: #ff0000; }
    #main #content ul.post-by { display: none; }

    1. Then to remove the entry meta, you can add the following css in “Appearance => Theme Options => Custom CSS” box:
    .entry-meta { display: none; }

    2. For slider text color, see the following css and then change the color code as per your need and add it in “Appearance => Theme Options => Custom CSS” box.

    /* Slider Title Color */
    #main-slider .entry-title a { color: #fff; }
    /* Slider Title Hover Color */
    #main-slider .entry-title a:hover { color: #000; }

    3. To hide the content in the slier you can just add the following css in “Appearance => Theme Options => Custom CSS” box.
    #main-slider .entry-content { display: none; }

    Have nice day and from next time please check in support forum before you post it.

    Regards,
    Sakin

    #86963
    Robert
    Participant

    Hi!

    I’m trying to remove post author, and comment disable text, but I want to show post date. Can you give me a custom CSS code?

    Thanks!

    Sziszi

    #86968
    Robert
    Participant
    #87035
    Sakin
    Keymaster

    @Sziszi: You can add the following css in “Appearance => Theme Options => Custom CSS” box:

    #content .post-by .no-padding-left,
    #content .post-by .last { display: none; }
    #main #content ul.post-by li {
        background: none transparent;
        padding: 0;
    }
Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Can you turn off posters details?’ is closed to new replies.