Currently, I am creating a new child theme for Twenty Fifteen completely from scratch. The one area I am struggling with is customizing the appearance of the blockquote using CSS.
Here is an example of the custom CSS I have added to the blockquotes within the child theme:
border-left: 4px solid #f1f1f1;
border-left: 4px solid rgba(31, 31, 31, 1);
border-style: inset;
color: #0099cc;
font-size: 18px;
font-size: 1.8rem;
font-style: italic;
line-height: 1.6667;
margin-bottom: 1.6667em;
padding-left: 0.7778em;
padding-top: 0.7778em;
padding-bottom: 0.7778em;
padding-right: 0.7778em;
margin-left: 0px;
background-color: #1f1f1f;
border-color: #cc0099;
While this styling works perfectly on larger screens, I am encountering an issue on smaller screens, particularly mobile resolutions. It seems that the blockquote CSS from the main theme is taking precedence over the custom styling I have applied. I am currently unable to pinpoint the reason behind this behavior.