Archived topic
button position in header
3 replies · Started by Edu on July 11, 2017
Hi! http://porkoespink.com/imat/
i cant put the button below the text "Schoolguru has signed an agreement with
General Lansana Conté University Sonfonia-Conakry,
Guinea (Africa) as their academic services partner."
also i don see the text color in button in white. Here is the code im using on the header and css.
Can you helo me please?
CODE ON HEADER.
<h1 class="title_slider">Partnering with <b>UGLC-SC</b><br>
to augment online learning<br> in Africa!</h1>
<h2 class="text_slider">Schoolguru has signed an agreement with <br>General Lansana Conté University Sonfonia-Conakry,<br> Guinea (Africa) as their academic services partner.</h2>
READ MORE
CSS
.red_button{
Font-family:Open Sans, sans serif;
background-color:#d30000;
padding:10px 20px 10px 20px;
font-weight:bold;
color:#ffffff;
border-radius: 5px;
}
Hi there,
Try adding the button as a <div> like this:
<div class="red_button">
Read More
</div>
The button currently has white text.
Thanks! but..now look in the same position and loooonnngg hah :)
take alook please http://porkoespink.com/imat/
You would need to do this:
<div class="button-container">
<a href="#" class="red_button">Read more</a>
</div>