Forum Replies Created
-
AuthorPosts
-
theand
MemberYo bamajr,
Check this thread out in the old archive forums. Worked for me:
http://www.studiopress.com/support/showthread.php?p=551060&highlight=slider+order#post551060
theand
MemberI have the same problem. Good luck getting an answer in here though 🙁
I'm just going to mess around. If I find a solution I'll let you know.
theand
MemberFound help from elsewhere on the web. Incase any other people are interested here is the solutions:
To fix A & B, open your style.css file goto line 137 and look for
Code:
ul li {
list-style-type: circle;
/*list-style-image: url('sqpurple.gif');*/
}and change to
Code:
ul li {
list-style-type: none;
/*list-style-image: url('sqpurple.gif');*/
}To fix C, same file (style.css) goto line 1333 and look for
Code:
.featuredpage .page,
.featuredpost .post {
overflow: hidden;
margin: 0;
padding: 0;
}and change to
Code:
.featuredpage .page,
.featuredpost .post {
overflow: hidden;
margin: 0;
padding: 0;
margin-bottom:20px;
}you can change the 20px to whatever you decide.
theand
MemberFor my question C) I found in the CSS file this code:
.home h2 {
margin: 0 0 5px;
}Then I can add spacing by adding padding like this:
.home h2 {
margin: 0 0 5px;
padding-top: 5xp;
}Except then the 1st post moves down out of alignment also. How do I add padding to just the 2nd and 3rd posts on the homepage and not the first?
theand
MemberAnyone?
theand
MemberI worked out that for problem A) and problem B) that when I set the responsive slider to 'Fade' transition the problems occur and when I set it to 'Slide' transition the problems disappear!
I need it to be on 'Fade' though.
-
AuthorPosts