Support Forums for LiveMesh Themes & Plugins › Forums › Appdev Theme Support › Contact form & app button
Tagged: contact form, footer, Get this App button, header
- This topic has 2 replies, 2 voices, and was last updated 9 years, 11 months ago by
Veena.
-
AuthorPosts
-
May 19, 2016 at 7:56 am #21899
Adzy5
MemberHi there,
I am using the Appdev theme and I have two issues which I hope you could help me with as below:
1) I would like to change the “get this app” button in the header to two separate buttons being the standard apple app store and google play store badges / buttons each with their own link to download the app. Please could you advise how I would do this?
2) I have contact form 7 in the footer of my site implemented through a widget and shortcode. The contact form appears to work fine and I get a success message but it does not actually send the emails?
Thanks,
AdamMay 19, 2016 at 12:30 pm #21911Veena
Moderator1.
Pls try inserting the below piece of code into header.php at line no:73 (immediately after the closing of the wrap div) and see if that works .<div class="app-download-buttons"> <a href="'. $google_play_url . '"><img src="https://www.livemeshthemes.com/appdev/wp-content/uploads/sites/7/2013/07/btn-googleplay.png" alt="btn-googleplay" width="192" height="63" /></a> <a href="'. $itunes_url . '"><img src="https://www.livemeshthemes.com/appdev/wp-content/uploads/sites/7/2013/07/btn-appstore.png" alt="btn-appstore" width="192" height="63" /></a> </div> </div>And also have this custom CSS in themeoptions –
/* Hide the existing get app button */ #header .button.get-app { display: none; } .app-download-buttons img { margin: 15px 10px 0 0; max-width: 140px;} .app-download-buttons { display: inline-block; width: 300px; float: right;} .play-button img { border: 1px solid #aaa;} .itunes-button img { border: 1px solid #252525; border-radius: 4px;} #header.sticky .app-download-buttons img { margin-top: 5px; margin-bottom: 5px; max-width: 140px; } /* Mobile layout */ @media screen and (max-width: 767px) { .app-download-buttons img { margin-top:0; max-width: 135px; margin-right: 5px; } .app-download-buttons { margin: 0 auto; width: 280px; float: none; }}May 19, 2016 at 12:32 pm #21912Veena
Moderator2.
.Can you do a quick check with this plugin and see if emails are being sent – -
AuthorPosts
- The forum ‘Appdev Theme Support’ is closed to new topics and replies.