» Log in
User Name:

Password:

Not a member yet?
Register Now!
» Online Users: 58
0 members and 58 guests
No Members online
Most users ever online was 611, 03-21-2008 at 11:10 PM.
» .::.
Web Hosting - web hosting, dedicated servers and web design services
Online Degree - search for 1000+ online degrees, online colleges & online universities.
Tattoo - we are a group of tattoo enthusiasts
Gexa Energy - your absolute best choice in electric service
Texas electricity - save on electric rates
Oral Chelation - initial cleansing of your veins & arteries

Register Now! Contact Us

About this Page
This is a discussion on How to alter checkbox look & feel within the Nuke 7.x - Themes forums, part of the PHP-Nuke 7.x category; Being relatively un-educated in the way of styles and "fancy" html, I'm wondering how the authors ...


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

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 10-29-2004, 10:02 AM
Junior Member
 
Join Date: Sep 2004
Posts: 2
How to alter checkbox look & feel
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
  #2 (permalink)  
Old 10-29-2004, 10:42 AM
Senior Member
 
Join Date: Sep 2002
Posts: 2,905
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
  #3 (permalink)  
Old 10-29-2004, 10:53 AM
Junior Member
 
Join Date: Sep 2004
Posts: 2
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
  #4 (permalink)  
Old 10-29-2004, 10:58 AM
Senior Member
 
Join Date: Sep 2002
Posts: 2,905
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 01:01 PM
Making shadow topic checkbox off by default? Zathu_Koon Purged Topics 0 06-15-2003 09:50 AM


All times are GMT -5. The time now is 07:28 AM.


Design by Vjacheslav Trushkin, color scheme by ColorizeIt!.

LinkBacks Enabled by vBSEO 3.1.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