How can I keep the background from turning black on scroll down?
https://www.fathompublishing.com/
How should I modify css so that menu text is bold?
Thanks.
How can I keep the background from turning black on scroll down?
https://www.fathompublishing.com/
How should I modify css so that menu text is bold?
Thanks.
You could try removing/commenting out the background (linear-gradient) declaration on this rule at line #55 in the typecrafters stylesheet.......
.amm-fixed {
padding: 10px 10px 0px 10px;
background-color: rgb(34,34,34);
border-bottom: 1px solid rgba(0,0,0,1.0);
background: linear-gradient(90deg, rgba(34,34,34,1) 50%, rgba(34,34,34,0.85));
}
It might be prudent not to apply <strong> to the menu items or to have CSS bold them, AMM uses a current mark system to indicate that 'you are here' this highlights the current page menu item by applying bold to it, if all menu items are bold/strong then this feature will become redundant. You can find the rule in the AMM stylesheet at/around line #149....
.p7AMM li a.current_mark {
font-weight: bold;
}
HTH
You must log in to post.