|
div#divundercustomization
Are you attempting to obtain the code for a profile that is utilizing customized background/font color?
If so, then this will not appear where you think it's at, instead you need to look in:
templates/base/scripts/BxBaseProfileView.php
function genProfileCSS( $ID ) $ret = ''; $query = "SELECT * FROM `ProfilesSettings` WHERE `IDMember` = '$ID'"; return $ret;
Now, this tells it to refere to the db to obtain the setting for each particular profile when it is a customized profile. Any change you make here in regards to Font color is simply going to be overwritten/erred when members adjust it in the profile customize screen and set different colors.
To obtain the colors of each unique member, you would have to go to into your db tables if you wanted to change one.
If your looking to change the default text color on the profiles, then you will need the following:
templates/tmpl_{tmpl}/css/general.css
body
Now, let's say you wish to set a different color of text on the profile page than the rest of the site has, then you will need to insert this into the profile_view.css
templates/tmpl_{tmpl}/css/profile_view.css
body
You can adjust background, font style, margins or anything else by simply adding them to this box and it will effect the main body of the page.
|