Tay
Tay

Reputation: 300

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

Upvotes: 0

Views: 138

Answers (2)

umusi
umusi

Reputation: 167

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>

Upvotes: 1

user6144987
user6144987

Reputation:

You can disable comments on blogger page from the bottom left of page editor

Go to Page Editor > Page settings > Options > Reader comments

To disable share buttons, you need to edit post footer code in blog posts widget.

Upvotes: 0

Related Questions