Tagged: cornerstone
-
AuthorPosts
-
June 17, 2016 at 11:30 pm #1048027
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,
WeiJune 18, 2016 at 12:45 am #1048089Hi 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.
June 18, 2016 at 1:02 am #1048106Hi 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,
WeiJune 18, 2016 at 1:13 am #1048116Hi 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.
June 18, 2016 at 1:39 am #1048144Hi 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
June 18, 2016 at 1:45 am #1048159Hi 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.
June 18, 2016 at 1:57 am #1048165Thank you so much Christopher:) You guys support is the best I have ever experienced.
June 18, 2016 at 1:59 am #1048169You’re welcome 🙂
-
AuthorPosts