Hello,
I recently purchased a semi-customized coppermine template originally based on the waterdrop theme. I have the same theme customized for my wordpress site which works perfectly. After uploading my new coppermine theme it appears that there is either a fault in the template or the theme file (I think maybe theme?!) because my page is incomplete. There are no images, borders, colours etc. I have checked and I believe the theme was designed for coppermine 1.5 and I am upto-date with installs. I have checked that the style.css are all linked correctly and I cannot see where my error is because there actually aren't any visible. I just know that it looks like there is no theme installed.
My website is: http://www.galleries.aleshadixon.net/
What files or code can I share that will allow people to help me fix this problem?
Thanks in advance for the help.
I suggest to update those absolute paths:
<link rel="stylesheet" href="http://www.aleshadixon.net/clickandbuilds/Coppermine/MyGalleries/themes/OMM19CPG/style.css" type="text/css" />
<link rel="stylesheet" href="http://www.aleshadixon.net/clickandbuilds/AleshaDixonNet/wp-content/themes/OMM19/style.css" type="text/css" />
to valid (relative) paths. Both links return an error page.
Thankyou for your help.
Initially, I did have the relative path and it didn't work so I copied the URL direct from the FTP folder so the files are certainly stored in the place I have linked to. I have no idea why this is happening. Could it be a chmod problem? I'm clutching at straws.
I have changed back to a relative path I believe, with the same result. The page looks unchanged.
<link rel="stylesheet" href="/style.css" type="text/css" />
<link rel="stylesheet" ref="/AleshaDixonNet/wp-content/themes/OMM19/style.css" type="text/css" />
If you try opening this in a web browser, it says that their site is down for maintenance.
http://www.aleshadixon.net/clickandbuilds/AleshaDixonNet/wp-content/themes/OMM19/style.css (http://www.aleshadixon.net/clickandbuilds/AleshaDixonNet/wp-content/themes/OMM19/style.css)
You're getting no CSS from them.
You have your wordpress website under maintenance http://www.aleshadixon.net/ (http://www.aleshadixon.net/).
Maybe that restricts access to your style.css. Try to put your site on line and the see what happends.
Also I notice that template.html from your coppermine theme loads style.css:
<link rel="stylesheet" href="/style.css" type="text/css" />
It was included in the theme?
Because your site in under maintenance http://www.aleshadixon.net/clickandbuilds/AleshaDixonNet/wp-content/themes/OMM19/style.css contains this code:
<!DOCTYPE html>
<html>
<head>
<title>Maintenance mode</title>
<meta name="author" content="Designmodo" />
<meta name="description" content="Alesha Dixon Net - Your Official Alesha Fan Source" />
<meta name="keywords" content="Maintenance Mode" />
<meta name="robots" content="index, follow" />
<link rel="stylesheet" href="http://www.aleshadixon.net/wp-content/plugins/wp-maintenance-mode/assets/css/style.css">
</head>
<body class="">
<div class="wrap">
<h1>Maintenance mode</h1> <h2><p>Sorry for the inconvenience.<br />Our website is currently undergoing scheduled maintenance.<br />Thank you for your understanding.</p></h2>
</div>
<script type='text/javascript'>
var wpmm_vars = {"ajax_url": "http://www.aleshadixon.net/wp-admin/admin-ajax.php"};
</script>
<script src="http://www.aleshadixon.net/wp-includes/js/jquery/jquery.js"></script>
<script src="http://www.aleshadixon.net/wp-content/plugins/wp-maintenance-mode/assets/js/scripts.js"></script>
</body>
</html>
Attachment with the CSS files that load on your gallery page.