Search code examples
blogger

Create separate landing page on blogger


thanks for viewing this post and I know this not a programming related question. Well I have created a site My Blog and as you could see there are several links on the home page like

C#--|-> Beginner
    |-> Advanced
    |-> Tips

C# (Parent node and Beginner,Advanced etc are child nodes or menus).

Now what I want, when someone click on the link C# it should redirect to a custom landing page (custom means I don't want to show any comment section at the bottom of the page)

There is an option to create a page from the scratch just like this but after creating it renders like this enter image description here.

So my requirement is I want to create a page from scratch using my own html where header and footer will be same but its should not display any comment section like this..a new page

Help needed :)

posted here too


Solution

  • add this code after body tag

    <b:if cond='data:blog.pageType == "static_page"'>
        <style>
         .post-footer,
         .plasma-post-author,
         .comments {  
             display: none !important;
         }
         </style> 
    </b:if>