badget

Biggest Sale! Special Offer!

Get 30% discount on all of our single themes with this coupon code: #30%SALE

Hurry up! *Limited time offer*

Fixes for getting bullets on lists in sidebar and links showing in lists

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #26049
    Tony
    Participant

    In the standard theme, links in lists are not coloured until you hover over them.
    Theme Horse provided me with the following custom css to make them show:

    /*  make links in lists visible */
    #content ul a, #content ol a {
     color: #05a9c5;
    }

    In the standard theme, lists in sidebar widgets such as the bbPress Recent Topics widget have no bullet and thus it is difficult to see where one entry ends and another starts. Robin Wilson, author of various bbPress plugins came up with the following, which restores bullets to all lists in all widgets.

    /* fixes for Activity widget styling */
    .widget ul {
        list-style-type: disc;
    }
     
    .widget ul a, .widget ol a {
     color: #05a9c5;
    }

    This also gets styling of his Latest Activity widget (part of his bbp style pack) working.

    Hope this is useful, Tony

    #26062

    Thanks for helping us Tony

    Thank you!

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.