Mrinal Sharma
asked 9 years ago

how to put the website title down and get start button little bit down ?

1 Answers
DominicStaff
answered 9 years ago

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 !

Powered by DW Question & Answer Pro