Alk said:
Hey,
I've got another one now
http://www.bloodshotmusicforums.com
Do you see that the images from the .tar import on the forum skin are not being imported to the portal?
The wrapper for the skin is standard IPB default.
Do you know what's wrong?
Here is what the import looks like on your portal...
background-image:url(http://www.bloodshotmusicforums.com/forum/"style_images/CultIdol-027/med_red_bar.gif");
Notice the quotation mark is out of place. It should look like this...
background-image:url("http://www.bloodshotmusicforums.com/forum/style_images/CultIdol-027/med_red_bar.gif");
The issue is that IPB stylesheets do not usually have quotation marks. Usually they look like this...
background-image:url(style_images/CultIdol-027/med_red_bar.gif);
Yours looks something like this...
background-image:url("style_images/CultIdol-027/med_red_bar.gif");
You have 2 choices of how to fix this.
1. Edit the forum stylesheets so that they do not use quotes in the background-image url attributes.
2. If you are not using multiple forum skins then you can simply edit mkportal/include/IPB13/ipb13_board_functions.php
FIND:
$css = str_replace( "url(", "url(".$mklib->siteurl."/".$mklib->forumpath."/", $css);
REPLACE WITH:
//$css = str_replace( "url(", "url(".$mklib->siteurl."/".$mklib->forumpath."/", $css);
$css = str_replace( "url("", "url("".$mklib->siteurl."/".$mklib->forumpath."/", $css);