• How does everyone recommend filling that “Contact” page? Like, is there any sort of third-party plugin I can get that will let me put a basic form in there, to capture user’s “Name”, “E-mail Address”, “Question/Comment”, and then a captcha? How could I go about doing that?

    Thanks.

    –etcbbu

Viewing 3 replies - 1 through 3 (of 3 total)
  • Moderator t-p

    (@t-p)

    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">&nbsp;</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">&nbsp;</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">&nbsp;</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

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Contact form?’ is closed to new replies.