Hey There,
when i change fields to just show the bottom border I always see a peak at the end, its not a hard ending. See Screenshot attached.
How can I change the css to improve the look?
/*kontaktformular linien */
#top .main_color .input-text, #top .main_color input[type='text'], #top .main_color input[type='input'], #top .main_color input[type='password'], #top .main_color input[type='email'], #top .main_color input[type='number'], #top .main_color input[type='url'], #top .main_color input[type='tel'], #top .main_color input[type='search'], #top .main_color textarea, #top .main_color select {
background-color: transparent;
border: 2px solid transparent;
border-bottom-color: #434b5b;
border-top-color: transparent;
border-radius: 0;
position: relative;
}
Thank you
Cheers
Monika
Hey Monika,
Try to replace this:
border: 2px solid transparent;
border-bottom-color: #434b5b;
border-top-color: transparent;
With this:
border-bottom: 2px solid #434b5b;
Best regards,
Rikard
Thank you Rikard,
sadly this does not work. The Peak is still there and now there is also die default hairline outline left right and top visible.
But when i “delete” these lines, then the peak goes away!
New Code:
background-color: transparent;
border-bottom: 2px solid #434b5b;
border-left:none;
border-right:none;
Border-top:none;
border-radius: 0;
position: relative;
thank you!