Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter wickyd

    (@wickyd)

    Hi davmerit

    Thank you for your reply.

    All I am trying to implement is this:

    http://www.wpsnippet.com/creating-responsive-two-column-form-using-contact-form-7/

    But I don’t understand how to take their CSS and change it to a form that the ePanel will accept.

    Even when I use Firebug, it doesn’t help me, as I have to know the exact format that ePanel requires instead of plain CSS, which Firebug shows. I think this has to do with the class definitions that must be included. I can see exactly what needs to be changed, but if I enter that CSS into the ePanel, it is ignored.

    Example: input[type="text"]{} is ignored, but .wpcf7-text {} is accepted, which Firebug does not show.

    Thread Starter wickyd

    (@wickyd)

    Hi Mike

    That page has already helped me. That is how I was able to set it up in the first place 🙂

    My question is, how do I add the post title to the message?

    Even though you have found your solution, I offer this in the hope that it will help others:

    1. Install a WAMP stack. Currently, I use UniServer.
    2. Install WordPress.
    3. Create some content.
    4. Look for .htaccess inside the /www/ folder. It does not exist.
    5. Switch on permalinks and you will see that .htaccess has been written with the following:

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    
    # END WordPress

    6. Do not touch that code. WordPress will stop working. It’s OK, just carry on.
    7. Open UniServer\usr\local\apache2\conf\httpd.conf and search for /www” The lines you are looking for are:

    # This should be changed to whatever you set DocumentRoot to.
    
    <Directory "C:/Your-path-here/UniServer/www/">

    8. Change the line:

    Options Indexes Includes

    to:

    Options Indexes Includes FollowSymLinks MultiViews

    9. Save httpd.conf.
    10. Stop UniServer.
    11. Start UniServer and you are done.

    That is it 🙂

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