I have animated text as per code below. I will be using a similar page title section on multiple pages but I would like to be able to maneuver the placement of the text within the container depending on the particular page and background image I am using. Right now the text is centering (top/bottom) within the div. I can control the left/right placement by adding padding to the H1, but when I try to use padding to change vertical placement it increases the background image too. If I try to add <br> as spacers it also increases the background image. What is the correct method to change both vertical and horizontal placement of the animated text? As an example I would like this text near the bottom of the background image. also where is the code that is placing this text currently in the center? animate.css?
<section id="page-title" style= "padding: 125px 0; background:url('Grads_sil.jpg') center center no-repeat; background-size: cover;">
<div class="container clearfix">
<h1 data-animate="fadeInLeft" data-delay="1200" style= "font-size: 60px; color: red; font-weight: bold;">CAP, GOWN & TASSELS</h1>
<br>
<p data-animate="fadeInLeft" data-delay="3200" style="font-size: 40px; color: red; font-weight: normal;">**
In Awesome Rich Colors**</p>
</div>
</section><!-- #page-title end -->Thank you
