werneravr
Forum Replies Created
-
Ah, sorry I missed that in the parameters list. Massively appreciated.
Forum: Plugins
In reply to: [Gravity Forms Directory] Editing the formConsider wrapping the shortcode in a div (if your theme already has styling).
HTML/page/post:
<div style =”formshizzle”>[directory form=”1″]</div>CSS:
.formy button, input, select, textarea {
width: 30%;
}.formy label {
float: left;
width: 9em;
}You can toy with the width (px, em or %), depending on where you’re using it.
Forum: Plugins
In reply to: [Easy Testimonial Manager] Change slider speed?Thanks so much! Really looking forward to the release. This is hands down the best looking (and simplest) of all the testimonial widgets out there.
Cheers!
Forum: Reviews
In reply to: [Font Awesome] Plugin needs updatingOK, here’s what I meant:
Download the plugin and add the following code:
<i class="icon-pencil"></i>It should show a pencil. This is all good, but it is one of the first (older) fonts they added. Now try to add this:
<i class="icon-wheelchair"></i>It doesn’t show anything.
Font Awesome continuously adds more icons, but the plugin doesn’t stay up to date with the latest version.
What you should do to enable all icons on your WordPress site:
- Go to Appearance > Editor > header.php
- Add the line:
<link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet"> - Add any icons (as from their latest cheat sheet)
Hope this helped? Cheers!