How to modify the default skin for the login control
Last Post 06/23/2009 10:17 AM by Lee Sykes. 3 Replies.
Author Messages
Tony
Nuke Newbie
Nuke Newbie
Posts:8


--
06/13/2009 11:48 AM  
I've got the login control on a separate tab/page. I want to change the look of the control. How would I go about doing that? I'm new to this DNN.
Lee Sykes
DNN Creative Staff
Nuke Master VI
Nuke Master VI
Posts:4945


--
06/15/2009 6:15 AM  
What part of it do you wish to restyle - is it the skin design for the actual page that contains the login control or the styling of the login module itself?

If it is the login module itself you will need to use techniques similar to these tutorials:
Troubleshooting DotNetNuke Skins

How to style and skin the search box in DotNetNuke
Lee Sykes
Site Administrator
Subscribe to the website : DotNetNuke Video Tutorials : The Skinning Toolkit : DotNetNuke Podcasts

Twitter: www.twitter.com/DNNCreative

Lee Sykes's Facebook Profile
Tony
Nuke Newbie
Nuke Newbie
Posts:8


--
06/15/2009 4:53 PM  
Yes, it is the module itself. Thank you.
Lee Sykes
DNN Creative Staff
Nuke Master VI
Nuke Master VI
Posts:4945


--
06/23/2009 10:17 AM  
You will need to use the techniques outlined in: Troubleshooting DotNetNuke Skins to identify the IDs of the login controls and then you can style them using CSS in your skin.css file.

eg. for styling the login button:

.StandardButton {
background-color: green;
color: #fff;
font-weight: bold;
}
Lee Sykes
Site Administrator
Subscribe to the website : DotNetNuke Video Tutorials : The Skinning Toolkit : DotNetNuke Podcasts

Twitter: www.twitter.com/DNNCreative

Lee Sykes's Facebook Profile


---