how to manipulation or change font to bold in data message?
The forum of the forums :: Support forum :: Forum Design & Appearance Help :: Design & Appearance Problems Archives
Page 1 of 1 • Share •
how to manipulation or change font to bold in data message?
Hello guys, i want to ask 
how to manipulation or change font to bold or italic or strike in data message (only my ID/Account)?
example:
i need change text only (in dreams) to bold or italic or strike ??

maybe this topic can be solved with css,
i think
my forum phpBB2
please someone help me, thanks

how to manipulation or change font to bold or italic or strike in data message (only my ID/Account)?
example:
i need change text only (in dreams) to bold or italic or strike ??

maybe this topic can be solved with css,
i think

my forum phpBB2
please someone help me, thanks

sasukekun- Forumember
- Posts : 253
Reputation : 6
Language : English
Re: how to manipulation or change font to bold in data message?
Hi sasukekun,
I am not sure if this would be possible especially for a specific user. Unless we are able to use HTML in the profile fields, making it for 1 specific user is the issue.
So far the most I know(for phpbb2) would be using some jquery, but that is only for the label; not the data. I am not sure how to manipulate the data, but for the label this is what I've used:
I am not sure if this would be possible especially for a specific user. Unless we are able to use HTML in the profile fields, making it for 1 specific user is the issue.
So far the most I know(for phpbb2) would be using some jquery, but that is only for the label; not the data. I am not sure how to manipulate the data, but for the label this is what I've used:
- Code:
$(function() {
$('span.label:contains("Location")').css('font-weight', 'bold');
});
Re: how to manipulation or change font to bold in data message?
hi thanks for reply my topic 
i done try, but doesn't work XD
if I think it might be solved with CSS.
because first, all it takes is my ID number.
because I want to change my ID only.
and my ID in the forums, is = u1

i think, and correction me if i'm wrong
thanks,,

i done try, but doesn't work XD
if I think it might be solved with CSS.
because first, all it takes is my ID number.
because I want to change my ID only.
and my ID in the forums, is = u1

i think, and correction me if i'm wrong

thanks,,

sasukekun- Forumember
- Posts : 253
Reputation : 6
Language : English
Re: how to manipulation or change font to bold in data message?
- Code:
.postprofile a[href="/u1"] label{
font-weight:bold;
}
Re: how to manipulation or change font to bold in data message?
Thank you for reminding me of that sasukekun.
I cannot make just one type of data bold unfortunately, but I have a solution I hope will suffice for you for now.
First is the script to make only your profile have bold contents:
Administration Panel > Modules > HTML & JAVASCRIPT > Javascript codes management.
Create a new script, name what you wish, tick in all pages, then paste the code below and save.
Display > Pictures and colors > Colors > CSS stylesheet
and paste this code to keep the span labels at normal font-weight:

Examples:
If you want to add more style just add more css to the code like this:
I cannot make just one type of data bold unfortunately, but I have a solution I hope will suffice for you for now.
First is the script to make only your profile have bold contents:
Administration Panel > Modules > HTML & JAVASCRIPT > Javascript codes management.
Create a new script, name what you wish, tick in all pages, then paste the code below and save.
- Code:
$(function() {
$('.postdetails.poster-profile:has(a[href="/u1"])').css('font-weight', 'bold');
});
Display > Pictures and colors > Colors > CSS stylesheet
and paste this code to keep the span labels at normal font-weight:
- Code:
.postdetails.poster-profile span.label{
font-weight:normal;
}

Examples:
If you want to add more style just add more css to the code like this:
- Code:
$(function() {
$('.postdetails.poster-profile:has(a[href="/u1"])').css('font-weight', 'bold').css('color', '#f00').css('text-shadow', '0px 0px 6px #f00');
});
- Code:
.postdetails.poster-profile span.label{
font-weight:normal;
color:#808080;
text-shadow:none;
}
Re: how to manipulation or change font to bold in data message?
yeah, its work ^^SethC1995 wrote:Thank you for reminding me of that sasukekun.
I cannot make just one type of data bold unfortunately, but I have a solution I hope will suffice for you for now.
First is the script to make only your profile have bold contents:
Administration Panel > Modules > HTML & JAVASCRIPT > Javascript codes management.
Create a new script, name what you wish, tick in all pages, then paste the code below and save.Now navigate to..
- Code:
$(function() {
$('.postdetails.poster-profile:has(a[href="/u1"])').css('font-weight', 'bold');
});
Display > Pictures and colors > Colors > CSS stylesheet
and paste this code to keep the span labels at normal font-weight:Submit, and it should appear as this:
- Code:
.postdetails.poster-profile span.label{
font-weight:normal;
}
Examples:
If you want to add more style just add more css to the code like this:Just remember the more properties you add the more properties you have to disallow from the labels by using the CSS I've provided.
- Code:
$(function() {
$('.postdetails.poster-profile:has(a[href="/u1"])').css('font-weight', 'bold').css('color', '#f00').css('text-shadow', '0px 0px 6px #f00');
});
- Code:
.postdetails.poster-profile span.label{
font-weight:normal;
color:#808080;
text-shadow:none;
}
now im understand

thanks SethC1995, Your answer is very helpful

sasukekun- Forumember
- Posts : 253
Reputation : 6
Language : English
Sir Chivas™- Support Moderator
-
Posts : 6810
Reputation : 433
Language : EN, FR, ES
Location : || CSS || HTML || Graphics Designs || Support ||
sasukekun- Forumember
- Posts : 253
Reputation : 6
Language : English
The forum of the forums :: Support forum :: Forum Design & Appearance Help :: Design & Appearance Problems Archives
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum