how to put the website title down and get start button little bit down ?
1 Answers
To resolve this issue, you can open the header.php file in the folder path “wp-content\themes\dw-timeline\templates”. Find the line 35 to line 41.
Replace the following code:
<div class="container">
<h1 class="page-title">
<?php echo dw_timeline_title(); ?>
</h1>
<h2 class="page-description"><?php bloginfo('description'); ?></h2>
<button id="get-started" class="btn btn-default btn-coner"><?php echo dw_timeline_get_theme_option('get_start','Get Start Now') ?></button>
</div>
With new code:
<div class="container">
<button id="get-started" class="btn btn-default btn-coner"><?php echo dw_timeline_get_theme_option('get_start','Get Start Now') ?></button>
<h1 class="page-title">
<?php echo dw_timeline_title(); ?>
</h1>
<h2 class="page-description"><?php bloginfo('description'); ?></h2>
</div>
Then add the following code to the style.css file:
.banner .page-title { margin-top: 20px;}
.banner #get-started { margin-top: 255px;}
Hope this helps !
Please login or Register to submit your answer