Advanced search  

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]

Pages: 1 2 3 [4]   Go Down

Author Topic: ChaoticSoul - Theme for CPG.1.4x and WordPress 2.x  (Read 93765 times)

0 Members and 1 Guest are viewing this topic.

Gizmo

  • Dev Team member
  • Coppermine addict
  • ****
  • Offline Offline
  • Gender: Male
  • Posts: 1015
    • BullsEye Photos
Re: ChaoticSoul - Theme for CPG.1.4x and WordPress 2.x
« Reply #60 on: March 28, 2009, 04:17:49 pm »

I don't know what you mean by buggy but your code is buggy so you'll need to make the changes like below. In the future include a link to your gallery or include images or more information. Buggy doesn't really tell us much.

If you want to make both images have the same hyperlink:

In template.html:
change:
Code: [Select]
<div id="headerimg" class="clearfix">
<div class="image_header bkgleft"> </div>
<div class="image_header bkgright"> </div>
</div>

to:
Code: [Select]
<a href="http://mygallery/stuff/"><div id="headerimg" class="clearfix">
<div class="image_header bkgleft"> </div>
<div class="image_header bkgright"> </div>
</div></a>


In style.css:
change:
Code: [Select]
#wrapper, #headerimg {
width: 860px;
}

to:
Code: [Select]
#wrapper, #headerimg {
width: 860px;
cursor:pointer;
}
Logged
Did you read the manual first???? Taking 2 minutes to backup your files can save you hours of wondering what you screwed up.
Billy Bullock - BullsEyePhotos Blog of Indecision

net

  • Coppermine regular visitor
  • **
  • Offline Offline
  • Posts: 88
Re: ChaoticSoul - Theme for CPG.1.4x and WordPress 2.x
« Reply #61 on: March 28, 2009, 05:24:56 pm »

I'm sorry i forgot to include a link! You did solve the issue though, you're the man gizmo!

Thanks!
Logged

pedaa

  • Coppermine newbie
  • Offline Offline
  • Posts: 1
Re: ChaoticSoul - Theme for CPG.1.4x and WordPress 2.x
« Reply #62 on: May 04, 2009, 11:03:20 am »

Hi!

I have a problem with "ChaoticSoul".
The template is missing.

What should I do to activate ChaoticSoul?

pedaa
Logged

Joachim Müller

  • Dev Team member
  • Coppermine addict
  • ****
  • Offline Offline
  • Gender: Male
  • Posts: 47843
  • aka "GauGau"
    • gaugau.de
Re: ChaoticSoul - Theme for CPG.1.4x and WordPress 2.x
« Reply #63 on: May 04, 2009, 11:29:52 pm »

Your screenshot is from Wordpress, which we do not support. We only provide support for coppermine.
Logged

Go7enKs

  • Coppermine newbie
  • Offline Offline
  • Posts: 1
Re: ChaoticSoul - Theme for CPG.1.4x and WordPress 2.x
« Reply #64 on: August 04, 2009, 09:59:01 pm »

Hey Guys I'm just starting to get acquainted with Coppermine and this theme.

I have a couple of questions, is there a way to disable the white frame around the pics?

And where do I change the settings for the pop-up when u click on a pic? (right now when I click on a picture it doesn't open a new window with the picture in its real size).

If it might help, this is the website I'm talking about: www.estrella-photos.com/Coppermine
Logged

Joachim Müller

  • Dev Team member
  • Coppermine addict
  • ****
  • Offline Offline
  • Gender: Male
  • Posts: 47843
  • aka "GauGau"
    • gaugau.de
Logged

Gizmo

  • Dev Team member
  • Coppermine addict
  • ****
  • Offline Offline
  • Gender: Male
  • Posts: 1015
    • BullsEye Photos
Re: ChaoticSoul - Theme for CPG.1.4x and WordPress 2.x
« Reply #66 on: August 05, 2009, 12:00:17 pm »

@Go7enKs ,

You can remove the frame from the Intermediate image by removing the following code from the theme.php file
Code: [Select]
// HTML template for intermediate image display
$template_display_media = <<<EOT
   <tr>
     <td align="center" class="display_media" nowrap="nowrap">
       <table cellspacing="0" cellpadding="0" class="imageborder">
         <tr>                                                                             
           <td><img src="./themes/chaoticsoul/images/frame/UL.gif" ></td>
           <td background="./themes/chaoticsoul/images/frame/Top.gif"></td>
           <td><img src="./themes/chaoticsoul/images/frame/UR.gif" ></td>
</tr>
         <tr>
           <td background="./themes/chaoticsoul/images/frame/LS.gif"></td>         
           <td>                       
             {IMAGE}
           </td>
           <td background="./themes/chaoticsoul/images/frame/RS.gif"></td>               
         </tr>
         <tr>
           <td><img src="./themes/chaoticsoul/images/frame/LL.gif"></td>
           <td background="./themes/chaoticsoul/images/frame/Bottom.gif"></td>
           <td><img src="./themes/chaoticsoul/images/frame/LR.gif"></td>
         </tr>
       </table>
     </td>
   </tr>
                <tr><td>
                                                <table width="100%" cellspacing="2" cellpadding="0" class="tableb">
                                <tr>
                                        <td align="center" class="admin_menu">
                                                {ADMIN_MENU}
                                        </td>
                                </tr>
                        </table>





<!-- BEGIN img_desc -->
                        <table cellpadding="0" cellspacing="0" class="tableb" width="100%">
<!-- BEGIN title -->
                                <tr>
                                        <td class="tableb"><center><b>
                                                {TITLE}
                                        </b></center></td>
                                </tr>
<!-- END title -->
<!-- BEGIN caption -->
                                <tr>
                                        <td class="tableb"><center>
                                                {CAPTION}
                                        </center></td>
                                </tr>
<!-- END caption -->
                        </table>
<!-- END img_desc -->
                </td>
        </tr>

EOT;

This will leave a small white border around the Intermediate image which you can remove by editing the style.css file.
find:
Code: [Select]
.imageborder {
        border: 0px solid #aaaaaa;
        background-color: #FFFFFF;
        margin-top: 20px;
        margin-bottom: 20px;
        margin-right: 2px;
        margin-left: 2px;
}

and remove
Code: [Select]
background-color: #FFFFFF;
As for the popup image, are you sure your fullsize images are there? What changes to the theme have you made?
Logged
Did you read the manual first???? Taking 2 minutes to backup your files can save you hours of wondering what you screwed up.
Billy Bullock - BullsEyePhotos Blog of Indecision

Joachim Müller

  • Dev Team member
  • Coppermine addict
  • ****
  • Offline Offline
  • Gender: Male
  • Posts: 47843
  • aka "GauGau"
    • gaugau.de
Re: ChaoticSoul - Theme for CPG.1.4x and WordPress 2.x
« Reply #67 on: August 05, 2009, 03:43:26 pm »

I have a couple of questions
...but we have a strict "one question per thread" policy that you agreed to respect when signing up. Particularly on this announcement thread you're not allowed to ask for support on unrelated things, and especially not for your individual troubles that are unrelated to this particular theme.

And where do I change the settings for the pop-up when u click on a pic? (right now when I click on a picture it doesn't open a new window with the picture in its real size).
Happens because there's something fishy on your server: the JavaScript file that will fire the pop-up is there, but can not be access: when trying to access http://www.estrella-photos.com/Coppermine/scripts.js I get a 403 forbidden error. Fix that and your pop ups will work. Not related to coppermine in itself, but webserver setup. If you can not figure that out on your own, ask your webhost for support. Doesn't belong into this thread though and you shouldn't have started that discussion here, so do not reply to this thread!
Logged

TaylorDesigns

  • Coppermine newbie
  • Offline Offline
  • Posts: 2
Re: ChaoticSoul - Theme for CPG.1.4x and WordPress 2.x
« Reply #68 on: September 16, 2010, 09:30:53 pm »

I am trying to implement the style.css page into my website and everything is working fine except when I try to type in the main content to the left of all the menus in the side bar, it countinues through to the right side of the page or it automatically creates a horizontal scroll bar in the main content frame instead of automatically wrapping the text to the next line. I have double checked everything and can't figure out what I am doing wrong. Does anybody have a fix for this? Any help would be greatly appreciated. Thanks........
Logged

phill104

  • Administrator
  • Coppermine addict
  • *****
  • Country: gb
  • Offline Offline
  • Gender: Male
  • Posts: 4885
    • Windsurf.me
Re: ChaoticSoul - Theme for CPG.1.4x and WordPress 2.x
« Reply #69 on: September 16, 2010, 11:27:44 pm »

A link would help as your explanation is very hard to follow.
Logged
It is a mistake to think you can solve any major problems just with potatoes.

TaylorDesigns

  • Coppermine newbie
  • Offline Offline
  • Posts: 2
Re: ChaoticSoul - Theme for CPG.1.4x and WordPress 2.x
« Reply #70 on: September 16, 2010, 11:41:42 pm »

I havn't ftp'd anything yet....
Logged

saleks

  • Coppermine newbie
  • Offline Offline
  • Posts: 6
Re: ChaoticSoul - Theme for CPG.1.4x and WordPress 2.x
« Reply #71 on: December 17, 2010, 08:47:58 pm »

It's great theme, but I have problems with some plugins. I try Slider, then iScroll and Slideshowit, but have not to see pictures on homepage. Slider works better. It works for some days and then is empty. When change theme thouse plugins work, but when rollback Chaoticsoul, they didn't. Any ideas?
Logged
Pages: 1 2 3 [4]   Go Up
 

Page created in 0.03 seconds with 23 queries.