Confused?!

Upload an alternative style, just to see if it helps. If it does, then I agree with others that it looks like a css problem.
 
My style.css is here:

/public_html/wp-content/plugins/buddypress
 
You have to place it in this directory:

/public_html/wp-content/plugins/buddypress/bp-themes/bp-default/

for it to work.
 
Nope, from what I see, you haven't added the css file to that directory. Could you have a look once more, please?
 
Hm, the only other thing I can think of is the permissions to that folder. I tried to access that image (okok.png) but it didn't work, so its definitely some permissions issue. Have a look at the folder's permissions. I think, but not 100% sure, the perms should be 777.
 
Permissions wouldn't have anything to do with it. The error says file not found. If it was a permissions issue it would be a 403 error.

Are you sure it is in the right place? In your public_html folder, do you have a directory called "home"? It seems to be trying to find the file at the following path - http://www.zavle.com/home/wp-content/pl ... /style.css (notice the /home/

Your screen-shot did not show /home/
 
Fowler said:
Permissions wouldn't have anything to do with it. The error says file not found. If it was a permissions issue it would be a 403 error.

Are you sure it is in the right place? In your public_html folder, do you have a directory called "home"? It seems to be trying to find the file at the following path - http://www.zavle.com/home/wp-content/pl ... /style.css (notice the /home/

Your screen-shot did not show /home/

Yeah, that's true. Using this link: http://www.zavle.com/wp-content/plugins ... /style.css you can see the css is there, so Midnight, go back to your HTML and remove the "home" from the css link.
 
In the template where it tries to load the CSS. It will be near the top of probably the header template (i haven't used Wordpress for month and months so i don't know the exact file).
 
Look for:
Code:
<link rel="stylesheet" href="http://www.zavle.com/home/wp-content/plugins/buddypress/bp-themes/bp-default/style.css" type="text/css" media="screen" />

Change it to:
Code:
<link rel="stylesheet" href="http://www.zavle.com/wp-content/plugins/buddypress/bp-themes/bp-default/style.css" type="text/css" media="screen" />
 
<link rel="stylesheet" href="http://www.zavle.com/home/wp-content/plugins/buddypress/bp-themes/bp-default/style.css" type="text/css" media="screen" />

Is not in /public_html/wp-content/plugins/buddypress/bp-themes/bp-default/ - Index.php
 
Back
Top Bottom