Customizing the Toolbar:
#main_bar {
background: url(../images/logo.jpg) 99% 50% no-repeat;
background-size: auto 80%;
}
The original size of logo.jpg is 220x266px
The toolbar has a fixed height of 46px
Therefore, the background image appears to be about 36px in height
It should be noted that the toolbar design remains consistent across all two pages
However, an issue arises as follows: The clarity of the image is perfect upon app initialization but becomes blurry when transitioning to the second page. The blurriness persists even upon returning to the first page.
After attempting to adjust with the following code:
background-size: auto 36px;
The problem still persists despite this change
Any advice or recommendations on how to address this concern would be greatly appreciated
Thank you, Irina