NFS height?
NFS height?
how can i change news flash scroller's height?
-
- Forum Members
- Posts: 69
- Joined: Wed Apr 18, 2007 9:57 am
Re: NFS height?
Has anybody figured this out yet? I need to control the height on my nfs i've installed!
cheers
Jane
cheers
Jane
-
- Forum Members
- Posts: 69
- Joined: Wed Apr 18, 2007 9:57 am
Re: NFS height?
ok i've figured it out. I created a style and set the height. In the nfs module under display options just add the name of the style to the empty box CSS classname:
Hope that helps some people!
Hope that helps some people!
Re: NFS height?
Hi Metal Beryl,Metal Beryl wrote: ok i've figured it out. I created a style and set the height. In the nfs module under display options just add the name of the style to the empty box CSS classname:
Hope that helps some people!
so say i put "nfsheight' in the css classname, where do I put {height: 600px;} ? in the news style sheet? is it linked to this?
thanks
Re: NFS height?
I'm also looking to do this. what css file do I need to edit ?
thanks
thanks
Re: NFS height?
More details since I just worked on this. Took me a while to get it right.
In a stylesheet assigned to a page that your nsf tag is in, put
.nsf {
height: 65px;
width: 471px;
padding-top: 5px;
padding-bottom: 5px;
padding-left: 30px;
padding-right: 30px;
background: url(uploads/images/site_images/scroll_background.gif) no-repeat;
}
In the NSF settings, put "nsf" without the quotes in the Classname field.
Put your tag on the page and it will inherit the class settings.
Here's a link to a page with a lot of the attributes that you can define:
http://www.java2s.com/Code/HTMLCSSRefer ... erties.htm
Hope this helps.
In a stylesheet assigned to a page that your nsf tag is in, put
.nsf {
height: 65px;
width: 471px;
padding-top: 5px;
padding-bottom: 5px;
padding-left: 30px;
padding-right: 30px;
background: url(uploads/images/site_images/scroll_background.gif) no-repeat;
}
In the NSF settings, put "nsf" without the quotes in the Classname field.
Put your tag on the page and it will inherit the class settings.
Here's a link to a page with a lot of the attributes that you can define:
http://www.java2s.com/Code/HTMLCSSRefer ... erties.htm
Hope this helps.