INTERACT FORUM

Networks and Remotes => Media Network => Topic started by: daveman on February 11, 2016, 07:10:55 pm

Title: Webgizmo Request
Post by: daveman 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
Title: Re: Webgizmo Request
Post by: mpg732 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....