Hi,
Please do not bundle all the threads at once. create a separate tickets for
separate issue.
For you title issue follow below instructions:
Use below HTML code
<div class="main_title centered upper">
<h2 id="service_heading">
<span class="line"><span class="dot"></span></span>Search by Accommodation Type & Location
</h2>
</div>
instead of this
<h1 style="text-align: center;">Search by Accommodation Type & Location</h1>
For your last issue follow below instructions:
Create a “Child-Theme” first. Now create a “home-page.php” file into your
“Child-Theme” directory. Open it into any text editor.
Here you will see line of code in this file as given below.
<?php
/* Template Name: Home */
get_header();
get_template_part('home', 'slider');
get_template_part('home', 'service');
get_template_part('home', 'portfolio');
get_template_part('home', 'blog');
get_template_part('home', 'content');
get_template_part('call', 'out');
get_footer();
?>
Now rearrange the home page service section please use below line of code snippet:
<?php
/* Template Name: Home */
get_header();
get_template_part('home', 'slider');
get_template_part('home', 'portfolio');
get_template_part('home', 'blog');
get_template_part('home', 'content');
get_template_part('home', 'service');
get_template_part('call', 'out');
get_footer();
?>
Save the changes.
That means changes the order according your need. Hope you understand.
For your remaining issue please provide screen-shot link with more detail.
So we can assist you better.
Let us know for further assistance.
Thank You