change font size in module title
Last Post 12/01/2006 3:13 AM by Lee Sykes. 2 Replies.
Author Messages
carmela cardino
Nuker
Nuker
Posts:16


--
12/01/2006 1:03 AM  

hi!

i need to change the font size in the module title(text/html).. how could i do this? also can i change the height?

thanks!

Lee Sykes
DNN Creative Staff
Nuke Master VI
Nuke Master VI
Posts:4945


--
12/01/2006 3:10 AM  

It depends which CSS class you have placed around the container title. In the DNN Blue skin the class is:

.Head {
   font-family: Tahoma, Arial, Helvetica;
   font-size:  18px;
   font-weight: normal;
   color: #333333;
}

So you just need to change those settings.

If you are working with pure CSS skins, you can change the height easily in the CSS, if you are working with tables, you may need to look at the table that holds the title and check its height value - there maybe a css class assigned to the table where you can specify the height. - It all depends on the code from your skin.ascx / skin.htm file

Hope this helps, thanks,

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
Lee Sykes
DNN Creative Staff
Nuke Master VI
Nuke Master VI
Posts:4945


--
12/01/2006 3:13 AM  

PS. If you watch this tutorial:

Troubleshooting DotNetNuke Skins
(2 videos - 17min)

It details how to work out the CSS classes for styling elements and is exactly the method that I used to answer your question - it will save you hours of time!

Cheers,

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


---