Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #308229

    Hello,

    I have a few questions about the posts pages.

    Comments: I don’t want the posts to have the option of comments. I have created two pages, one has comments and one doesn’t. I don’t know what I have done differently, but how can I make sure the all posts don’t have the option to comment, or the no. of comments in the tags below the headline?

    Author: How can I stop the author appearing in the tags under the headline.

    Headline size: How can I make the headline size ‘Headline 4’? I think it is currently ‘Headline 3’

    Thanks

    #308503

    I have resolved the issue of the comments on posts. I think the two posts were different becuase one was created before I had disabled comments and the other created after.

    I would still like answers to the other two queries.

    Also, how do I out a horizontal line between blogs?

    Many thanks.

    #308530

    Hey!

    Try adding this code to the Quick CSS to hide the author:

    .text-sep-cat, .blog-author {
        display: none;
    }

    The headings are h2, in single pages are transformed to h1, to change its font size (in both occurrences):

    .post-title {
        font-size: 16px !important;
    }

    To add a line:

    article.post {
        border-bottom: 1px solid #e1e1e1;
        margin-bottom: 20px;
    }

    Cheers! 
    Josue

    #309011

    Josue,

    Thanks for this. One small thing: The horizontal line which has been added between the posts goes all the way to the vertical line separating the sidebar. Is there any way it could be centred in the same way it does when you add a horizontal line element in the advanced layout editor?

    http://www.sbbusinessforum.org/noticeboard/

    Thanks

    Giles

    #309028

    Hey Giles!

    Add this:

    @media only screen and (min-width: 767px) {
    article.post {
       width: 95%;
    }
    }

    Regards,
    Josue

    • This reply was modified 10 years, 3 months ago by Josue.
    #309037

    Josue,

    That didn’t seem to work.

    Giles

    #309039

    I modified my message, please try it again.

    Regards,
    Josue

    #309157

    Josue,

    Great. Thanks again.

    Giles

    #309160

    You are welcome Giles, glad to help :)

    Regards,
    Josue

Viewing 9 posts - 1 through 9 (of 9 total)
  • You must be logged in to reply to this topic.