The fullcalendar jquery plugin I'm using is stuck to the left side of the browser how do I center it?
<div id="calender"style="width: 80%; display: inline-block; "></div>
The fullcalendar jquery plugin I'm using is stuck to the left side of the browser how do I center it?
<div id="calender"style="width: 80%; display: inline-block; "></div>
You can wrap your div with <center> </center>
tags
<center> <div id="calender"style="width: 80%; display: inline-block; "></div> </center>
or
You can apply this CSS to the :
#inner { width: 50%; margin: 0 auto; }