Thread Starter
etcbbu
(@etcbbu)
Thanks for the reply, I am looking at all of these now.
See, my website is
http://perfectlyincomplete.ktravisj.com
And at the top of that page, it’s that third, blue “Contact” button that I want to use to take a user to a page with a form on it.
Which of these form systems do you foresee as being easiest to fit into this kind of code? The first two snippets are the “Home” and “Archive” buttons–ignore those, those are fine:
<!-- Main Menu -->
<div id="menu">
<a class="home pngf" href="<?php bloginfo("url"); ?>">
<span class="atit">HOME</span>
<span class="ttxt">this blog's front page</span>
<span class="shad"> </span>
</a>
<?php
$page = get_page_by_title('Archive'); //use exact spelling
$page_link = get_permalink($page->ID);
?>
<!-- Link For Archives page -->
<a class="arch pngf" href="<?php echo $page_link; ?>">
<span class="atit">ARCHIVE</span>
<span class="ttxt">old from xanga, MySpace, etc</span>
<span class="shad"> </span>
</a>
<a class="cont pngf" href="#">
<span class="atit">CONTACT</span>
<span class="ttxt">to agree or disagree--or whatev</span>
<span class="shad"> </span>
</a>
Which of the form you suggest would best go in that
<a class="cont pngf" href="#">
<span class="atit">CONTACT</span>
<span class="ttxt">to agree or disagree--or whatev</span>
<span class="shad"> </span>
</a>
section?
Thanks.
–etcbbu
Thread Starter
etcbbu
(@etcbbu)
Ok forget all of that.
I found “WP-Simple-Contact-Form-with-Captcha” at
http://wordpress.org/extend/plugins/wp-simple-contact-form/installation/
And I just put it on my site, and this is what it looks like:
http://ktravisj.com/blog/perfectlyincomplete/contact
Is there any way I can decrease the size on this thing, so as to make it fit in my page better..? Or, at least sift it all to the right/ or hide the borders–anything??
Thanks.
–etcbbu