By mrad on Friday, 04 September 2020
Replies 3
Likes 0
Views 561
Votes 0
Hi!

How can I shorten the title's input textfield in the edit view? I am asking because it does not fit the layout on my mobile (see screenshot).

I have tried to experiment with the custom CSS box in the layout editor, such like:

#jevents .inputbox{
size: 20;
}

and

.inputbox{
size: 20;
}

But I did not succeed with that.

Best
Markus
Thanks for your suggestion. It didn't do the trick however, but I could achieve it with this here:

@media only screen and (max-width: 600px) {
#title.inputbox{
width: 100% !important;
}
}
·
4 years ago
·
0 Likes
·
0 Votes
·
0 Comments
·
You can try this in the jevcustom.css, I would use a % so it scales on all devices.


div.jevtitle {
width: 100%;
}
·
4 years ago
·
0 Likes
·
0 Votes
·
0 Comments
·
Glad you got it working.
·
4 years ago
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post