• Resolved cetaceancousins

    (@cetaceancousins)


    Hi

    Sorry I have another question. I have tried to amend the css file to change the font size and colours of the default table (see link) however it does not appear to be changing.

    I wanted Verdana font, size 14/16 and the table to be blue and white. I did edit the file named stafflist.css, is this the correct one?

    Thanks in advance.

    PS – it is a great plugin! especially when you have tons of data to display and want an easy way to manage it

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

Viewing 1 replies (of 1 total)
  • Plugin Author ERA404

    (@era404)

    We see your theme (Hueman) allows you to inject Custom CSS into the head as it seems thats where your customizations are. You can override any of the default styles for Stafflist with styles that are more specific to your elements than the default ones:

    Default Stafflist styles cascade from:

    .staffdirectory .stafflists ...

    Simply add custom CSS to your head and make yours start with a parent element or ID to override. e.g.,

    article .staffdirectory .stafflists th {
        background-color: blue;
        font-family: Verdana;
        font-size: 14px;
        line-height: 16px;
    }
    article .staffdirectory .stafflists th a {
        color: #FFF;
    }

    Or use the !important modifier on styles you want to override. e.g.,

    .staffdirectory .stafflists th {
        background-color: blue !important;
    }

    Please let us know if you have any other questions or issues.

Viewing 1 replies (of 1 total)
  • The topic ‘CSS changes’ is closed to new replies.