and my site is lovewithoutalimit.com
Hi there,
While I like helping out others whenever I can, all of your questions are theme specific and you should be contacting the theme’s developer instead.
Anyways, since we’re here already:
How do I move the title of the popular post from right under my slider?
In your theme’s stylesheet, find:
.glam_slider {
margin: 0 0 0 0;
line-height: 18px;
position: relative;
height: auto;
}
… and change it to:
.glam_slider {
margin: 0 0 30px 0;
line-height: 18px;
position: relative;
height: auto;
}
Is there a way to make the post line up next to each other rather than below each other?
While it’s possible, this requires making a few modifications to theme’s stylesheet and probably also to its code. You should ask the developer about this.
Can I remove the bullet numbers?
On your theme’s stylesheet, find:
.article ul {
margin: 0 0 20px 25px;
list-style: circle outside;
}
… and replace it with:
.article ul {
margin: 0 0 20px 25px;
list-style: none;
}