Customizing water_drop theme, I think I messed up! Customizing water_drop theme, I think I messed up!
 

News:

cpg1.5.48 Security release - upgrade mandatory!
The Coppermine development team is releasing a security update for Coppermine in order to counter a recently discovered vulnerability. It is important that all users who run version cpg1.5.46 or older update to this latest version as soon as possible.
[more]

Main Menu

Customizing water_drop theme, I think I messed up!

Started by For3v3r, August 06, 2006, 07:46:53 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

For3v3r

I'm trying to edit the water_drop theme with a layout I made. But when I preview it none of the images (of my layout) are showing! Not only that, I think I screwed up badly on coding, lol. I've been trying for a while to see how I can fix this on my own ... but no luck. Here's my code (I edit the template.html file):

<div align="center">
<table width="719" height="306" border="0" cellpadding="0" cellspacing="0">
<tr>
<td colspan="3">
<img src="images/top_pic.jpg" width="719" height="274" alt=""></td>
</tr>
<tr>
<td colspan="3">
<img src="images/bar.jpg" width="719" height="14" alt=""></td>
</tr>
<tr>
<td background="images/left_bg.jpg" width="1" height="18">
</td>
<td background="images/bg.jpg" width="717" height="18" valign="top">
<tr>

            <td width="100%" align="center">
         
              {SYS_MENU}<br />{SUB_MENU}
            </td>
          </tr>
       
       <td>
   
          <tr>
            <td valign="top">
              {ADMIN_MENU}
              {GALLERY}
              <div style="text-align:center;">
              <div>
  {LANGUAGE_SELECT_FLAGS}<br />
  {THEME_SELECT_LIST}{LANGUAGE_SELECT_LIST}
  </div>
  </div>
            </td>
          </tr>
        </table>
    </td>
</tr>
</table>
  {CUSTOM_FOOTER}
</td>
<td background="images/right_bg.jpg" width="1" height="18">
</td>
</tr>
</table>
</div>


Here's what my gallery looks like Click to view gallery. It should look something like this here ... can I get some help, please? Thanks :)

Sami

#1
Cause you don't have them under images folder !
you should copy them to
photo/images

Update:
The correct place for image would be
photos/themes/water_drop/images/
‍I don't answer to PM with support question
Please post your issue to related board

For3v3r

Thanks! I had put it in the images folder under "water_drop" ... forgot *oops* lol. But yeah, thanks it's showing!

But I can't figure out where in my coding I screwed up. The backgrounds is wrong and it doesn't "flow" with the content. Get what I'm trying to say? Well, I'm still trying to figure it out ;) Thanks for your help though :)

Sami

here is some other image that you didn't copy there:
The requested URL /photos/themes/water_drop/images/bar.jpg was not found on this server.
The requested URL /photos/themes/water_drop/images/left_bg.jpg was not found on this server.
The requested URL /photos/themes/water_drop/images/bg.jpg was not found on this server.

wich background do you mean ?
‍I don't answer to PM with support question
Please post your issue to related board

For3v3r

Yeah, I did. I moved them to the "images" folder  though see

forevermario.com/photos/images/bar.jpg
forevermario.com/photos/images/left_bg.jpg
forevermario.com/photos/images/bg.jpg

That url works ;) I'm talking about the main "bg" the "bg.jpg".  Well actually the left and right bg's are suppose to be like "borders" and go along with the main "bg". If you right click on the "Dark red" and click "view image" it'll say "left_bg" ... the light-ish red is the main bg. It's suppose to look like the sample I showed you (link above).

I tried editing the code again, here's a little change that I did:

<table width="719" height="306" border="0" cellpadding="0" cellspacing="0">
<tr>
<td colspan="3">
<img src="images/top_pic.jpg" width="719" height="274" alt=""></td>
</tr>
<tr>
<td colspan="3">
<img src="images/bar.jpg" width="719" height="14" alt=""></td>
</tr>
<tr>
<td background="images/left_bg.jpg" width="1" height="18"></td>
</tr><tr>

<td background="images/bg.jpg" width="717" height="18" valign="top">
<tr>

            <td align="center">


Everything else is pretty much the same. I'm kinda clueless on what else to do ...  ???

Sami

- you need to have those image under images folder within water_drop folder
- if you want to repeat an image for background in specific way ,then you need to create a style somethig like this:

<td style="background-image:url(images/bg.jpg); background:repeat-x">

this will repeat bg.jpg horizontal, if you want to repeat it vertical then use repeat-y instead
‍I don't answer to PM with support question
Please post your issue to related board