I am trying to center my div. I used a width px it worked but as soon as I changed width px to display: table; my div went to the left.
background: rgba(225, 245, 245, 0.4);
border-radius: 3px;
bottom: 16px;
display: table;
left: 0;
margin: 0 auto;
padding: 5px;
position: fixed;
right: 0;
text-align: center;
<div id="download">
<span id="description">The National Geographic Explorer passing under the Seal Island Bridge</span>
<a href="'.$filenames[$random_index].'" download="'.$filenames[$random_index].'" title="Download this image. Use of this image is restricted to wallpaper only"download>* Download This Image *</a>
</div>
Thanks for any and all help.