wickyd
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] How to add CSS to Elegant Themes ePanelHi 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.Forum: Plugins
In reply to: [Fast Secure Contact Form] How to add post info into responder emailHi 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?
Forum: Fixing WordPress
In reply to: 404 errors after trying to set up "pretty" permalinksEven 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 WordPress6. 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 Includesto:
Options Indexes Includes FollowSymLinks MultiViews9. Save httpd.conf.
10. Stop UniServer.
11. Start UniServer and you are done.That is it 🙂