I need help with profile backgroung image

I need help with profile backgroung image

 

where can I find this code

 

body {
background-image:url(http://mysitename.com/media/images/profile_bg/4_bg_473.gif);
background-repeat:repeat;
}

 

I want to change this

background-repeat:repeat;

 

To this

background-repeat:repeat-x;

 

whem members upload a background pic it repeat all over,
I just want it to repeat across

 

I don't want the backgroung image to repeat down I just want it to repeat across from the left to the right

Quote · 29 Jul 2009

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;
 }

Quote · 30 Jul 2009

Thank you I'll try thatSmile

Quote · 7 Aug 2009

it work 100% thank you

Quote · 24 Aug 2009
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.