Following from my post about the menuitem class I have made some changes to the css code to achieve a greater degree of contrast.
Three suggestions for everyone to have a look at. Please feel free to comment and criticise.
In all cases I have increased the font size from 0.9em to 1em.
1: Bold text:
Code:
span.menuitem {
font-family: monotype, courier, sans-serif;
font-size: 1em;
font-weight: bold;
}
https://www.mobileread.com/forums/at...1&d=1614273962
2: Bold black text on light grey background.
Code:
span.menuitem {
font-family: monotype, courier, sans-serif;
font-size: 1em;
font-weight: bold;
background-color:lightgray;
}
https://www.mobileread.com/forums/at...1&d=1614273962
3: Bold white text on black background:
Code:
span.menuitem {
font-family: monotype, courier, sans-serif;
font-size: 1em;
font-weight: bold;
color: white;
background-color: black;
}
https://www.mobileread.com/forums/at...1&d=1614273962