I have images in my page template and style sheet that disappear on the login page and create content pages. I have my theme as system default and have admin set to system default. The images are in the theme folder.

Comments

Cayhn’s picture

Some more information would be a good idea, have you added some code in the page.tpl.php file? Please add it here then.

debimck’s picture

  	<div id="logo"><a href="http://deadpolarbear.org"><img src="images/spacer.gif" width="300px" height="200px"></a></div>
	<div id="shop"><a href="/shop"><img src="images/spacer.gif" width="300px" height="200px"></a></div>
	<div id="header1">
	<a href="/about" class="about">&nbsp;</a>
	<a href="/contact" class="contact">&nbsp;</a>
	<a href="/forum" class="forums">&nbsp;</a>
	<a href="/shop" class="shop">&nbsp;</a>
	
	
	</div>	
	<div id="header2"><?php print $header2 ?></div>
	<div id="breadcrumb"><?php print $breadcrumb ?></div> 
Cayhn’s picture

Okey I see, I think the problem here is the img src. Try using this(depending on where your theme is I will add two paths.

1. Your theme is in sites/all/themename/images then you should use this:

<div id="logo"><a href="http://deadpolarbear.org"><img src="http://deadpolarbear.org/sites/all/themes/INSERTthemeNAMEhere/images/spacer.gif" width="300px" height="200px"></a></div>
<div id="shop"><a href="/shop"><img src="http://deadpolarbear.org/sites/all/themes/INSERTthemeNAMEhere/images/spacer.gif" width="300px" height="200px"></a></div>

2. Your theme is in root/themes then you should use this:

<div id="logo"><a href="http://deadpolarbear.org"><img src="http://deadpolarbear.org/themes/INSERTthemeNAMEhere/images/spacer.gif" width="300px" height="200px"></a></div>
<div id="shop"><a href="/shop"><img src="http://deadpolarbear.org/themes/INSERTthemeNAMEhere/images/spacer.gif" width="300px" height="200px"></a></div>

I hope that will do it for you!