javascript - Windows 8 HTML5 - Adjusting the layout of a Split App? -


how can adjust location of buttons (group?) on main page liking, or otherwise reformat them? in css files, or somewhere in js files? not believe code example required question.
suggestions appreciated, thanks!

the default template split app doesn't contain button groups mere divs,in case need alter styles need make changes in items.css page.i believe want style left pane..

try following css in items.css page,

  .itemspage .itemslist .item {     -ms-grid-columns: 1fr;     -ms-grid-rows: 1fr 90px;     display: -ms-grid;     height: 100px;//you can make adjustments height here     width: 250px; }      .itemspage .itemslist .item .item-image {         -ms-grid-row-span: 1;     } 

Comments

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -