PDA

View Full Version : Session Street: Sunset


Tequila
01-22-2011, 09:59 PM
Name: Sunset
Images: Yes (background)
Function Edit: Required
Can be modified for free: Yes, you can add in a small site logo above the navigation box, please ask for details if you need help.
Download sunset.zip (http://www.4shared.com/file/yVh4afoj/sunset.html) now.
http://i51.tinypic.com/v79tuw.jpg (http://i51.tinypic.com/2e3zy9e.jpg)
Click for larger view.

RoconzaArt
01-22-2011, 10:10 PM
You should add a screenshot or link to the demo site so people know what it looks like.

Tequila
01-22-2011, 10:10 PM
You should add a screenshot or link to the demo site so people know what it looks like.

I'm reuploading the screenshot as an attachment. :)

fadillzzz
01-22-2011, 10:52 PM
I think bigger screenshot would be nice

Tequila
01-23-2011, 09:19 AM
I think bigger screenshot would be nice

I uploaded a larger screen and better thumbnail. Please click to see larger.

RoconzaArt
01-23-2011, 09:26 AM
Not really I tried it and got a 232px × 280px picture.

Tequila
01-23-2011, 09:28 AM
Try it again, I just changed it. :)

fadillzzz
01-23-2011, 10:00 AM
Only part of the image shows up here (did you crop it?)...
but if you click the image, it will take you to the full size one

Nice theme! I love it :smile:

Tequila
01-23-2011, 10:09 AM
Only part of the image shows up here (did you crop it?)...
but if you click the image, it will take you to the full size one

Nice theme! I love it :smile:

Kind of... :ohnoes: I like my programs. :D

Hall of Famer
01-23-2011, 11:34 AM
Well actually I'd like to add Enddayne's new theme to the next release, it looks so nice. ^^ Also it would be a good way to test Arianna's change style script. XD

Tequila
01-23-2011, 07:12 PM
Go ahead and add them in. :)

Just need to add the following somewhere in the CSS file:

table {
width:100%;
border:0px;
}

RoconzaArt
01-23-2011, 10:54 PM
I think I found a error. I installed the theme and add the changes to the functions only to get this in my trade/redeem page.

Trade.php
Fatal error: Call to undefined function getcash() in /home/a8858065/public_html/adoptables/trade.php on line 87

Redeem.php
Fatal error: Call to undefined function getcash() in /home/a8858065/public_html/adoptables/redeem.php on line 79

I didn't do any thing to the script but install the theme and change the functions.php like the install said. In fact after removing your functions edit the trade page returned back to normal.

Hall of Famer
01-23-2011, 10:59 PM
Well it appears that the function getcash() is missing? Add the lines below somewhere in your function.php file:


function getcash($loggedinname){

include("config.php");

//First we see if we are logged in or not

$loginstatus = logincheck();
$isloggedin = $loginstatus[loginstatus];
$loggedinname = $loginstatus[username];

$query = "SELECT * FROM ".$prefix."users WHERE username = '$loggedinname'";
$result = @mysql_query($query);
$num = @mysql_numrows($result);

//Loop out code
$i=0;
while ($i < 1) {

$mycash=@mysql_result($result,$i,"dollar");

$i++;
}

return $mycash;

}

RoconzaArt
01-23-2011, 11:17 PM
Yep that was it right there.

Hall of Famer
01-23-2011, 11:19 PM
Did it work when you add getcash() to function.php, or did it still give you the same error?

RoconzaArt
01-23-2011, 11:53 PM
Yes it did, thank you very much.

Hall of Famer
01-24-2011, 12:03 AM
You are very welcome, guess I should tell Enddayne to use upgraded version of Mysidia Adoptables to develop her themes. XD