Here is my code https://jsfiddle.net/2dxgqz2p/
I've tried to center the content but nothing works. I've tried with
"text-align:center; margin:0 auto; margin-left:auto margin-right:auto"
I need to have the text with the bullet side by side.
Here is my code https://jsfiddle.net/2dxgqz2p/
I've tried to center the content but nothing works. I've tried with
"text-align:center; margin:0 auto; margin-left:auto margin-right:auto"
I need to have the text with the bullet side by side.
Well, since you are using bootstrap, you could make the wrapping container narrower (6 columns) and give it an offset (3 columns) that moves it into the middle:
<div class="keywords-main col-xs-6 col-xs-offset-3">
https://jsfiddle.net/Lydxcu7u/
note: I also removed the first class in that div to make that work.
ADDITION AFTER COMMENT:
You can use the above principle on medium and larger screens and add different classes with less (or no) offset for really small screens:
<div class="keywords-main col-md-6 col-xs-10 col-md-offset-3 col-xs-offset-3">
or
<div class="keywords-main col-md-6 col-xs-12 col-md-offset-3">
I need to have the text with the bullet side by side(for making bullets & text side by side please try this.)
.product-bullet{vertical-align:middle;}