Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #253606

    Hello,

    I changed the width with the following code but I can’t find for comments. Currently under comments is full width with this code. I wish the same width on comments but to keep counter in full width. please help me!

    /* Width blog posts */
    #top .fullsize .template-blog .post .entry-content-wrapper > * {
    max-width: 770px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    }
    #top .fullsize .template-blog .post .entry-content-wrapper {
    max-width: 770px;
    }
    #top .fullsize .template-blog .post-title {
    max-width: 100%;
    #253683

    Hi youyou78!

    Thank you for using the theme!

    Do you mind if we take a look at the post page? If I am not mistaken, you want to change the width of the comment form? This part of your css code should close:

    #top .fullsize .template-blog .post-title {
    max-width: 100%;
    }

    A screenshot explaining your request will help a lot. Thanks!

    Cheers!
    Ismael

    #253711

    Hi Ismael,

    sorry I work in local. yes I want to change the width of the comment form. Thanks!

    http://nsa34.casimages.com/img/2014/04/21/140421111801528070.jpg

    #254188

    Hey!

    Try adding this code to the Quick CSS:

    div.comment-entry.post-entry {
        width: 60%;
        margin: 0 auto;
    }

    Cheers!
    Josue

    #254651

    Hey!

    thank you Josue, but but it is not great.
    On mobile and ipad the comment form is too small. And on my pc the text box is not centered and too broad.

    http://nsa33.casimages.com/img/2014/04/22/140422100627103289.jpg

    Code:

    /* With Template Blog posts */
    #top .fullsize .template-blog .post .entry-content-wrapper > * {
    max-width: 770px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    }
    #top .fullsize .template-blog .post .entry-content-wrapper {
    max-width: 770px;
    }
    #top .fullsize .template-blog .post-title {
    max-width: 100%;
    }
    div.comment-entry.post-entry {
        width: 72%;
        margin: 0 auto;
    }
    #254740

    Hey!

    Change the code to:

    @media only screen and (min-width: 768px) {
    div.comment-entry.post-entry {
        width: 60%;
        margin: 0 auto;
    }
    }

    Best regards,
    Josue

    #255186

    Thanks! it works!

    #255189

    You are welcome, glad we could help :)

    Regards,
    Josue

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