[CLOSED] CSS Overide

  1. #1

    [CLOSED] CSS Overide

    Hi, I'm looking at overriding a small amount of css.

    .x-boundlist-item {
        padding: 0 10px;
        font: normal 13px 'Open Sans', 'Helvetica Neue', helvetica, arial, verdana, sans-serif;
        line-height: 30px;
        cursor: pointer;
        cursor: hand;
        position: relative;
        border-width: 1px;
        border-style: dotted;
        border-color: #fff;
        color: #404040;
    }
    Just want to change the padding to 0, instead of 0 10px.

    Just added the below to my own css file in hopes to override it but with no luck.
    Is there a way i can do this easily?

    .x-boundlist-item  {
        padding: 0px;
    }
    Please let me know if you require more context to its application.

    Thanks

    Guy
  2. #2
    Hi. Try running the css with the !important modifier to the statement.

    .x-boundlist-item  {
        padding: 0px !important;
    }
    Hope this helps.
  3. #3
    Hi Geoff,

    Thank for that, this has worked.

Similar Threads

  1. [CLOSED] CSS Class : How to set CSS class to TextField
    By matrixwebtech in forum 2.x Legacy Premium Help
    Replies: 3
    Last Post: Jan 23, 2015, 7:50 PM
  2. Prevent application CSS from overriding Ext.NET CSS
    By raihaniqbal in forum 2.x Help
    Replies: 2
    Last Post: Nov 12, 2014, 9:44 AM
  3. Replies: 2
    Last Post: May 08, 2012, 1:04 PM
  4. [CLOSED] How to use CSS
    By trieu.tran in forum 1.x Legacy Premium Help
    Replies: 1
    Last Post: Mar 30, 2012, 11:05 AM
  5. Manage Coolite CSS and my CSS.
    By jeeshenlee in forum 1.x Help
    Replies: 1
    Last Post: May 27, 2010, 10:45 PM

Posting Permissions