Showing posts with label CSS. Show all posts
Showing posts with label CSS. Show all posts

Friday, August 26, 2016

26 Aug

How to reduce the width of choice column in List in SP 2013

Add it to a script editor web part to the page <style type='text/css'> .ms-vh-div[DisplayName='ChoiceColumnDisplayName'] {   width:250px; } </style&g...

Tuesday, March 22, 2016

22 Mar

How to Print css in SharePoint 2013

In this below script,Print css in javascript I got is adding media="print" property to the CSS references. /* This CSS removes the header, navigation and other action elements from the print preview  */ 1.  <style>      @media print{      #suiteBar{display:none;}  ...

Sunday, December 27, 2015

27 Dec

Remove bullet and numeric list ul and li and add remove elements on hover

ul and li list-style:none li img {   display: none; } li:hover img {   display: inline-block;...