Hello,
How to change the title: Send us mail
and text : "Send" in the button ?
and int the footer, How to modify the copyright ?
please ;)
Hello,
How to change the title: Send us mail
and text : "Send" in the button ?
and int the footer, How to modify the copyright ?
please ;)
Hi,
1.) To modify the copyright, just open footer.php and find this code
<span class='copyright'>© <?php _e('Copyright','avia_framework'); ?> - <a href='<?php echo home_url('/'); ?>'><?php echo get_bloginfo('name');?></a> - <a href='http://www.kriesi.at'>Wordpress Theme by Kriesi.at</a></span>
You can replace it with
<span class='copyright'>© <?php _e('Copyright','avia_framework'); ?> - <a href='<?php echo home_url('/'); ?>'><?php echo get_bloginfo('name');?></a> - <a href='http://www.YOURLINKHERE.com'>WHATEVER TEXT YOU WANT TO PLACE HERE</a></span>
2.) You can change the text on contact page by editing includes > contact-form.php, find this code
"heading" => "<h3>".__('Send us mail','avia_framework')."</h3>",
"success" => "<h3>".__('Your message has been sent!','avia_framework')."</h3><p>".__('Thank you!','avia_framework')."</p>",
"submit" => __('Send','avia_framework'),
<h3> for the heading and submit for the button.
Regards,
Ismael
OK thank you, I can make these modifications in Custom CSS of the options of the theme or I have to make manually ?
Hi davidoffski,
You can't make this modification in custom.css. The 2 files you need to edit is footer.php and contact-form.php (contact-form.php is located inside the includes folder).
Regards,
Ismael
ok thank you
I am going to be annoy when there will be updates just?
and where i can change the color of validation of texts (actually it's green)
1) Yes, you need to update the theme manually (replace the updated files via ftp) - otherwise you'll loose your modifications
2) You can change the contact form colors (valid/error) with following css code - add it to css/custom.css and change the color values if required:
.valid .text_input, .valid .text_area, .valid select{border:1px solid #9AA600;}
.error .text_input, .error .text_area, .error select{border:1px solid #D27F2C;}
.ajax_alert .text_input, .ajax_alert .text_area, .ajax_alert select{border:1px solid #ffb628;}
p.valid label{color:#9AA600;}
p.error label{color:#D27F2C;}
p.ajax_alert label{color:#ffb628;}thank you very much ;)
Thanks! Glad that Ismael and Dude helped you out.
Nick
This topic has been closed to new replies.