• Resolved logica3

    (@logica3)


    Hi I am trying to get this styled it is very close, but for some reason I can not get whatever padding or margin that is pushing it right (I want it to align left with the title) to go away. I have applied 0 margin and padding to about all the classes I can find.

    I also noticed that on every refresh of the page the list bullets show for a moment and then go away?

    Here is my site:
    wmis.logica3.com

    Here is the css I am using:

    /* =Keebo Twitter Feed
    -------------------------------------------------------------- */
    #kebo_twitter_feed_widget-2 {
    margin:0;
    padding:0;
    } 
    
    .kebo_twitter_feed_widget {
    margin:0;
    padding:0;
    } 
    
    ul.kebo-tweets {
    list-style:none;
    margin:0;
    padding:0;
    }
    
    li.ktweet {
    list-style:none;
    margin:0;
    padding:0;
    } 
    
    .kmeta {
    margin:0;
    padding:0;
    
    }

    http://wordpress.org/plugins/kebo-twitter-feed/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi logica3,

    I have taken a look at your site and the problem with the padding comes from the themes css file. In this case it is more specific than the plugin css.

    #widgets ul, #widgets ol {
        padding: 0 0 0 20px;
    }

    To adjust the padding you can use the following in the themes css file.

    #widgets ul.kebo-tweets {
        padding: 0;
    }

    or to align with the title you can use

    #widgets ul.kebo-tweets {
        padding-left: 5px;
    }

    For the list bullets, this occurs as our plugin loads with the footer and on some sites can have a delay for this reason. It seems to be with the speed the css files take to load upon refresh. Sorry but there is not a lot we can do about this.

    Thread Starter logica3

    (@logica3)

    Thanks for your help!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Trouble styling widget from child theme’ is closed to new replies.