Shape 5

Joomla Templates => Campus Life - Club => : amiman January 19, 2016, 01:16:47 PM



: Button problem
: amiman January 19, 2016, 01:16:47 PM
I seem to have an arrow on my buttons, how do I get rid of these.
See newsletter button and search button
http://176.32.230.249/pets4uk.co.uk/


: Re: Button problem
: laurentp75 January 20, 2016, 02:39:29 AM
hello amiman,

.btn, .button, button, .readon, p.readmore a, a.k2ReadMore, .userItemReadMore, div.catItemCommentsLink, .userItemCommentsLink, a.readmore-link, a.comments-link, div.itemCommentsForm form input#submitCommentButton {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0 !important;
}
added !important; if you encounter problem to override

your code actual is:

.btn, .button, button, .readon, p.readmore a, a.k2ReadMore, .userItemReadMore, div.catItemCommentsLink, .userItemCommentsLink, a.readmore-link, a.comments-link, div.itemCommentsForm form input#submitCommentButton {
  background: rgba(0, 0, 0, 0) url("../images/button_arrow.png") no-repeat scroll right center !important; /*==>this is your problem:button_arrow.png*/
  border: medium none;
  box-shadow: none;
  color: #ffffff !important;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 0;
  margin-top: 0;
  padding: 13px 40px 13px 30px;
  text-decoration: none;
}

voila


: Re: Button problem
: amiman January 20, 2016, 10:37:20 AM
That got rid of the arrow
Thanks


: Re: Button problem
: jonahh January 20, 2016, 02:19:47 PM
Just noticed your input boxes on the login form need the following for the text to show. Just add to the bottom of your template.css file:

#login-form .input-prepend input {
    font-size: 14px !important;
}