RLJB I have a custom query and for some reason the query sits about 18px to the right of the paging bar. Any tips of where I can put my CSS to push ONLY the paging bar to the right 18px? margin-left: 18px; work in browser inspect, but can't figure out where to put it
johntalbott A screenshot would indeed help, but if I guessed correctly this should do it... Put this in a custom CSS file .k-pager-wrap { margin-left: 18px; }
johntalbott That last approach may not be the best as it will move all paging bars to the right 18px. Since this is only for a specific custom grid, try this Render Script instead ... $("#" + parser.m_widgetInfo.markupId + "_pager").css ("margin-left", "18px");