Author |
Topic |
|
Prinz
Senior Member
Germany
1522 Posts |
|
JDommi
Administrator
Germany
4650 Posts |
Posted - 27 Feb 2011 : 16:45:02
|
Make a wish come true: Please implement the cards additionally with a bigger font. Last days I have made a copy of these cards as big_movie_bigcover ( http://www.mediafire.com/file/xkgt4pxr8reqdrd/big_movie_bigcover.rar ) But best would be to chose like the colours. As example "blue" / "blue big font" This way it is even possible to have the other cards (episode, actor, etc.) with same font sizing! |
In order to achieve what is possible, you have to try the impossible over and over again. Hermann Hesse |
Edited by - JDommi on 27 Feb 2011 16:55:20 |
|
|
Prinz
Senior Member
Germany
1522 Posts |
Posted - 27 Feb 2011 : 21:05:13
|
I found a way to add a second menu (font chooser).
But i still have to change a bit all the HTML-Cards and add a few styles to make it work.
At the moment it only works partially and looks ugly. |
|
|
JDommi
Administrator
Germany
4650 Posts |
Posted - 27 Feb 2011 : 21:33:36
|
He, he... ugly is the first step to beauty ;) I would suggest to store all font sizes in the css otherwise you have to change more than 60 sizes manually in the card. Only problem should be the font size in the js parts. By the way: did you have a look at the NewCard I'm momentarily working on? In some cases the awards are not shown - I can't find the eorror :( |
In order to achieve what is possible, you have to try the impossible over and over again. Hermann Hesse |
|
|
Prinz
Senior Member
Germany
1522 Posts |
Posted - 27 Feb 2011 : 21:41:16
|
The new system uses 2 css files at the same time on all cards. One for the color and a new one for the Font size. You now have to menus on the Card, one to choose the Color and one to choose the Font size. |
|
|
JDommi
Administrator
Germany
4650 Posts |
Posted - 27 Feb 2011 : 21:43:46
|
Great :) I'm hungry to see!!! |
In order to achieve what is possible, you have to try the impossible over and over again. Hermann Hesse |
|
|
Prinz
Senior Member
Germany
1522 Posts |
Posted - 04 Mar 2011 : 23:39:32
|
Here is the first test version with font size menu.
The font sizes are defined in the files: MovieCards\movie_bigcover\movie_bigcover-font-normal.css MovieCards\movie_bigcover\movie_bigcover-font-big.css
You can add as many different font sizes as you like, but you have to add the new fonts to all html files:
<link rel="alternate stylesheet" type="text/css" href="moviecards/movie_bigcover/movie_bigcover-font-big.css" title="Big" stype="font">
http://www.mediafire.com/download.php?fi3fzi41gpci2k7
These cards have probably still some bugs. |
Edited by - Prinz on 04 Mar 2011 23:46:49 |
|
|
JDommi
Administrator
Germany
4650 Posts |
Posted - 05 Mar 2011 : 10:55:08
|
GREAT, Prinz!
A few corrections still to do (big font): 1. Movie Card: 1.a. _MOVIE_TAGLINE_ is too big. The descenders are in the dotted line at the bottom 1.b. "seasons" and "cast" have same size 2. Actors Card: 2.a. Name of the actor has the same size 2.b. if the directlink is too long for one line: "DirectLink" is centered in height but not the bar -> not completely visible *EDIT:* will probably be the same for all sections! 3. Movie New: ok 4. BoxSets: untested as I don't have any
|
In order to achieve what is possible, you have to try the impossible over and over again. Hermann Hesse |
Edited by - JDommi on 05 Mar 2011 11:13:27 |
|
|
JDommi
Administrator
Germany
4650 Posts |
Posted - 05 Mar 2011 : 11:10:35
|
A wish to implement in movie_bigcover.htm: A summary of the awards (won/nominated) Similar to this jscript:
<script language="JavaScript" type="text/javascript">
var strVal = '_MOVIE_AWARDS_';
var gw = 0;
var gn = 0;
function strBetween(source, strA, strB) {
var indA = (strA=='') ? 0 : source.indexOf(strA)+strA.length;
var indB = (strB=='') ? source.length : source.indexOf(strB, indA);
if (indB == 0) {
alert(source.substring(indA, indB));
var indB = source.length - indA;
}
return source.substring(indA, indB);
}
if (strVal != "" && strVal !='(no awards nor nominations)' ) {
document.write('<a href="MovieCards/awards.html?_MOVIE_AWARDS_">_TMOVIE_AWARDS_</a><br>');
var strVal = strVal + "<<< >>>>";
do {
var strPart=strBetween(strVal,"<<< ","<<< ");
var winnom=strBetween(strVal,"<<<",">>>>");
var awa=strBetween(strPart,"[","]");
var count4 = strPart.match(/\-\-\>./g).length;
var aPosition = strVal.indexOf(strPart);
document.write(awa);
document.write(": ");
document.write(count4);
document.write(" ");
document.write(winnom);
if (winnom==" Won ") {
gw = gw + count4;
}
gn = gn + count4;
document.write("<br>");
strVal=strVal.substring(aPosition + strPart.length,strVal.length);
}
while (strVal != "");
}
</script>
<script language="JavaScript" type="text/javascript">
var strVal = '_MOVIE_AWARDS_';
if (strVal != "" && strVal !='(no awards nor nominations)' ) {
document.write("<br>Total: ");
document.write(gw);
document.write(" / ");
document.write(gn);
}
else {
if (strVal != "") {
document.write(strVal);
}
}
</script>
|
In order to achieve what is possible, you have to try the impossible over and over again. Hermann Hesse |
|
|
Prinz
Senior Member
Germany
1522 Posts |
|
JDommi
Administrator
Germany
4650 Posts |
Posted - 05 Mar 2011 : 18:25:44
|
Except No. 2.b. all seems to be ok now :) |
In order to achieve what is possible, you have to try the impossible over and over again. Hermann Hesse |
|
|
Prinz
Senior Member
Germany
1522 Posts |
Posted - 05 Mar 2011 : 18:46:23
|
2 b is not a bug. The background pic has only this specific height. |
|
|
JDommi
Administrator
Germany
4650 Posts |
Posted - 05 Mar 2011 : 18:55:17
|
I know. But the words "direct link" will be shown half on the background and half on the bar... It's like the Eastern Friesland national flag: white eagle on white background ;) |
In order to achieve what is possible, you have to try the impossible over and over again. Hermann Hesse |
|
|
Prinz
Senior Member
Germany
1522 Posts |
Posted - 05 Mar 2011 : 19:15:30
|
That Problem you have with all Lines and Font sizes if the website wide enough for all the text.
So easy solution would be: buy a widescreen display. |
|
|
JDommi
Administrator
Germany
4650 Posts |
Posted - 05 Mar 2011 : 19:18:47
|
*LOOOL* And what about those poor people that don't own one? I personally haven't that problem as I have a resolution of 2560x1024 *sfg*
Beside that: what do you think about my jscript code? Could be a good idea or not? |
In order to achieve what is possible, you have to try the impossible over and over again. Hermann Hesse |
|
|
Prinz
Senior Member
Germany
1522 Posts |
Posted - 05 Mar 2011 : 19:31:09
|
quote: Originally posted by JDommi Beside that: what do you think about my jscript code? Could be a good idea or not?
I have to test that a bit more... |
|
|
JDommi
Administrator
Germany
4650 Posts |
Posted - 05 Mar 2011 : 19:41:11
|
No problem! Take all the time it needs - but not too much :-P I'm already thinking about a solution to show pics for some specific awards showing the summary as hint. Maybe you have seen on my actual card work that you can easily pass _MOVIE_AWARD_ to a special AWARDS card. Only problem is: http://www.binaryworks.it/forum/topic.asp?TOPIC_ID=7561. But in general that offers some unthought possibilities...
|
In order to achieve what is possible, you have to try the impossible over and over again. Hermann Hesse |
Edited by - JDommi on 05 Mar 2011 19:41:38 |
|
|
Prinz
Senior Member
Germany
1522 Posts |
Posted - 05 Mar 2011 : 20:04:50
|
One Problem with the function is that the code is specific to the imdb awards import...
And i haven't encountered your problem with not replacing variables yet. |
Edited by - Prinz on 05 Mar 2011 20:05:47 |
|
|
JDommi
Administrator
Germany
4650 Posts |
|
Prinz
Senior Member
Germany
1522 Posts |
Posted - 05 Mar 2011 : 21:17:54
|
Never had that problem. Maybe it has something to do with the non-english data... I only have english data in my database. |
|
|
JDommi
Administrator
Germany
4650 Posts |
Posted - 05 Mar 2011 : 21:23:40
|
Shouldn't be as seen/unseen is boolean. I didn't have recognized that before, too. But it's a fact that this bug exists for unknown reason. |
In order to achieve what is possible, you have to try the impossible over and over again. Hermann Hesse |
|
|
Topic |
|
|