avdesigns Posted November 23, 2012 Report Share Posted November 23, 2012 Hello, im wondering if you could help me, im having a problem with the bullet points on the default tpl's. there fine when there on the default skin but not with my custom one. As you can see from the attachment they seem to over lap which is not seen in crystal is there a part of the css I can copy over to sort this? Thanks Jacob Quote Link to comment Share on other sites More sharing options...
Moderators Parkho Posted November 23, 2012 Moderators Report Share Posted November 23, 2012 I'm not very good at css coding but if you open the css and look for the "ul" and "li" in there you might be able to figure it out. Quote Link to comment Share on other sites More sharing options...
nabpp Posted November 23, 2012 Report Share Posted November 23, 2012 i belive that you would find those in the .html or .tpl file of that page Quote Link to comment Share on other sites More sharing options...
avdesigns Posted November 23, 2012 Author Report Share Posted November 23, 2012 I'm not very good at css coding but if you open the css and look for the "ul" and "li" in there you might be able to figure it out. I though that to but cant seem to find it within the cystal CSS Thanks Quote Link to comment Share on other sites More sharing options...
avdesigns Posted November 24, 2012 Author Report Share Posted November 24, 2012 bump. Quote Link to comment Share on other sites More sharing options...
nabpp Posted November 24, 2012 Report Share Posted November 24, 2012 try removing the <li> tag Quote Link to comment Share on other sites More sharing options...
Strider Posted November 24, 2012 Report Share Posted November 24, 2012 in the CSS file put the following in: ul{ list-style:none; } That should remove all bullets from all unordered lists. Quote Link to comment Share on other sites More sharing options...
avdesigns Posted November 24, 2012 Author Report Share Posted November 24, 2012 as usual I probably wasnt clear I want the bullet points however on the cystal skin they show correctly with a margin whereas on my skin it shows like that where they are on top of other objects. Im wondering which CSS document the profile main is getting that from? Thanks Quote Link to comment Share on other sites More sharing options...
freshJet Posted November 25, 2012 Report Share Posted November 25, 2012 Try using ul { clear:both; } OR li { clear:both; } Quote Link to comment Share on other sites More sharing options...
avdesigns Posted November 25, 2012 Author Report Share Posted November 25, 2012 still seem to show the bullet points over lapping? Thanks Quote Link to comment Share on other sites More sharing options...
tutmeister Posted November 25, 2012 Report Share Posted November 25, 2012 The clear property is only used to disallow floating elements on either the left, right, or both sides. What you need to do in this situation is target that unordered list, by its ID or Class, and set the left margin to something like 20px. If it doesn't have a class, you should give it one to avoid setting every unordered list's margin. By default, that list should reside in profile_main.tpl. Quote Link to comment Share on other sites More sharing options...
avdesigns Posted November 26, 2012 Author Report Share Posted November 26, 2012 I tried declaring li and ul with margins and padding but it didnt work? But what does crystal do to have this? Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.