I'm hoping I'm just missing something simple here, but no matter what I do, my text will not align center! Any help appreciated.
This is for the Certificate
this is my code:
</p>
<p class="mycertificate_student_name" style="text-align: center;">
[certificate_student_name]</p>
<p class="mycertificate_course" style="text-align: center;">[certificate_course]</p>
<p class="mycourse_completion_date" style="text-align: center;">[course_completion_date]</p>
My custom class:
leocertificate
Custom CSS:
.leocertificate .mycertificate_student_name{
position:absolute;
text-size:25px;
text-align:center;
top: 250px;
}
.leocertificate .mycertificate_course{
position: absolute;
top: 300px;
}
.leocertificate .mycourse_completion_date{
position: absolute;
top: 370px;
}