• Also on [redundant link removed], which I’ve inherited, the added ul and li has different font size and color from the rest of the text.

    I have created the following on page CSS to remove the margins above and below the ul and li

    .column_column ul li
    {
       margin-bottom: 0px;
       margin-top: 0px !important;
    }
    .column_column ul li ul,
    .column_column ol li ol,
    .column_visual ul li ul,
    .column_visual ol li ol,
    .mfn-acc ul li ul,
    .mfn-acc ol li ol,
    .ui-tabs-panel ul li ul,
    .ui-tabs-panel ol li ol,
    .the_content_wrapper ul li ul,
    .the_content_wrapper ol li ol
    {
        margin-top: 0px;
    }
    

    Does anyone know how to fix the font size and color so it matches the rest of the black text on the page?

    • This topic was modified 6 years, 2 months ago by Steven Stern (sterndata). Reason: removed redundant link, expanded shortened link

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Are you referring to the text near the bottom of the page (“RA RFO Solicitation Protocol”, “RA RFO Offer Form”, etc.)? If so, those are all links and they take the color of the rest of the links on your site. I don’t recommend changing the color of that text because it could be confusing for readers, but if you really must:

    
    .column_column ul a,
    .column_column ol a,
    .column_visual ul a,
    .column_visual ol a,
    .mfn-acc ul a,
    .mfn-acc ol a,
    .ui-tabs-panel ul a,
    .ui-tabs-panel ol a,
    .the_content_wrapper ul a,
    .the_content_wrapper ol a
    {
        color: #282828;
        text-decoration: underline;
    }
    
Viewing 1 replies (of 1 total)
  • The topic ‘ul/li not matching rest of text’ is closed to new replies.