WebArtz - The Web Design Forum
Welcome to WebArtz, Guest!

WebArtz is a nice place for discussions related to web designing and coding. We help our members to code their own website templates with HTML and CSS. We give them advice on various issues.

To know more about WebArtz Forum, visit the About Us page.

At the moment, you are viewing the forum as a guest. As a guest you can't make post and participate in discussions. You need to register and become a member of the forum. Click the register link below and become a part of this forum.

Thank You

WebArtz - The Web Design Forum
Welcome to WebArtz, Guest!

WebArtz is a nice place for discussions related to web designing and coding. We help our members to code their own website templates with HTML and CSS. We give them advice on various issues.

To know more about WebArtz Forum, visit the About Us page.

At the moment, you are viewing the forum as a guest. As a guest you can't make post and participate in discussions. You need to register and become a member of the forum. Click the register link below and become a part of this forum.

Thank You


You are not connected. Please login or register

View previous topic View next topic Go down  Message [Page 1 of 1]

1CSS phpbb3 signature and post profile Empty CSS phpbb3 signature and post profile Thu Mar 04, 2010 10:47 am

Russel

Russel
Moderator
Moderator
1. i want to make the height of my signature to 400px. Is it possible to have that? it will automatically be cut.

2. how to change the font size and font face of the profile inside the post body.

screenshot:

CSS phpbb3 signature and post profile 33decmd


thank you

https://www.twitter.com/russeltubo

Russel

Russel
Moderator
Moderator
Bump

https://www.twitter.com/russeltubo

3CSS phpbb3 signature and post profile Empty Re: CSS phpbb3 signature and post profile Fri Mar 05, 2010 12:23 pm

ankillien

ankillien
Administrator
Administrator
Sorry for the late answer.

Increase signature height...

Code:
.signature_div {
height : 400px;
}

Profile font size...

Code:
.postprofile dd {
font-size : 15px;
}

Russel

Russel
Moderator
Moderator
the number one code is not working

and in number two, it is working but when i put the code, the rank name is affected.

https://www.twitter.com/russeltubo

ankillien

ankillien
Administrator
Administrator
1) What exactly you want to achieve with code 1? You want to increase the height of signature space, right?

2) It will affect the rank name too. You can fix it by using this code in rank title field in the admin cp...

Code:
<font size="12px">Administrator</font>

Russel

Russel
Moderator
Moderator
nevermind the first question.

anyway, on the second question.

i have done it already. but then, still the ranks are affected. why/
what should i do

https://www.twitter.com/russeltubo

7CSS phpbb3 signature and post profile Empty Re: CSS phpbb3 signature and post profile Sat Mar 06, 2010 12:20 am

ankillien

ankillien
Administrator
Administrator
You can fix it with a trick.
Set the rank titles between this tags..

Code:
<span class="rank">Rank Title</span>

Now add this to your CSS...

Code:
/*profile text size*/
.postprofile dd {
font-size : 15px;
}
/*rank text size*/
.postprofile dd .rank , .postprofile dd b {
font-size : 10px;
}

You can set different font size for both rank and other profile fields now.

Sponsored content


View previous topic View next topic Back to top  Message [Page 1 of 1]

Permissions in this forum:
You cannot reply to topics in this forum