Joomla 4.0-dev branch
PHP 7.4
Labels |
Added:
?
|
Title |
|
Is making the image twice as big not an option?
We can change the background-position from 100%/116rem -> to 100%/126rem
.custom-select, .form-select {
...
background: url(../images/select-bg.svg) no-repeat 100%/116rem;
...
}
custom-select, .form-select {
....
background: url(../images/select-bg.svg) no-repeat 100%/126rem;
}
The problem starts at a width of 2354px and the solution posted by Angie does work only until a certain width, at 2528px the background appears again...
@drmenzelit we can go up from 100%/126rem -> to 100%/136rem;
Maybe somebody width a screen bigger than mine can play around width the em size
Status | New | ⇒ | Closed |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2023-01-08 10:34:47 |
Closed_By | ⇒ | richard67 | |
Labels |
Added:
No Code Attached Yet
Removed: ? |
It is caused by the use of the background image which is used for the dropdown arrow. Despite repeated attempts to change that it is supposed to be the full width of the field and not just for the arrow. Amongst many issues that this causes you just added another to the list.