Title: A CSS Setting
Last modified: August 18, 2016

---

# A CSS Setting

 *  [tonywright](https://wordpress.org/support/users/tonywright/)
 * (@tonywright)
 * [20 years, 9 months ago](https://wordpress.org/support/topic/a-css-setting/)
 * I’ve got the democracy poll plugin working correctly on my side menu at [http://www.rapnews.co.uk](http://www.rapnews.co.uk)
 * however
 * i would like to add a space or so that the content either side of the poll has
   some space between.
 * I’ve opened the democracy css but I can’t seem to make any difference.
 * I’ve added into the sidebar css to no effect.

Viewing 15 replies - 1 through 15 (of 18 total)

1 [2](https://wordpress.org/support/topic/a-css-setting/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/a-css-setting/page/2/?output_format=md)

 *  [Beel](https://wordpress.org/support/users/beel/)
 * (@beel)
 * [20 years, 9 months ago](https://wordpress.org/support/topic/a-css-setting/#post-274215)
 * ?
 * #democracy {
          margin-left:20px;       margin-right:20px; }
 * I see you haven’t fixed your CSS on one line issue.
 *  Thread Starter [tonywright](https://wordpress.org/support/users/tonywright/)
 * (@tonywright)
 * [20 years, 9 months ago](https://wordpress.org/support/topic/a-css-setting/#post-274216)
 * it constantly reverts back to one line however much i fix it.
 * please could you tell me how to get the space before and after my democracy poll
   block
 *  [Beel](https://wordpress.org/support/users/beel/)
 * (@beel)
 * [20 years, 9 months ago](https://wordpress.org/support/topic/a-css-setting/#post-274220)
 * if you mean “above (top) and below (bottom)”, just use what I posted above and
   add margin-top and margin-bottom, or better yet…
 * margin: Y1px X1px Y2px X2px;
 * (top right bottom left)
 *  Thread Starter [tonywright](https://wordpress.org/support/users/tonywright/)
 * (@tonywright)
 * [20 years, 9 months ago](https://wordpress.org/support/topic/a-css-setting/#post-274222)
 * do i do this in the css or the sidebar php?
 *  [Beel](https://wordpress.org/support/users/beel/)
 * (@beel)
 * [20 years, 9 months ago](https://wordpress.org/support/topic/a-css-setting/#post-274223)
 * That goes in the css. I see the plugin has its own, so you can either add it 
   to your theme css or edit the plugin css.
 *  Thread Starter [tonywright](https://wordpress.org/support/users/tonywright/)
 * (@tonywright)
 * [20 years, 9 months ago](https://wordpress.org/support/topic/a-css-setting/#post-274225)
 * thank you.
 * the contents of my democracy css is as below. i don’t see where i should enter
   your suggestion. would you happen to know how to make the poll a slightly larger
   size font too?
 * .democracy-choice {
    display: block; background: #06c; height: 3px; border-bottom:
   2px solid #05a; font-size: 1px; }
 * .dem-choice-border {
    margin: 8px 0; display: block; background: #fff; height:
   5px; width: 100px; border: 1px solid #ccc; }
 * /* BLIX fixies */
    #democracy input { width: auto; } #democracy ul { padding:
   0; } #democracy label { float: none; display: inline; }
 * #voted-for-this { border: 1px solid #333;}
 * #dem-total-votes { }
    #poll-question { } #democracy { }
 *  [Beel](https://wordpress.org/support/users/beel/)
 * (@beel)
 * [20 years, 9 months ago](https://wordpress.org/support/topic/a-css-setting/#post-274226)
 * #democracy {
          margin: 10px;       font-size: 12px; }
 * I can no longer test the css because apparently you have removed the section 
   in your sidebar.
 *  Thread Starter [tonywright](https://wordpress.org/support/users/tonywright/)
 * (@tonywright)
 * [20 years, 9 months ago](https://wordpress.org/support/topic/a-css-setting/#post-274227)
 * i dont see four lines in the existing code which look like that
 *  [Beel](https://wordpress.org/support/users/beel/)
 * (@beel)
 * [20 years, 9 months ago](https://wordpress.org/support/topic/a-css-setting/#post-274229)
 * Sorry, I guess there are css beginners and css **_beginners_** 😉
 * See the code you posted? It has “#democracy { }” in it. Just add the margin and
   font size between the brackets like I posted. If it didn’t have that, you would
   just add all of what I posted. The CSS does not have to already have the styling
   in it, you can add or delete to your heart’s content.
 *  Thread Starter [tonywright](https://wordpress.org/support/users/tonywright/)
 * (@tonywright)
 * [20 years, 9 months ago](https://wordpress.org/support/topic/a-css-setting/#post-274230)
 * when i change the fontsize number, it increases the thickness of the vote indicator
   bars, not the test.
 * i would also like to add a gap between the question and the first choice or result
 *  [Beel](https://wordpress.org/support/users/beel/)
 * (@beel)
 * [20 years, 9 months ago](https://wordpress.org/support/topic/a-css-setting/#post-274231)
 * It will change the font-size of everything within the “<div id=’democracy’>” 
   that is not specifically set elsewhere. To “hone in on” just the label text, 
   you might try:
 * #democracy label (
          font-size: 14px; }
 * Hopefully you are also getting the gist on just how to do this type of thing 
   generally.
 *  Thread Starter [tonywright](https://wordpress.org/support/users/tonywright/)
 * (@tonywright)
 * [20 years, 9 months ago](https://wordpress.org/support/topic/a-css-setting/#post-274232)
 * thank you ever so much beel, a true help. god bless you.
 * do you possibly know how i can add a space (alter the margin, see i’m learning
   the lingo!) between the title/poll question and the first result bar or choice?
 *  [Beel](https://wordpress.org/support/users/beel/)
 * (@beel)
 * [20 years, 9 months ago](https://wordpress.org/support/topic/a-css-setting/#post-274233)
 * You would look at the source and see exactly what separates the two things you
   wish to be farther apart. In this case it is an unordered list (ul) so you could
   use:
 * #democracy ul {
          margin-top: 20px; }
 *  Thread Starter [tonywright](https://wordpress.org/support/users/tonywright/)
 * (@tonywright)
 * [20 years, 9 months ago](https://wordpress.org/support/topic/a-css-setting/#post-274234)
 * thank you very much. the poll is looking a lot better. would you agree?
 * [http://www.rapnews.co.uk](http://www.rapnews.co.uk)
 * feel free to vote for anything but ‘yes’ so i can see what the other result bar’s
   will look like.
 * thank you very much once again.
 * if you were me, would you have the random qote and poll stuff appearing on every
   page of my site?
 * i can’t decide whether to define that it only stays on the main page.
 *  [Beel](https://wordpress.org/support/users/beel/)
 * (@beel)
 * [20 years, 9 months ago](https://wordpress.org/support/topic/a-css-setting/#post-274239)
 * Me personally, I’d have it in only one place. Once it is read, voted on, and 
   the results displayed, it is “done” and doesn’t need to “follow me” wherever 
   I go on your site (and if I make the decision not to vote I ain’t gonna vote 
   on any other page, either).

Viewing 15 replies - 1 through 15 (of 18 total)

1 [2](https://wordpress.org/support/topic/a-css-setting/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/a-css-setting/page/2/?output_format=md)

The topic ‘A CSS Setting’ is closed to new replies.

 * In: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
 * 18 replies
 * 2 participants
 * Last reply from: [tonywright](https://wordpress.org/support/users/tonywright/)
 * Last activity: [20 years, 9 months ago](https://wordpress.org/support/topic/a-css-setting/page/2/#post-274262)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
