cheat-master30
02-07-2009, 10:00 PM
And the award for world's most minor template modification ever goes to... But seriously, after a quick check on vBulletin.com and various other sites, I have come to the conclusion the standard profile field titles in the about me tab are just not 'stand out' enough from the actual text, so I've made a very minor modification which boldens the titles to differentiate between the profile field name and user content in a much easier way.
So first up, the original code to modify is this:
<dt class="shade" id="[whatever]">Location</dt>This is the code that's supposed to give the slight colour difference between the title and the content, but really, on a customised profile style doesn't really do it's job that well. You then go to this template:
Member Info Templates > memberinfo_profilefield
And then find this code:
<dt class="shade" id="profilefield_title_$profilefield[profilefieldid]">$profilefield[title]</dt>And add either <b> or <strong> tags where bolded in the piece of code below:
<dt class="shade" id="profilefield_title_$profilefield[profilefieldid]"><b>$profilefield[title]</b></dt>See attachments for difference between this and default.
Edit: Because of a problem where it applies only to a certain user profile for some reason (might actually be who you're logged in as or the like), here's a piece of code as released by vbplusme:
Find this piece of code in Style Manager -> All Style Options
.shade, a.shade:link, a.shade:visited { color: #777777; text-decoration: none; }
And replace with:
.shade, a.shade:link, a.shade:visited { color: #777777; text-decoration: none; font-weight: bold; }
So first up, the original code to modify is this:
<dt class="shade" id="[whatever]">Location</dt>This is the code that's supposed to give the slight colour difference between the title and the content, but really, on a customised profile style doesn't really do it's job that well. You then go to this template:
Member Info Templates > memberinfo_profilefield
And then find this code:
<dt class="shade" id="profilefield_title_$profilefield[profilefieldid]">$profilefield[title]</dt>And add either <b> or <strong> tags where bolded in the piece of code below:
<dt class="shade" id="profilefield_title_$profilefield[profilefieldid]"><b>$profilefield[title]</b></dt>See attachments for difference between this and default.
Edit: Because of a problem where it applies only to a certain user profile for some reason (might actually be who you're logged in as or the like), here's a piece of code as released by vbplusme:
Find this piece of code in Style Manager -> All Style Options
.shade, a.shade:link, a.shade:visited { color: #777777; text-decoration: none; }
And replace with:
.shade, a.shade:link, a.shade:visited { color: #777777; text-decoration: none; font-weight: bold; }