Social media icons for Simple Blogger Template - blogs

I need to add above mentioned social media icons into my blog. Currently I did it by using each and every page.So now I need to change the Simple Blogger template to add it once and appear it for all the articles.So how can I do that ? Which sections of blogging template should I change ? This should appears after the heading.

Go to Blogger Dashboard > Template > Edit HTML.
Search for <data:post.body/> and paste your sharing buttons code just above it > Save your template > Done

Related

Creating a plain html home page AMP with WordPress running the other pages

Gday
I like to know how you would go about creating a home page in plain html and have WordPress run the other pages?
The reason is I’d like to create a solely plain html website but I need WordPress for my contact page it has a large form on it and I use a plugin to generate it and forms are a bit beyond my knowledge at the moment to create a contact page myself.
(I have tried creating a template page but then WordPress adds unnecessary code [from plugins ] and makes the AMP invalid)
Honestly I'd try and keep it self contained in WordPress itself.
If for some reason you really want a separate HTML/PHP Homepage, follow these steps:
Add a my-homepage.php file to your /wp-content/themes/ACTIVE-THEME directory
Inside that file put the following code:
Add a new page (Pages > Add New)
Give it a recognizable name like "My Homepage"
In the "Template" selector on the right hand side, pick "My HTML Homepage" and click Publish
Go to Settings > Reading, change Your homepage displays to A static page and pick the page you just made
Now you can add your own code as you see fit. Nothing "WordPress" related will get loaded or hooked in since there's no functions on that file - so you're free to code HTML (or PHP) to your heart's content.
You can see a bit more indepth answer over on WPSE: https://wordpress.stackexchange.com/questions/296592/how-to-use-custom-html-file-instead-of-wordpress-homepage

How to customize page template using Liferay UI?

Is it any ways to add html and css code to page templates using UI of lifery? Because when I'm opening page template - > add page template I've got smth like this with this strange message
It is not possible to specify customization settings for pages in site
templates or page templates.
How to write my own template with custom CSS and Pictures that I have already added to my custom theme?
Your screenshot is helpful. See the Look and Feel tab? That's where you can add custom CSS. Custom JavaScript logic can be added in the Advanced tab.

How exactly do I create a new, separate page to my website in a Shopify theme?

I'm working on an e-commerce website that I'm making with Shopify and I've been using the Timber framework and building onto it and modifying it heavily.
You can create your page in the Shopify admin. The content box can contain HTML or JavaScript; just tap on the <> button to see the code.
The page will be rendered with the page.liquid template of your theme. If you want the FAQ page to have a different look from your other pages you can create an alternate page template.

Include a HTML template for one page in Wordpress

I have a dull About-me Page. I would like it to be more responsive and want it to be like a CV- template. So I saw PerfectCV and CeeVee. I would like to incorporate it into my website for just my about-me page.
The question is how to incorporate it. Need some guidance on going about doing it..
Just prepare a file in your theme folder xyz.php, then just make it a template of wordpress and provide it a template name. Put your css in style.css file and just include this template to About-me page through admin panel. All the code you have put in your template will only work for About-me page.
simple go to your admin panel. Click pages. create a page and put your html content with inline css. Thats all. You can change settings to make this page as home page too. If you need more help please let me know.

Multiple themes or template on Wordpress

I have 7 designs for 7 pages. All the design are different from each other and really has no similarity with each other. Is it possible to apply all those design on a same site as I an familiar with three designs only which are Home(For Home Page) and Page(For All inside Pages) and another is Post same as Page. But I have seven HTML design for seven kind of pages beside home and post. How can I apply that. If not then please give me any suggestion how to do it. I am very new at Wordpress.
You need to make 7 wordpress templates and to apply each template to the page you want.
To make a wordpress template you need to add this to each template page:
<?php
/*
Template Name: Your template name
*/
?>
Then you can select which page which template to use when you edit the page.
In Wordpress you can apply a different template to each of the pages you create. You can choose the template, in the page editing section, by opening the drop-down menu on the right side of the screen which is called "Page Attributes".