+ 8
Center the Image
For the website Autoset, I am merely trying to get my slider centered, and all my text centered. I was wondering if anyone may have any solutions for centering the slider for this webpage. I have been trying to get this slider centered for an eternity and a half now, and it will not go through. All suggestion are welcome, and will be tested. Anyhow, thanks for reading my post, and happy coding!
4 odpowiedzi
+ 7
<p align="center"><img></p>
<!--Centers image-->
+ 6
okay. I will give that a try again.
+ 6
Thanks guys!! Fixed this a while ago, but your support is appreciated!
+ 5
give your image (or slider) a class or id...
<img src="..." class="image">
then use CSS and set the margin to auto...
.image {
margin: auto;
}