This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm that you accept these cookies being set.

[Touch Visu] Customize Options?
#1
Hi,

I've searched in the forum for such solutions which are already posted, but I found only the option to hide the Menu (which works well).
Now I need to limit the rows to one and maybe if it's possible to scale all sizes a little bit up.

Is this possible?
Reply
#2
Use this for single column display:
Code:
.touch .control-item {
  float: none;
  width: 100%;
  border-right: none;
}
.touch .control-item:nth-child(2) {
  border-top: 1px solid #ddd;
  height: 49px;
}
.touch .control-item-pad {
  display: none;
}

You can try this for scaling, but this might not work on all devices:
Code:
.touch {
  width: 80%;
  height: 80%;
  transform: scale(1.25);
  transform-origin: 0 0;
}
.container {
  min-width: 150px;
}
Reply


Forum Jump: