Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Jacob N. Breetvelt

    (@opajaap)

    Your themes css file: wp-content/themes/Caprica/style.css on line 788 reads:

    .widget-container {
        color: #666666;
        font-size: 13px;
        list-style: none outside none;
        margin: 0 0 15px;
        padding: 0;
    }

    Add clear:both; to it, so it becomes:

    .widget-container {
        color: #666666;
        font-size: 13px;
        list-style: none outside none;
        margin: 0 0 15px;
        padding: 0;
        clear: both;
    }

    Thread Starter grudz

    (@grudz)

    that is amazing…thank you very much. I kept on trying to find it in the specific css for top10. It didnt occur to me that it was a general widget problem

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: WP Photo Album Plus] Last10 widget overlaps next widget’ is closed to new replies.