Blog Post Layout issue

I am creating a blog for a new website. I am currently using the default layouts. When I add a post as a test it shows up perfectly when I use the preview mode. When I check it via the website the blog post list is fine but when you open the blog post page it just the text etc with no CSS. What would be causing this? Is this something I have inadvertently done or is a system issue. I have not had this problem before with BC Blogs. As far as I can see the relevant CSS links etc are on the page.
Any suggestions??
Thanks
Cordie78

Hi Cordie,
Sounds like there's no template assigne to the blog. Make sure you check that http://alexpavelescu.worldsecuresystems.com/Jing/2013-05-29_1520.png
Kind Regards,
Alex

Similar Messages

  • Having some issues tweaking the Blog Post List Layout to output to adobe Muse

    Please see my question progression here from Muse side:
    http://forums.adobe.com/message/5109260
    So basically, I have watched the videos on BC Gurus and have posed the question on modifying the blog module in muse to get output I want.  when I use module {module_blogsitepost} it does not show all the information I want, but when I click a url to a blog post, it jumps to another page that shows the "BLOG TITLE", "BLOG DESCRIPTION", "RECENT POST", TAGS,  and "ARCHIVE" which I think would be helpful on the main {module_blogsitepost} module.
    So, i took the tags from the "OVERALL BLOG LIST MODULE" which does have that information and pasted  into the module {module_blogsitepost} which in BC under modules is Blog Post List Layout.  However the output just turns to the image below:
    I really do not know what I am doing wrong, if anything at all.  Is this a limit of the cooperation between adobe MUSE and BC?  Should not make a difference if I am copying all the HTML and passing it into the HTML view  of the Module I want.  Why is there not a bracket { } module for "OVERALL BLOG LIST MODULE" on the http://kb.worldsecuresystems.com/134/bc_1345.html ?
    It is strange that there are modules in BC that do not show code strings to generate the output shown on this list?  Is it because this capability is limited?  It is strange.  Please jump over to my site ( http://furnitureassemblyservice.com/blog.html ) to see what I mean.  BTW, I added the Tags Module to the site so that at least shows.
    One other question.. And maybe this is a Muse question, I try to add text or objects to the side of the blog entry but they are pushed to the bottom?  Not sure if I need to add this into an object with the Module and mark it up in html with a table to make that work?  I ask because I am trying to monitize the blog and add banners to the side or top. 
    Thank you for the time.

    The recommended practice is to call preventDefault on the dragStart event.

  • Page layout skewed after comment added to blog post

    I am having an issue where my page layout is all out of whack after a reader posts a comment. The body text of the blog post drops down the page to cover over the top comment. Also noticed that the weblink that the reader has entered doesn't work - It's supposed to load their site when clicking on their name, but no link is active. Also having problem where the body text is OK, but the comment is cut off - the page doesn't automatically extend to allow the comment to fit at the bottom.
    Very frustrating for me and my readers.
    BTW, using iWeb09 and Mobile Me account. Annoying to pay this money and not have results.

    Seems I can answer this one myself.
    The problem occurs when the code from Google Analytics is not on the furthest back layer. Right click on html box containing the code and select 'Move to back'. Problem solved

  • Path issue leaving me unable to add blog post content in design view

    Hi guys,
    I am unable to add blog post content in design view when a template is applied to my blog. BC support have told me they fixed the problem by making minor changes to the paths of the css and javascript files and then told me to post on here for the solution.
    When I call the files using <link rel="stylesheet" href="/css/custom.css" /> everything displays perfectly but in BC I can't add blog post content in design view. I can edit in html but this isn't ideal for clients to update the blog.
    If I change the paths to <link rel="stylesheet" href="css/custom.css" /> it fixes the problem and I can then edit blog content in design view but all blog pages that are in folders display incorrectly. Only the main blog page display properly.
    I'm sure the answer is simple but I can't find it so any help would be greatly appreciated. Thanks
    Pete

    I took a look at your page URL and can't find any CSS issues or styles that would directly affect you editing/adding content to a blog post via the content editor.
    Make sure you either clear your cache or try in another browser to see if the problem is localized to your current browser.
    If you still have the problem can you link me to a screencast (you can use Jing if you don't have a screencast program: http://www.techsmith.com/jing.html) of what you are experiencing?

  • Blog Post List layout - images missing

    My developer is saying that it is not possible to include post images in the blog post list layout.
    Can you confirm if this is correct?
    Here is my current blog post list layout  http://www.onlineiq.biz/_blog/onlineiq_blog
    and images only display when clicking on Post Detail view.
    I know this can be acheived with web apps, but just needed to confirm that he is not missing something or that there is a trick we need to be aware of.
    thanks
    Ursh

    Just add an image into the paragraph of text.
    http://www.fueldesign.co.nz/_blog/Fuel_Design_Blog
    I think what your developer is doing is using the tag for the layout to show a number of characters rather then the one to show the first paragraph. The latter will allow you to have html such as images but you need to ensure your first paragraph is short and sweet - and intro and the css styles for the image work.
    But as you can see, it is defiantly possible.

  • Template breaks when viewing Blog Post Details Layout

    I've made a new ECommerce site with my own template (HTML en CSS). On the Blog Post List is my new template. But when I click on the title or permalink, Then my template breaks and all I see is the text from my template and the blog post detail. What can I do?
    Regards,
    A.H. Bakker

    Yes, just as I suspected.  A lot of your CSS, JS and IMAGE assets are referenced incorrectly in your page template or page.
    Right now, in your page template you are referecing IMG elements with a "relative URL":
    <img src="images/myimage.jpg"/>
    That will work fine on the homepage and first-level pages like "/" and "/blog" because the browser will attempt to load:
    http://yoursite.com/images.myimage.jpg
    But, if like on your blog detail pages which are located deeper in the websites folder structure "/blog/nog-maar-eentje" since this URL places you on the "nag-maareetje" page inside the "blog" folder, your relative URL will lead the browser to try and load
    http://yoursite.com/blog/myimage.jpg
    That is not the correct location for our images folder which is directory in the site's root folder.  To avoid this issue, you need to update your references to all images that's SRC attribute start with "images/" and change it to a "site relative URL" simply by prepending a "/" at the beginnging of the SRC attribute:
    <img src="/images/myimage.jpg"/>
    You'lll need to replicate this process for your CSS and Javascript references too. CSS references will look like:
    <link href="css/style.css" rel="stylesheet" type="text/css" />
    Becomes:
    <link href="/css/style.css" rel="stylesheet" type="text/css" />
    And javascript:
    <script type="text/javascript" src="js/lib.js"></script>
    Becomes
    <script type="text/javascript" src="/js/lib.js"></script>
    Anywhere that a reference to a javascript, stylesheet or image starts without a slash, "/" and just begins with the folder or asset ("images/...", "myimage.jpg") are relative URLs. You'll also see URLs that are absolute and those are URLs in your code that start with "http://yoursite.com" or "http://yoursite.businesscatalyst.com". Those you don't have to worry about since they are absolute and won't get mucked up when you are trying to load those from page within your site.
    After you edit your page templates you might need to fix the same problem in your pages that are in a subfolder of your site.

  • I have 2 blogs on my site, I need to customize Blog Post Details Layout diff for each???

    I have 2 blogs on my site, I need to customize Blog Post Details Layout diff for each???

    Hi,
    Unfortunately it is not possible to have multiple details layouts for your blog per site at this stage. 
    Kind regards,
    -Sidney

  • Customize Sharepoint 2013 Blog Post forms and layout

    I have a blog site that will be home to customer call reports saved as posts to the blog. The blog works, but how do I get all the custom columns to show on the blog home page that shows all of the posts. Currently, only the Posted Date, Notes, and Title
    field display.

    Hi Jim ,
    According to your description, my understanding is that  you want to display custom columns in your home page posts web part.
    Please go to the home page -> Edit Page -> Edit the Posts Web Part ->in the Posts Web Part Settings Page , click  Edit the current view -> check the column you want to display and click OK.
    The fields  are  now available to be rendered as part of the current view.
    Then we need to create the custom JavaScript file that will render the new fields for  the post body. You can refer to the blog:
    HOW TO: Add a custom field to blog posts in SharePoint 2013
    Hope this helps!
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • TechNet Wiki - Best Practice Blog Posts

    Lately, we've had some great blog posts about best practices on TechNet Wiki. So we're going to share them with you here...
    Wiki
    Life: Commenting on Comments... Care to Comment?- 10/16/14 by Ed Price
    How
    to write a great post on the Wiki - For Dummies - 10/12/14 by Gokan Ozcifci
    Wednesday
    - Wiki Life: The Importance of Longer, High-Quality Articles - 10/8/14 by Ed Price
    Wednesday
    - Wiki Life: 10 ways to become the most hated Wiki ninja on the planet - 10/1/14 by Peter Geelen
    Wiki Life:
    PowerShell PowerPack! - 9/17/14 by Matthew Yarlett
    The
    most unseen and unspoken TechNet Wiki roles: The mentor Role - 6/22/14 by Sandro Periera
    Wiki Life: Smart Tags -
    6/18/14 by Matthew Yarlett
    Wiki Life:
    Ownership and Credibility - 6/11/14 by Matthew Yarlett
    Wiki
    Life: Best Practices for building TechNet Wiki Portals - 6/4/14 by Horizon Net
    Wiki
    life: Technet Wiki tagging, the ugly truth. - 5/29/14 by Peter Geelen
    Wiki Life:
    Getting too Personal!  - 5/14/14 by Matthew Yarlett
    Wiki Life:
    YOU edited MY article??!  - 4/30/14 by Matthew Yarlett
    Wiki
    Life: Are you right in making it a rite to write? - 4/16/14 by Matthew Yarlett
    Wiki Life - Alerts -
    4/9/14 by Alan Carlos
    Wiki
    Life: Speling an gamma, it is umpotant? - 4/2/14 - by Matthew Yarlett
    Wiki
    Life: How to Translate TechNet Wiki Articles - 4/2/14 by Horizon Net 
    Wiki Life:
    Attention to Detail - 3/19/14 by Matthew Yarlett
    Wednesday - Wiki Life - Mobility - 3/12/14 by Alan Carlos
    Wiki
    Life: A Picture is Worth a 1000 Words - 3/5/14 by Matthew Yarlett
    Wiki Life: Cut'N'Paste -
    2/19/14 by Matthew Yarlett
    Wiki Life: How to Join Leadership - 2/19/14 by Horizon Net
    Wiki Life: Featured Articles in the TechNet Wiki - 2/12/14 by Durval Ramos
    Wiki Life: Code.Format() -
    2/5/14 by Matthew Yarlett
    Wiki Life: The CodePlex Corner - 2/5/14 by Horizon Net
    Did you know that we have a layout article? - 1/29/14 by Durval Ramos
    Wiki
    Life: Get to the point, keep it short! - 1/22/14 by Matthew Yarlett
    Wiki Life:
    Planning a Great Article - 1/8/14 by Matthew Yarlett
    Wiki Life: Best Practices for converting an MSDN / TechNet Forum thread into a Wiki Article!!!
    - 12/25/13 by Ed Price
    Wiki Life: Best Practices for Giving Credit - 12/18/13 by Horizon Net
    Wiki Life: How To Fix a Wiki Article TOC  - 12/4/13 by Benoit Jester
    Wiki Life: How To Detect Missing Tags Without any Effort  - 11/20/13 by Benoit Jester
    Wiki Life: How To Import an Microsoft Excel Spreadsheet Into a Wiki Article - 10/30/13 by
    Markus Vilcinskas
    Wiki Life: Cross Linking  - 10/9/13 by Horizon Net
    Wiki Life: User Groups Portal - 10/2/13 by Horizon Net
    Ed Price, Azure & Power BI Customer Program Manager (Blog,
    Small Basic,
    Wiki Ninjas,
    Wiki)
    Answer an interesting question?
    Create a wiki article about it!

    Respected sensei Wiki Ninja,
    what else do you need to start a Wiki article?
    Put you signature in practice!
    So I kindly invite you all to continue your braindump over here:
    http://social.technet.microsoft.com/wiki/contents/articles/27905.technet-wiki-best-practices-blog-posts-articles.aspx
    Peter Geelen (Microsoft Belgium) - Premier Field Engineer Security & Identity
    [If a post helps to resolve your issue, please click the
    "Mark as Answer" of that post or click "Vote as helpful" button
    of that post.
    By marking a post as Answered or Helpful, you help others find the answer faster.

  • How to fix BC blog post meta title and description

    BC blog post <title> and <description> shows (seo) from sidebar/post list - But does not show in blog post page thru site menu nav.
    The blog post title and description show up corectelly when clicking on sidebar list of posts.
    It must be using the module layout list.html which I have set up with:
    <html>
        <head>
        <title>{tag_blogpostmetatitle}</title>          
            <meta name="description" content="{tag_blogpostmetadescription}">
        </head>
        <body>
    On the sidebar/post list
    Title and Description show correctly here:
    https://cameocoinsonline.worldsecuresystems.com/cameo-coins-blog/how-to-buy-and-sell-gold- and-silver-bullion
    The problem is:
    when clicking on menu nav to “blog” it does not show correct title and description.
    From the blog page thru menu nav
    Title and Description do not show correctly here:
    It shows the name of the blog (cameo coins blog) instead of the name to the post.
    https://cameocoinsonline.worldsecuresystems.com/cameo-coins-blog
    Please Advise
    Thank You

    Hey there,
    Firstly, putting blog posts meta title in the list layout is really bad - You do not do this. This is not how meta works and you need to understand a bit more about what it is.
    If you have a list of blog posts on a page all with lots of title and meta BC will do one of two things.
    1. Use the very last title and meta it sees rendered on all the layouts/templates/page it sees
    2. Render the last title and spit out multiple meta's
    Meta implementation is for the detail layout of something like a blog only - The single rendered content - 1 title, 1 meta description. For your blog this will ONLY go in the blog detail layout.
    And in that layout at the bottom of it..
        <head>
        <title>{tag_blogpostmetatitle}</title>         
            <meta name="description" content="{tag_blogpostmetadescription}">
        </head>
    You need to understand that, remove it from others to fix up that issue with what your doing first. Very likely because you probably have this in other list layotus and all over the place your seeing inconstant output, address this and you probably will actually find your issue fixed.

  • Blog post : "Bug in Create/Edit View Criteria Wizard (JDeveloper 11g)"

    hi
    Using steps 1 to 13 from the blog post "Bug in Create/Edit View Criteria Wizard (JDeveloper 11g)" by Andrejus Baranovskis, I have been able to reproduce the issue he describes.
    see http://andrejusb.blogspot.com/2008/12/bug-in-createedit-view-criteria-wizard.html
    I the blog post comments he writes "... there was no time for me to fill bug in Metalink ...".
    Maybe someone from Oracle can pick it up from this forum post and file it as a bug if it is one (and if possible post the bug number here).
    many thanks
    Jan Vervecken

    The mechanism is to create a reproduceable test case, create a Service Request in metalink.oracle.com, post the test case, and convince the analyst to file it as a bug.
    It may be not efficient at some time, but this the way it is handled.
    --olaf                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Customize blog post display in Share Point 2013 in Cloud

    Hi,
    I am trying to modify look of the blog post (single post entry), but running into issues.
    This is the full scenario I am trying to accomplish:
    I have custom content type that extends post with few fields that I need in order to pull specific post entries on different pages(this is not an issue).
    I have Yes/No field for post in the blog to allow or disallow comments.
    If the check box is set to No I don't want to display anything that would have to do with the comments.
    Idea is to use overrideCtx but in order to be able to check the value of the Yes/No column I need to add it to the Current View, this is where the problem starts.
    Any time I modify the current view and add a field the title and body of the post entry are no longer displayed on the page and there is no way for me to change it back.
    Anybody has any ideas why is this happening, or was trying to do something simillar?
    Thanks
    Brano

    Unfortunately the javascript (example above) didn't work for me. 
    What I end up doing is (separate js so the code can be changed and reused for multiple blog sites) and reference it in the Content Editor:
    (function () {
    var overrideCtx = {};
    overrideCtx.Templates = {};
    overrideCtx.Templates.Fields = {'Body':{'View': CBody}};
    SPClientTemplates.TemplateManager.RegisterTemplateOverrides(overrideCtx);
    function CBody(ctx) {
    var items = ctx.CurrentItem;
    var ret = ctx.CurrentItem.Body;
    if(ctx.CurrentItem['AllowPost'] == 'Yes'){
    _spBodyOnLoadFunctionNames.push("hideComments");
    return ret;
    function hideComments(){
    //look for elements with specific IDs and Classes to hide
    I am wondering if there is shorter way so I don't have to call _spBodyOnLoad so it doesn't add too much overhead
    If anyone know better way let me know?
    Thanks
    Brano

  • Append to a Blog Posts List

    I've noticed various ways to bulk-append to a List in SharePoint 2010 - some seemingly better than others - using Excel and Access.  Do y'all suppose it's possible to bulk-append to a SharePoint Blog "Posts" list?  There appear to be
    some read-only columns that might make this difficult.

    Hi  ,
    According to your description, my understanding is that you need to import bulk
     blogs into SharePoint blog site’s posts library .
    For your issue, here is a blog import tool which is available for SharePoint 2010
    http://www.blackbladeinc.com/en-us/products/blogimport/Documents/BlackBlade.BlogImport.UI.zip
    For more information, you can have a look at the blog:
    http://thingsthatshouldbeeasy.blogspot.com/2010/01/blog-exported-to-my-companys-sharepoint.html
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • Error at the time of Post Goods Issue

    Dear All,
    I am getting an error when I am doing the post goods issue the error says that Field Selection Movement Type 601 Differs for Business Area.Though we went to the respective table RM07CUFA and rectified the same what could be the cause of this error and why does this happen.
    Best Regards
    Atul Keshav

    Hi,
    The reason for this error is because of field group in movement type and accounts might be differ.
    You can check the same as below :
    Go to transaction OMWB ---> click on simulation ---> mention plant and material and movement type
    and click on account assignments
    Now click on check screen layout
    Now check for Business area in additional account assignment whether entry is required in movement type and supress in GL accounts.
    Changes the fields status then.
    This will solve the issue

  • OT: The Dreamweaver team's blog post about the Dreamweaver modernization effort

    Hi all,
    The Dreamweaver team has shared its thoughts on the rationale behind changes in Dreamweaver CC in its blog post http://blogs.adobe.com/dreamweaver/2013/06/a-look-at-the-modernized-dreamweaver-cc.html. The blog post also touches upon what's ahead while providing alternatives to some of the older features that did not make it to Dreamweaver CC.
    The team has taken into account feedback from several quarters before formulating a reply. I thank all of you on this forum who have provided us with inputs and constructive feedback to help us respond to your concerns.
    I would like to particularly call attention to this sentence from the blog post:
    We have just begun the modernization process and invite you to voice your opinion. We are committed to taking action on customer feedback and remaining as transparent as possible about our future plans.
    In this context, it is worth noting that the Creative Cloud provides us with the flexibility to  quickly try and address issues and areas that fall within the purview of our shared vision for Dreamweaver.
    Thanks,
    Preran

    Namaste Preranji,
    That URL that you posted is broken it should not be "dr eamweaver" but "dreamweaver" I hope that is not a bad omen. (-;
    VL Branko

Maybe you are looking for