Page 1 of 1

NFS height?

Posted: Tue Mar 18, 2008 9:59 am
by taurchu
how can i change news flash scroller's height?

Re: NFS height?

Posted: Tue Jun 10, 2008 11:14 am
by Metal Beryl
Has anybody figured this out yet? I need to control the height on my nfs i've installed!
cheers
Jane

Re: NFS height?

Posted: Tue Jun 10, 2008 11:23 am
by Metal Beryl
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!

Re: NFS height?

Posted: Fri Jun 13, 2008 2:49 pm
by romane
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!
Hi Metal Beryl,

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?

Posted: Tue Sep 02, 2008 9:49 am
by DavidG
I'm also looking to do this.  what css file do I need to edit ?

thanks

Re: NFS height?

Posted: Fri Mar 06, 2009 7:32 pm
by Chris F
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.