Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1048027

    Chiweilin
    Participant

    Hi,

    How to use Cornerstone to edit a “post” with full width like editing a “page”? When editing a “post” by Cornerstone, there are wide margins on both sides. I want to have all my content in a post full width, but I just can’t do it with Cornerstone. It’s easy to do this in a “page”. How come it doesn’t work for a “post”?

    My website is http://www.meetmyguide.com

    Really appreciate you guys’ professional help. Love X theme.

    Thanks,
    Wei

    #1048089

    Christopher
    Moderator

    Hi there,

    Please add following code in Customize -> Custom -> CSS :

    .single-post .entry-content.content {
        padding-right: 0;
        padding-left: 0;
    }
    .single-post  .entry-wrap .x-container.max.width {
        width: 100%;
        max-width: 100%;
    }
    .single-post  .entry-wrap .x-section .x-container.max.width {
        width: 88% !important;
        max-width: 88% !important;
    }

    Hope that helps.

    #1048106

    Chiweilin
    Participant

    Hi Christopher,

    It works well now. Appreciate it.

    May I ask you for another question?

    How do I add a title on top of the post page here: http://www.meetmyguide.com/blog/

    And It seems I can’t edit this page by Cornerstone, is it because I set this page as posts page from WordPress admin setting? If so, is there a way to edit this page? I want to adjust the layout like padding, margin and add a title and etc. How do I do it?

    Thanks,
    Wei

    #1048116

    Christopher
    Moderator

    Hi there,

    Please add following code in Customize -> Custom -> JavaScript :

    jQuery(".blog .x-main").prepend("<h1 class='h-landmark' style='text-align:center;'><span>Le Blog</span></h1>");

    Hope that helps.

    #1048144

    Chiweilin
    Participant

    Hi Christopher,

    Thanks for your prompt reply. I can finally add a title on posts page.

    Sorry for forgetting to ask in the last message.

    1. If I add a Featured Image in Edit Post for a specific post, how can I do to remove the Featured Image when I click into the post? I just want the featured image to be displayed as thumbnail on my posts page, not in a post.

    2. On my posts page (http://www.meetmyguide.com/blog/), tooltips is always appeared when I hover on the title and the featured image. Can you show me how to remove the tooltips?

    Thanks for your professional help. Looking forward to hearing from you again.

    Wei

    #1048159

    Christopher
    Moderator

    Hi there,

    Please add this :

    .single-post .entry-featured {
    display:none;
    }

    Please add JS code :

    jQuery(".entry-title a,.entry-featured a").removeAttr("title");

    Hope it helps.

    #1048165

    Chiweilin
    Participant

    Thank you so much Christopher:) You guys support is the best I have ever experienced.

    #1048169

    Christopher
    Moderator

    You’re welcome 🙂