How to change column width WITHOUT SP Designer?
My organization restricts Designer access on production sites. Can I adjust the column width without using Designer? I was thinking of javascript, jquery, or css.
July 31st, 2015 5:52pm
Hi
use below code
<script src="http;//ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js" type="text/javascript">
</script>
<script type="text/javascript">
$(function(){
$("div.ms-vh-div:contains('name of your column')").css("width", "350px");});
</script> Free Windows Admin Tool Kit Click here and download it now
August 1st, 2015 11:32am


