• I would like to display the avatars with the user names. However, when I do so, they change to a single vertical column. When I go into firebug to detect which css rule is causing this, it indicates that widget.css line 12:
    .multiwidget_author_avatars .author-list .with-name {
    display: block;

    If I eliminate this rule in firebug, they change back to the multi-column display I like. However, when I modify widget.css in the real world, it has no effect. How can I get the multi-column / rows with user names displayed?

    https://www.ads-software.com/plugins/author-avatars/

Viewing 8 replies - 1 through 8 (of 8 total)
  • Plugin Author Paul Bearne

    (@pbearne)

    try just added to you main CSS sheet

    body .multiwidget_author_avatars .author-list .with-name {
    display:inline;
    }

    Plugin Author Paul Bearne

    (@pbearne)

    Sorry use this instead as that css will break in the next version CCS

    body .multiwidget_author_avatars .author-list .with-name,
    body .widget_author_avatars .author-list .with-name,{
    display:inline;
    }

    Thread Starter wadams92101

    (@wadams92101)

    Thank you. I’ll give it a try.

    Thread Starter wadams92101

    (@wadams92101)

    Hi Paul: I used some similar css and it worked on most of my subdomain sites of my multisite network but not the main site – maybe some sort of plugin conflict. I’ll keep trying. I do have another question but will start a new topic for that.

    Thread Starter wadams92101

    (@wadams92101)

    Paul: The css I ended up using was
    .multiwidget_author_avatars .author-list .with-name {
    float: left;
    width: 89px;
    height: 133px;
    }

    It seems to be working. See any downsides?

    Plugin Author Paul Bearne

    (@pbearne)

    in the next version

    .multiwidget_author_avatars .author-list .with-name

    will be become

    .widget_author_avatars .author-list .with-name

    So make the selector

    .multiwidget_author_avatars .author-list .with-name,
    .widget_author_avatars .author-list .with-name

    but otherwise if it work it good ??

    Thread Starter wadams92101

    (@wadams92101)

    Thanks Paul!

    Hi Paul:
    I tried your solution to create columns, and it did not work. W Adams solution worked, but, links to author’s work were rendered void. Any ideas? Thank you!

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Columns’ is closed to new replies.