Format Ordered list and table
I've tried creating special classes for them to define, but they do not render.
Can you please advise me how to specify the ordered list and table content on this page via css?
This is not working:
ol {
font-family: Palatino,Palatino Linotype,Palatino LT STD,Book Antiqua,Georgia,serif !important;
font-style: normal;
font-variant: normal;
font-style: 15pt;
}
http://greatmeadowsfoundation.org/program/artist-professional-development-grants/
Thank you.
Comments
as we can see, you set abcd class for the li's inside ol. So to create special class for those items, you need to use the following css:
I'd like the all ordered lists and table content to all have the same font and size as the rest of the paragraph style.
ol li {
font-family: Palatino,Palatino Linotype,Palatino LT STD,Book Antiqua,Georgia,serif !important;
font-style: normal;
font-variant: normal;
font-style: 15pt;
}
.abcd {
list-style-type: upper-alpha !important;
}
ol li .abcd { color: #000 !important; font-family: 'Palatino,Palatino Linotype,Palatino LT STD,Book Antiqua,Georgia,serif ' !important; font-size: 15px !important; }