cancel
Showing results for 
Search instead for 
Did you mean: 

Magento Contact page does not show the Submit Button

SOLVED

Magento Contact page does not show the Submit Button

Hello there,

I need some help with my small (hopefully) but annoying problem.

While testing my new magento website, I realised that in my contact page the SUBMIT button is not showing, and so the contact form can not be sent

I have tried viewing with Safari, Chrome, Firefox and it is all the same...

Please check it here:
http://www.stampaoffsetonline.com/weprint/contacts/

How could I solve this problem?

Any indication would be very much appreciated

Thanks

Gianni

1 ACCEPTED SOLUTION

Accepted Solutions

Re: Magento Contact page does not show the Submit Button

hi @giannifan

 

 This is clearly css problem go to http://www.stampaoffsetonline.com/weprint/skin/frontend/printshop/default/css/template.css  line 441 change color to #000


button.button span {
    color: #000;
    display: block;
    float: left;
    font-size: 12px;
    padding: 0;
    text-align: center;
    white-space: nowrap;
}

and on line 431

Remove  this code

background: transparent none repeat scroll 0 0;
Find helpful ? Consider Giving Kudos to this post.
Problem solved? Click Accept as Solution!"
Qaisar Satti

View solution in original post

2 REPLIES 2

Re: Magento Contact page does not show the Submit Button

hi @giannifan

 

 This is clearly css problem go to http://www.stampaoffsetonline.com/weprint/skin/frontend/printshop/default/css/template.css  line 441 change color to #000


button.button span {
    color: #000;
    display: block;
    float: left;
    font-size: 12px;
    padding: 0;
    text-align: center;
    white-space: nowrap;
}

and on line 431

Remove  this code

background: transparent none repeat scroll 0 0;
Find helpful ? Consider Giving Kudos to this post.
Problem solved? Click Accept as Solution!"
Qaisar Satti

Re: Magento Contact page does not show the Submit Button

Hi  @qaisar_satti 

 

Thank you for your help. 

 

It solved my problem and so I played a bit on the Css to give some extra customising to the sent button.

Such as on line 638 to give background color and a border:

 

.buttons-set button.button {
  float: right;
  margin-left: 5px;
  margin-bottom: 5px;
	background-color: #ff9900;
	border: 4px solid #d7d7d7;

Many thanks again

Gianni