INTERACT FORUM

Please login or register.

Login with username, password and session length
Advanced search  
Pages: [1]   Go Down

Author Topic: Webgizmo Request  (Read 1928 times)

daveman

  • Galactic Citizen
  • ****
  • Posts: 427
  • I am still a baby user of JRiver :)
Webgizmo Request
« on: February 11, 2016, 07:10:55 pm »

HI there,

I have been using webgizmo more frequently recently and have a request.

videos show up with a pic and the name of the episode below it (about 18 characters).  The problem is that there are not enough characters for me to see the entire name of the video.

is there a way to have more characters show up or better yet, when the mouse is floating over the video, the entire file name shows up?

thanks

dave
Logged

mpg732

  • Junior Woodchuck
  • **
  • Posts: 96
Re: Webgizmo Request
« Reply #1 on: February 12, 2016, 10:01:53 pm »

I did this a long time ago, I think this is what you have to do;
You will have to make a chanes to the CSS file located here;

C:\Program Files (x86)\J River\Media Center 21\Data\Library Server\Gizmo\Default

open the file in note pad and scroll down and change
.thumbitem .title
{
   float: left;
   width: 100%;
   height: 21px;
   line-height: 21px;
   font-size: 17px;
   white-space: nowrap;
   text-overflow: ellipsis; /* doesn't work with Firefox, but should with some devices */
   overflow: hidden;
   text-align: center;
}
to
.thumbitem .title
{
   float: left;
   width: 100%;
   height: 19px;
   line-height: 19px;
   font-size: 15px;
   white-space: wrap;
   text-overflow: ellipsis; /* doesn't work with Firefox, but should with some devices */
/*   overflow: hidden; */
   text-align: center;
}

then restart JRiver and then refresh Gizmo....
Logged
Pages: [1]   Go Up