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]

1 CSS phpbb3 signature and post profile on Thu Mar 04, 2010 9:17 am

Russel


WebArtz Moderator
WebArtz 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:




thank you


_________________





No Support Via PM
http://facebook.com/russelpuge

2 Re: CSS phpbb3 signature and post profile on Fri Mar 05, 2010 6:21 am

Russel


WebArtz Moderator
WebArtz Moderator
Bump


_________________





No Support Via PM
http://facebook.com/russelpuge

3 Re: CSS phpbb3 signature and post profile on Fri Mar 05, 2010 10:53 am

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

4 Re: CSS phpbb3 signature and post profile on Fri Mar 05, 2010 1:51 pm

Russel


WebArtz Moderator
WebArtz 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.


_________________





No Support Via PM
http://facebook.com/russelpuge

5 Re: CSS phpbb3 signature and post profile on Fri Mar 05, 2010 2:14 pm

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>

6 Re: CSS phpbb3 signature and post profile on Fri Mar 05, 2010 2:59 pm

Russel


WebArtz Moderator
WebArtz 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


_________________





No Support Via PM
http://facebook.com/russelpuge

7 Re: CSS phpbb3 signature and post profile on Fri Mar 05, 2010 10:50 pm

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.

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