Well, I looked under the couch, behind the chair, on the table, in the fish tank, by the umbrella stand and even inside the shower stall, but I just can't seem to see it.
Hmmm... I'm thinking that we just might want to....
how about this... That line of code on a base install is found at....
templates/tmpl_{tmpl}/css/general.css around line 7... That is unless OKWeb and HoustonLively moved it again...
But, I'm not sure that is going to do much good for you...
See, cause that is for the base install/template, when the member uploads an image to their profile we have to figure out where that goes...
Now, I'm off to look again...
Has anyone found the door to my garage yet?
Oh well... Maybe I'll find the door in here...
templates/base/scripts/BxBaseProfileView.php
Nah... It'd never be somewhere like this would it...
After all, that means I'd have to find a section like this....
function genProfileCSS( $ID )
{
global $site;
$ret = '';
$query = "SELECT * FROM `ProfilesSettings` WHERE `IDMember` = '$ID'";
$arr = db_arr( $query );
if ( $arr['IDMember'] )
$ret = "<style type=\"text/css\">
body
{
background-image: url( {$site['profileBackground']}{$arr['BackgroundFilename']});
background-color: {$arr['BackgroundColor']};
background-repeat:repeat; <====(Lookie Lookie Here)
}
div#right_column_content
{
color: {$arr['FontColor']};
font-size: {$arr['FontSize']}px;
font-family: {$arr['FontFamily']};
}
div#divUnderCustomization
{
color: {$arr['FontColor']};
font-size: {$arr['FontSize']}px;
font-family: {$arr['FontFamily']};
}
</style>";
return $ret;
}