I'm creating a userstyle for a website, so I can't change any HTML, just pure CSS.
<div class="container"></div>
<divs>
<h2s>
<uls>
<forms>
<h3></h3>
<p></p>
</div>
I want to make h3 and p be next to each other and in the horizontal center of the container. So, I gave both of them display:inline-block and text-align:center. That made them be next to each, but not horizonatly centered. text-align:center only works if it is applied to the container, but that would be centering all the text of the other elements of the entire site.
I'm relatively new to CSS and I've searched for a way to do this, but with no avail.
Try posting your code into a jsfiddle.
As far as i can understand, maybe only adding a margin on the h3 and p tags will be enough?