Skip to content

Instantly share code, notes, and snippets.

@lgwapnitsky
Created March 13, 2015 17:38
Show Gist options
  • Save lgwapnitsky/8a26c7b1dbb3e234c7a4 to your computer and use it in GitHub Desktop.
Save lgwapnitsky/8a26c7b1dbb3e234c7a4 to your computer and use it in GitHub Desktop.
<style>
tr.ms-viewheadertr {
display: none
}
IMG[id='MSOImageWebPart_WebPartWPQ8'] {
height: 400px!important;
}
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script>
$(document).ready(function () {
$('div.ms-rtestate-field').each(function () {
$(this).html($(this).text());
});
$('td.ms-vb2').each(function () {
var t = $(this).html();
var x = t.replace(/img/i, 'img width="120px"');
$(this).html(x);
});
});</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment