hello
i tweaked a widget title here – but for ipad orientation – i cant seem to adjust it:

this is the code i added for mobile and it worked!
@media only screen and (max-width: 375px){
.widget-title {
color: #ffffff;
font-size: 1.14rem;
font-weight: 900;
letter-spacing: 1px;
margin-bottom: 1.56em;
padding-left: 90px;
padding-top: 15px;
text-transform: uppercase;
}
this is the code i added for ipad & it didnt work:
@media only screen and (min-width: 768px) and (max-width: 994px) {
.widget-title {
color: #ffffff;
font-size: 1.14rem;
font-weight: 900;
letter-spacing: 1px;
margin-bottom: 1.56em;
padding-left: 28px;
padding-top: 15px;
text-transform: uppercase;
is it possible to give me the correct css for:
mobile portrait
mobile landscape
ipad-tablet portrait
ipad-tablet landscape
thank you!