I have a name plate image labeled (PAST CHAMPIONS) for the plaque, and it appears fine on most screens except for iPhone portrait mode, where it gets cut off.
Is there a way to make this image scale without using media CSS?
Here is the link to the homepage:
The original code still in CSS:
#championship_plaque h2 {
background:
rgba(0, 0, 0, 0)
url( "http://dagrafixdesigns.com/Images/2008/DA_2017/DA_Pro16/plaquetitle_glass.png" )
no-repeat
scroll
center center
!important;
border: 0 none;
margin-left: 25px;
text-indent: -9999px;
}
I tried this code with no success:
#championship_plaque h2 {
background:
rgba(0, 0, 0, 0)
url( "http://dagrafixdesigns.com/Images/2008/DA_2017/DA_Pro16/plaquetitle_glass.png" )
no-repeat
scroll
center center
!important;
background-position: 70% 0;
background-repeat: no-repeat;
background-size: cover;
padding-bottom: 20px;
padding-top: 20px;
}
Desktop view:
https://i.sstatic.net/Klxu1.png
Mobile view:
https://i.sstatic.net/hgmdg.png
If all else fails, I suppose I can use a media query to switch to a new image for this screen size. Just exploring other options first. Thank you!