Please can someone help me with css and javascript

jankelly
jankelly Community Member Posts: 27
Hi, I'm working in Lectora 16 and have built a certificate with an entry field for the user to enter their name; the course is for web hosting. The entry box is functioning, but the formatting isn't appearing. I want the text to center, and the font to change.

I used the How to Style Entry Fields in Lectora using CSS as a guide, but I'm obviously missing something. CSS code:

.entry1 {

display: inline-block;
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
padding: 10px 20px;
border: 1px solid #b7b7b7;
-webkit-border-radius: 3px;
border-radius: 3px;
font: normal normal bold 22px/normal "Palatino Linotype", "Book Antiqua", Palatino, serif;
color: rgba(0,142,198,1);
text-align: center;
-o-text-overflow: clip;
text-overflow: clip;
background: rgba(252,252,252,1);
-webkit-box-shadow: 2px 2px 2px 0 rgba(0,0,0,0.2) inset;
box-shadow: 2px 2px 2px 0 rgba(0,0,0,0.2) inset;
text-shadow: 1px 1px 0 rgba(255,255,255,0.66) ;
-webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
-moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
-o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
}

.entry1:hover {
}

.entry1:focus {
}

Thanks!

Comments