Hi!
is it somehow possible, that the user can decide, wether he wants to see the page in mobile or desktop view?
greets
Lucie
Hey Lucie!
Currently it is not possible out of the box and i am not really sure if it would be easily possible. Please feel free to request such feature here – https://kriesi.at/support/enfold-feature-requests/
Best regards,
Yigit
Hej Yigit,
ok, will do!
Another question: how can i change the color of bullet points?
thx!
Hi!
Can you please post the link to your page and point out the bullets you would like to edit?
Best regards,
Yigit
Hi!
It is not possible to have bullets and text in different colors. Please try following workaround
ul.liste li:before {
content: '■ ';
color: red;
}
ul.liste {
list-style: none;
}
Cheers!
Yigit
the color worked, but it doesn t make me a list anymore. “Diverse Auswertungsfunktionen, z. B. eine Buchungsstatistik über die gebuchten Vermittler-Provisionen” : the part “Vermittler-Provision” is not aligned proper…
and the bullets are at the bottom and not in the middle..
Hi!
it looks fine to me using Yigit’s code:
http://imgur.com/wOnkjuc
However, you can add this code as well:
ul.liste li:before {
position: relative;
top: -2px;
left: -2px;
}
to move the icon a little bit to the top and left. Adjust as needed.
Cheers!
Andy
thank you!