Support Forum

 
You must be logged in to post
Search Forums:


 






Wildcard Usage:
*    matches any number of characters
%    matches exactly one character

CSS not working

Information/How to
UserPost

1:14 am
September 7, 2010


Johan M

1

Hi,

I got the Formidable Form Pro plugin yesterday, and it's really working great. However, the page displays totally disregarding the CSS-settings I make. It's just one mess flowing down the page. What do I need to do to fix that?

This is the website I am working on:

http://www.khepri.se/index.php…..aler/test/

It uses Cufon, but the problem occurs even if I turn that off, so that can't be it.

I would appreciate your help ASAP. Let me know if you want the login details for the site.

With kind regards,

Johan

7:38 am
September 7, 2010


Steph

2

Do you have the box checked on your Formidable -> Settings page to "Exclude the Formidable stylesheet from ALL forms"? If not, do you have the wp_head() call in your theme header?

8:29 am
September 7, 2010


Johan M

3

Hi,

no, the box is not checked since I do wanna use the Formidable CSS.

I do not exactly know what file the wp_head() call would be in, page.php, header.php? It's not in any of those two. Is this what it would look like?

<?phpadd_action('wp_head', 'your_function');?>

Thanks for your help,

Johan

9:20 am
September 7, 2010


Steph

4

The last line right before </head> in your header.php should be:

<?php wp_head() ?>

9:21 am
September 7, 2010


Steph

5

It should be in every place where you have <head></head> tags

10:34 am
September 7, 2010


Johan M

6

Ok, I inserted that and the CSS is working fine now. The only problem is that it stops a slideshow on the frontpage from working. Not sure why that is, but the form is more important right now, so I will take that trade off.

http://www.khepri.se/index.php…..m-vialgin/

I noticed something. If I write a notification title or message that includes åäö, only an empty mail will be sent out. You might wanna look into that.

Thanks for the help!

11:02 am
September 7, 2010


Steph

7

You have some bad javascript that is causing conflicts:

<script type="text/javascript">
<!–
$(document).ready(function ()
{
$('#myform').FormValidate({
phpFile:"http://www.khepri.se/wp-content/themes/deluxe/includes/get_mail.php?email=info@khepri.se",
ajax:true
});
});
–>
</script>

Remove that and it looks like it will work.

Thanks for the heads up. I'll test out those characters.

11:13 am
September 7, 2010


Johan M

8

I have no idea what that script was for, but thank you so much! :-)

Information/How to