• Resolved palliso13

    (@palliso13)


    Is it possible to get a fix for the formatting issue that arises when the name of a page (or other widget entry) goes more than one line? See first entry under Odds and Ends below for an example I made up of what I’m talking about.

    Ideally, the part that starts with “Related” would line up with the “This” on the previous line.

    It happens in other widgets, too. Top Posts is an example of another widget that has this problem at times.

    Screen shot of issue

Viewing 3 replies - 1 through 3 (of 3 total)
  • @palliso13!

    The text on list items in Minnow wraps that way because the usual bullets you see on a list have been replaced by an arrow character.

    You could switch your site to use standard bullets, which will align differently, with this CSS:

    .widget ul li {
        list-style: disc outside;
        margin-left: 17px;
    }
    
    .widget ul li:before {
        display: none;
    }

    You could, if you’d like to keep the customized bullets, make an image of them, and use the list-style-image CSS property along with the above CSS.

    Thread Starter palliso13

    (@palliso13)

    Thanks. This worked perfectly. I appreciate the quick response.

    My pleasure!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Formatting issue’ is closed to new replies.