Skip to main content

Posts

Showing posts with the label CSS

Hide top navigation and quick launch in SharePoint 2013

Hide top navigation and quick launch in SharePoint 2013, < style type = "text/css" > .main-topbar , #siteIcon , .search-area , #s4-titlerow , #sideNavBox {display:none !important;} #contentBox {     margin-left: 0; } div #s4-ribbonrow {     height: auto !important;     margin: 0; } #ActionDiv a {     background: #f1f1f1 none repeat scroll 0 0;     border: 1px solid #ccc;     display: inline-block;     margin-bottom: 5px;     margin-right: 4px;     padding: 3px 8px !important;     text-align: center; } #ActionDiv {     text-align: left; } </ style > Hope this helps!!!

How to move list paging in top right corner in SharePoint 2013

Add script editor web part and paste the below code to move list paging in top right corner in SharePoint 2013, < script type = "text/javascript" > $ ( document ).ready( function () {   var header = $ ( "table.ms-listviewtable" );   var table = $ ( "#bottomPagingCellWPQ3" );     if (header & & table)     {         table. insertBefore (header);         $ ( "#bottomPagingCellWPQ3" ).css( 'text-align' , 'right' );     }     else     {         alert ( 'jQuery did not found Elements.' );     } }); </ script > < style type = "text/css" > td #bottomPagingCellWPQ3 {float:right} </ style > Hope this helps!!!