Nukemods Forum  
» Log in
User Name:

Password:

Not a member yet?
Register Now!
» Online Users: 52
6 members and 46 guests
bea9qgchcomberc, cliaw9cckhereto, garere3denstc3t, mariacolmanyne3, medaricalddw93g, parttarcts
Most users ever online was 611, 03-21-2008 at 10:10 PM.
» .::.
» .:.

Go Back   Nukemods Forum > PHP-Nuke 7.x > Nuke 7.x - Themes

Reply
 
LinkBack Thread Tools Display Modes
How to alter checkbox look & feel
Old
  (#1 (permalink))
Junior Member
 
Status: Offline
Posts: 2
Join Date: Sep 2004
How to alter checkbox look & feel - 10-29-2004, 09:02 AM

Being relatively un-educated in the way of styles and "fancy" html, I'm wondering how the authors of various themes place colors and boxes around the checkbox and radio input controls? I've found several very nice themes I'd like to use, but would like to get rid of the black box around these controls.

Thanks!

Gabe
   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old
  (#2 (permalink))
Senior Member
 
Status: Offline
Posts: 2,905
Join Date: Sep 2002
10-29-2004, 09:42 AM

Most of that info is controlled by the theme's css style sheet.

Code:
The Form Elements are is what you need to look at.

/* Form elements */
input,textarea, select {
	color : #000000;
	font: normal 11px Verdana, Arial, Helvetica, sans-serif;
	border-color : #000000;
}

/* The text input fields background colour */
input.post, textarea.post, select {
	background-color : #FFFFFF;
}

input { text-indent : 2px; }

/* The buttons used for bbCode styling in message post */
input.button {
	background-color : #EFEFEF;
	color : #000000;
	font-size: 11px; font-family: Verdana, Arial, Helvetica, sans-serif;
}

/* The main submit button option */
input.mainoption {
	background-color : #FAFAFA;
	font-weight : bold;
}

/* None-bold submit button */
input.liteoption {
	background-color : #FAFAFA;
	font-weight : normal;
}
   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old
  (#3 (permalink))
Junior Member
 
Status: Offline
Posts: 2
Join Date: Sep 2004
10-29-2004, 09:53 AM

Code:
/* Form elements */ 
input,textarea,select{
border-color:#000000;
color:#000000;
border:1px solid;
font:normal 11px Verdana,Arial,Helvetica,sans-serif}
}
This is what's in the theme I'm trying to change... I'd like to keep the text and submit elements the same as they are now, but change the checkbox and radios to "normal." Is this possible?

Gabe
   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old
  (#4 (permalink))
Senior Member
 
Status: Offline
Posts: 2,905
Join Date: Sep 2002
10-29-2004, 09:58 AM

In the one you have there, I think you may want to move the ,select option to another Form element.

Actually you might want to split it all up like this

Code:
/* Form elements */
input{
border-color:#000000;
color:#000000;
border:1px solid;
font:normal 11px Verdana,Arial,Helvetica,sans-serif}
}

/* Form elements */
textarea{
border-color:#000000;
color:#000000;
border:1px solid;
font:normal 11px Verdana,Arial,Helvetica,sans-serif}
}

/* Form elements */
select{
border-color:#000000;
color:#000000;
border:1px solid;
font:normal 11px Verdana,Arial,Helvetica,sans-serif}
}
You are going to have to play with those settings to aquire your desired results.
   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
PHPNuke for Idiots/Dummies makes me feel like one. enchant Open topics 6 10-12-2004 12:01 PM
Making shadow topic checkbox off by default? Zathu_Koon Purged Topics 0 06-15-2003 08:50 AM




vBulletin Skin developed by: vBStyles.com


LinkBacks Enabled by vBSEO 3.3.0

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31