Hi, I have a MystiqueR3 theme WP site and I can't adjust the vertical spacing around my unordered list. I have tried redefining the UL item in the Mystique CSS settings with no luck. Here is the post involved: http://www.customimageads.com/ Went into Mystique settings, CSS tab and redefined UL and OL to be this with no luck: ul, ol( list-style-type:disc; list-style-positionutside; margin:20px, 0px, 20px, 20px; line-height:150%; } I am happy even making the vertical spacing changes inline outside of CSS Any advice greatly appreciated George
Hi, not sure if u did a direct copy-paste from ur css style, but i see that u r using a ( instead of a { to define ur rule, maybe thats the problem, if not maybe that ol or ul that u want to stylize are using an id or class and a rule for it, wich means u have to track them for find out where that definition happens, good luck!!
I have a problem in understanding your question. So , what do you mean by "spacing around" ? By spacing arround I understand top margin , bottom, left and right . And the desired unordered list will be that under "Guide to Getting Your Business Noticed on CraigsList" ? If so, give that unordered list a class in HTML (to customize only that ul and not all general unordered lists when applying css) , like <ul class="first-list"> . Then apply your css for that class : .first-list { list-style-type:disc; list-style-position: outside; margin:20px, 0px, 20px, 20px; line-height:150%; } Code (markup): If you only want to get some space between content and ul , increase top and bottom margins . .first-list { list-style-type:disc; list-style-position: outside; margin: 40px 0 40px 20px; line-height:150%; } Code (markup): If I missunderstood your question (thing that can be true) , please give more details about what ul and what exactly you want to accomplish.
Thanks so much. By eliminating the commas combined with the new first-class CSS definition, that solved my problem. It was driving me crazy to have the unique definition in there not take effect. Yes, I should have been clearer. I wanted to have vertical spacing around the unordered list that is positioned right under the post title "Guide to Getting Your Business Noticed on CraigsList" Thanks for everyone's assistance!