Changing Information screen and Search box codes
Page 1 of 1 • Share •
Changing Information screen and Search box codes
Hello,
I was hoping someone could tell me how to

and for some reason my "Search box" has to much height
where do i go in the CSS to correct these problems? I know how to do it, just need to be pointed in the right area.
thanks in advance
I was hoping someone could tell me how to

and for some reason my "Search box" has to much height
where do i go in the CSS to correct these problems? I know how to do it, just need to be pointed in the right area.
thanks in advance

Last edited by RAtSoaDM on August 7th 2008, 7:11 am; edited 2 times in total

RAtSoaDM- Forumotion Member
-

Posts: 232
Age: 27
Language: English
Location: Tustin, CA.
Country:
Join date: 2007-08-31
Re: Changing Information screen and Search box codes
Hi, I'm sorry , your title being non explicit and therefore not facilitating research via the search option, I can not answer (nor should other member, please ) until you change your topic title for an explicit one, more related to your problem/question.
Re: Changing Information screen and Search box codes
True! fixed it. 

RAtSoaDM- Forumotion Member
-

Posts: 232
Age: 27
Language: English
Location: Tustin, CA.
Country:
Join date: 2007-08-31
Re: Changing Information screen and Search box codes
CSS questions always require the info of your forum version - or even better, a link to your forum. 
Looks like phpBB3 though, so I'll give you the classes for this version already:
.panel p{font-size: .... ;}
h1.page-title{color: .... ;}
Remember, though, that this classes may also affect other parts of the forum as well. I believe the homepage message text or the login message.
Looks like phpBB3 though, so I'll give you the classes for this version already:
.panel p{font-size: .... ;}
h1.page-title{color: .... ;}
Remember, though, that this classes may also affect other parts of the forum as well. I believe the homepage message text or the login message.

Sunny_D- Forumotion Member
-

Posts: 3430
Age: 24
Language: german | english
Location: "Save tonight and fight the break of dawn!"
Country:
Join date: 2007-03-27
Re: Changing Information screen and Search box codes
Thanks for your response. You guessed correctly, it is PhpBB3
I will paste all my css into my wordpad and search for those codes
I'll let you know how it goes.
You are the coolest German I have ever met...Danke again!@
I will paste all my css into my wordpad and search for those codes
I'll let you know how it goes.
You are the coolest German I have ever met...Danke again!@

RAtSoaDM- Forumotion Member
-

Posts: 232
Age: 27
Language: English
Location: Tustin, CA.
Country:
Join date: 2007-08-31
Re: Changing Information screen and Search box codes
ohh im not sure what i am supposed to do with these 'classes"

RAtSoaDM- Forumotion Member
-

Posts: 232
Age: 27
Language: English
Location: Tustin, CA.
Country:
Join date: 2007-08-31
Re: Changing Information screen and Search box codes
Ohh now i do, i got it, the classes worked 
Okay what class do i need to change the font family?
this
font-family: Tahoma,Arial,Tahoma,sans-serif;
Okay what class do i need to change the font family?
this
font-family: Tahoma,Arial,Tahoma,sans-serif;

RAtSoaDM- Forumotion Member
-

Posts: 232
Age: 27
Language: English
Location: Tustin, CA.
Country:
Join date: 2007-08-31
Re: Changing Information screen and Search box codes
Which fonts? The font family is not a "class" - it's a selector. It is added to a particular class to enhance the text. Like the example you were given, ".panel p{font-size: .... ;}" you would just add "font family: ...;" to the code. Like this...
Or it can be written in an easier way like this
That would make the font family for that particular area Tahoma, or Arial, or Verdana, depending on what fonts the user has installed. It goes by default from the first choice to the last.
- Code:
.panel p{font-size: 12; font-family: Tahoma,Arial,Verdana,sans-serif}
Or it can be written in an easier way like this
- Code:
.panel p{
font-size: 12;
font-family: Tahoma,Arial,Verdana,sans-serif
}
That would make the font family for that particular area Tahoma, or Arial, or Verdana, depending on what fonts the user has installed. It goes by default from the first choice to the last.
Re: Changing Information screen and Search box codes
Thanks but that code you gave me didnt work :|

RAtSoaDM- Forumotion Member
-

Posts: 232
Age: 27
Language: English
Location: Tustin, CA.
Country:
Join date: 2007-08-31
Re: Changing Information screen and Search box codes
As saurus said already, we need to know which fonts you want to change actually. 

Sunny_D- Forumotion Member
-

Posts: 3430
Age: 24
Language: german | english
Location: "Save tonight and fight the break of dawn!"
Country:
Join date: 2007-03-27
Re: Changing Information screen and Search box codes
my bad haha
anyways i decided to just switch to phpbb2, and do a custom job on the CSS...now ive got a few problems
How do i change the color of the text on the buttons or bkg img

and see how the text cuts off

anyways i decided to just switch to phpbb2, and do a custom job on the CSS...now ive got a few problems
How do i change the color of the text on the buttons or bkg img

and see how the text cuts off


RAtSoaDM- Forumotion Member
-

Posts: 232
Age: 27
Language: English
Location: Tustin, CA.
Country:
Join date: 2007-08-31
Re: Changing Information screen and Search box codes
About the buttons, you can change the color by using this classes in the CSS - modify the color code to your needs:
The profile however, should not be cut that way - try the follwing code:
.postdetails{width:100%;}
If that doesn't work, can you give me your forum address so I can check the code on the spot?
- Code:
input.liteoption, input.mainoption{color:#ff0000;}
The profile however, should not be cut that way - try the follwing code:
.postdetails{width:100%;}
If that doesn't work, can you give me your forum address so I can check the code on the spot?

Sunny_D- Forumotion Member
-

Posts: 3430
Age: 24
Language: german | english
Location: "Save tonight and fight the break of dawn!"
Country:
Join date: 2007-03-27
Re: Changing Information screen and Search box codes
Cool!
You know i looked at my forum in IE7 and the text didnt do that...so i think its this new FF3 stuffs
You know i looked at my forum in IE7 and the text didnt do that...so i think its this new FF3 stuffs

RAtSoaDM- Forumotion Member
-

Posts: 232
Age: 27
Language: English
Location: Tustin, CA.
Country:
Join date: 2007-08-31
Re: Changing Information screen and Search box codes
Yep this worked \mm/

RAtSoaDM- Forumotion Member
-

Posts: 232
Age: 27
Language: English
Location: Tustin, CA.
Country:
Join date: 2007-08-31
Re: Changing Information screen and Search box codes
Since this problem appears to be resolved, I will lock this thread now.
=> ( Members Problem Solved )
=> Locked
Nessa
=> ( Members Problem Solved )
=> Locked
Nessa
Permissions of this forum:
You cannot reply to topics in this forum
Home




by RAtSoaDM on August 2nd 2008, 7:45 pm





» Christmas carol on my Index page or portal?????
» how can i
» Drop down menu
» Install "Outbrain" on portal
» GFXrs Haven
» Problem on quick reply box missing on mobile view?
» Help "Warning and read it"
» ZA Review