Hi,
Oops, I adjusted to this:
#avia2-menu #menu-item-599 a:before {
content: "\e800";
font-family: fontello;
font-size: 16px;
color: #000;
}
#avia2-menu #menu-item-599 a{
font-size: 0;
}
#avia2-menu #menu-item-673 a:before {
content: "\e835";
font-family: fontello;
font-size: 16px;
color: #000;
}
#avia2-menu #menu-item-673 a{
font-size: 0;
}
Please clear your browser cache and check.
Best regards,
Mike
Hi,
Thank you, I see this menu:

and these custom icons:

If you use this css:
#avia2-menu #menu-item-599:before {
content: "\e800";
font-family: fontello;
font-size: 16px;
color: #000;
}
#avia2-menu #menu-item-599{
font-size: 0;
}
#avia2-menu #menu-item-673:before {
content: "\e835";
font-family: fontello;
font-size: 16px;
color: #000;
}
#avia2-menu #menu-item-673{
font-size: 0;
}
you should see this result:

After applying the css, please clear your browser cache and check.
Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
Best regards,
Mike
Hi,
Thanks for the login, I corrected the curly quotes so the font for the mobile menu and blog category is correct now.
I also found that you had an unclosed media query in your quick css breaking the mobile font size.
I saw the issue with the h4 “Unsere Podencos” on the homepage, since this is corrected I assume the others are also, please clear your browser cache and check.
I will close this thread, if you still have issues please respond to the other thread, thank you for using Enfold.
Best regards,
Mike
Hi,
Thanks for the login, I corrected the curly quotes so the font for the mobile menu and blog category is correct now.
I also found that you had an unclosed media query in your quick css breaking the mobile font size.
I saw the issue with the h4 “Unsere Podencos” on the homepage, since this is corrected I assume the others are also, please clear your browser cache and check.
I will close this thread, if you still have issues please respond to the other thread, thank you for using Enfold.
Best regards,
Mike
Hi,
Thanks for the login, I corrected the curly quotes so the font for the mobile menu and blog category is correct now.
I also found that you had an unclosed media query in your quick css breaking the mobile font size.
I saw the issue with the h4 “Unsere Podencos” on the homepage, since this is corrected I assume the others are also, please clear your browser cache and check.
Best regards,
Mike
Hi,
I don’t find a way to change the displayed font of blog category in the blog excerpt.
It now looks like this

After putting this into CSS
.blog-categories a, span.blog-author a, time.date-container, span.blog-author, h5.av-share-link-description {
font-family: ‘Ubuntu Condensed’, sans-serif;
color: #4e4e4e;
}
it looks like this

So the category line “WIE WIR ZU UNSEREN HUNDEN KAMEN” has been affected, but it is not Ubuntu Condensed. Similar problem like
https://kriesi.at/support/topic/font-and-font-size-in-mobile-menu/
?
Is there a solution?
Thanks in advance
Tom
Hi,
I try to change the font and font size in the mobile menu by this css:
@media only screen and (max-width: 767px){
#top #wrap_all .av-burger-overlay .av-burger-overlay-scroll #av-burger-menu-ul li a {
font-family: ‘Ubuntu Condensed’, sans-serif;
color: #919191 !important;
padding-top:10px;
line-height:10px;
}
But the result is not Ubuntu Condensed which is of course downloaded and used in headers and body.

Is there any solution?
Thanks in advance
Tom
Hi,
Thank you for your patience to move the arrows from the edge equally please try this css:
@media only screen and (max-width: 1024px) {
#main .av-tab-above-content .av-tabsection-arrow {
position: absolute;
width: 90%;
top: 30px;
left: 5%;
}
}
expected results mobile:

expected results tablet:

To also change the color and size try adding this css:
@media only screen and (max-width: 1024px) {
#main .av-tab-above-content .av-tabsection-arrow {
position: absolute;
width: 90%;
top: 30px;
left: 5%;
}
#main .avia-slideshow-arrows a:before {
color: #bfdc1e;
font-size: 20px;
font-weight: 900;
}
}
for this result:

Best regards,
Mike
Hey enfold,
There’s nothing in that CSS which would effect images and container width. Did you try closing the media query properly?
@media only screen and (max-width:767px) {
#top #wrap_all .av-burger-overlay .av-burger-overlay-scroll #av-burger-menu-ul li a {
font-size: 18px;
text-transform: uppercase;
}
}
Best regards,
Rikard
Hi guys,
I found on the forum, this css code to change font mobile style:
@media only screen and (max-width:767px) {
#top #wrap_all .av-burger-overlay .av-burger-overlay-scroll #av-burger-menu-ul li a {
font-size: 18px;
text-transform: uppercase;
}
Initially works ok on mobile, but in desktop it changes hover images site styles and modify width container.
I need the code to modify just menu mobile font style.
Can you help me with this please?
Hey,
Out of the box that is not possible.
As a workaround, please edit your Hotspot element and give it a custom CSS class (“custom-hotspot” in example below) in Advanced > Developer Settings, add following code to bottom of Quick CSS field in Enfold theme options > General Styling and adjust it as needed
#top .custom-hotspot .av-image-hotspot a {
color: transparent;
background-color: transparent;
}
#top .custom-hotspot .av-image-hotspot-1 a::after {
color: #000;
content: 'STILLS';
font-size: 40px;
}
#top .custom-hotspot .av-image-hotspot-2 a::after {
color: #000;
content: 'ABOUT';
font-size: 40px;
}
#top .custom-hotspot .av-image-hotspot-pulse {
display: none;
}
Best regards,
Yigit
Dear Kriesis,
problem is solved! By default the icon is italic. So I changed the font-style to normal:
image-overlay.overlay-type-image .image-overlay-inside::before {
content: “\E803”; /* magnifiing glass */
font-family: ‘entypo-fontello’;
font-size: 3em; /* enlarged */
font-weight: normal;
font-style: normal; /* changed */
}
You can close the thread.
Best regards
Anne
Dear Kriesis,
I replaced the expand icon at the image overlay with the entypo magnifying glass. It works so far but the icon is compressed and looks weired (please see link attached):
.image-overlay.overlay-type-image .image-overlay-inside::before {
content: “\E803”; /* magnifiing glass */
font-family: ‘entypo-fontello’;
font-size: 5em; /* enlarged */
font-weight: normal;
}
What is wrong?
Best regards
Anne
Hi THP Studio,
I have added this CSS code and it adds the button on the mobile:
@media only screen and (max-width:767px) {
#top .avia-slide-wrap a.mfp-iframe:before {
content: '';
background: rgba(238,48,35,.7);
border-radius: 15px;
display: block;
margin: -50px 0 0 -75px;
transform: scale(0.5);
width: 150px;
height: 100px;
position: absolute;
top: 50%;
left: 50%;
z-index: 50;
}
#top .avia-slide-wrap a.mfp-iframe:after {
content: '\E897';
font-family: 'entypo-fontello';
font-size: 1.8em;
top: 50%;
left: 50%;
position: absolute;
z-index: 60;
color: #fff;
transform: translate(-50%, -50%);
}
}
As for “More videos”, I don’t seem to see the issue on my end.
Also on your site, I don’t see related videos when the video is paused, did you remove it?
Best regards,
Nikko
Hi,
Glad to hear this helped, for mobile it looks like you are overriding the 100vh with 100%!important:
@media only screen and (max-width: 480px){
.av-layout-grid-container {
height: 100% !important;
}
}
I recommend using 100vh;
and for the inner container you are adding: height: auto !important;
media only screen and (max-width: 767px){
.responsive #top #wrap_all .av-flex-cells .no_margin {
display: block;
margin: 0;
height: auto !important;
overflow: hidden;
float: left;
clear: none;
width: 100%;
}
}
I recommend setting the height to 50vh like this:
@media only screen and (max-width: 767px) {
.responsive #top #wrap_all #main .av-flex-cells .no_margin {
height: 50vh !important;
}
}
and changing the top padding for mobile to 20px from the current 70px, this looks like the text will then fully show, you could also tweak the font size a little or change the image height a little to allow more room for the text.
Best regards,
Mike
Hello together
I have created a homepage here
link of the page below:
There is a table
there it has links and text
with this code I want to change the colour of the link and the text
colour text the link works white like the link below it
I want the link in the table to have the same colour as the text
the link below must stay white
here is my code:
/*format Tabelle*/
.avia-table tr th, .avia-table tr td {
text-decoration: none !important;
font-size: 15px !important;
color: red !important;
}
is the possible
thanks in advance
kind regards
Franz
Hey volpagirl,
Thank you for the link to your site, please try this css:
.header_color .main_menu ul ul,
.header_color .main_menu .menu ul li a span,
.header_color .main_menu .menu ul li a:hover {
background-color: #930c15;
font-size: 16px;
font-weight: 600;
}
After applying the css, please clear your browser cache and check.
Best regards,
Mike
I know this might be a question which has been answered before several times but my search didnt get any results.
How can I change the font size of my main menu items? I need the right CSS
thanks
Hi,
You can change the main font size under Enfold->General Styling->Typography. Sub level links can be set under Enfold->Advanced Styling.
You can add a link like this in the copyright field:
<a href="https://link.to/site">Link text</a>
Best regards,
Rikard
Hi,
Please try the following in Quick CSS under Enfold->General Styling:
@media only screen and (max-width: 990px) {
#av-burger-menu-ul li {
font-size: 24px;
}
}
Best regards,
Rikard
-How do I increase the general font size? My client keeps saying they want the text to be larger. Main body of text and sub menu items.
-I’ve managed to change this info on the bottom bar but how do I create a link in this area?
© Copyright – Enfold Theme Demo – Enfold Theme by Kriesi
Hope you can help.
Hi Lene,
Please go to Enfold theme options > General Styling > Typography and adjust “Default Content Font Size” as needed.
Best regards,
Yigit
Hi
We have very different representations of fonts and headings in different mobile browsers. Sometimes graphics are not displayed. How can we solve this problem?
===
Wir haben sehr unterschiedliche Darstellungen von schriften und Überschriften in den verschiedenen mobilen Browsern. Teilweise werden auch Grafiken nicht angezeigt. Wie können wir das Problem lösen?
Thanks, solf
This reply has been marked as private.
Hey William,
Thanks for your question, please try this css:
#top.home #wrap_all .main_color .post-entry.tag-featured-post h2.post-title {
font-size:32px;
}
#top.home #wrap_all .post-entry.bloglist-simple .blog-categories a {
font-size:13px;
}
After applying the css, please clear your browser cache and check.
Best regards,
Mike
Hey CopperCityCreative,
Thanks for the link to your site, I see that you have already installed the Font Awesome font, so to add a Font Awesome icon to before the accordion title you first need to find the unicode for the icons you wish to use, for example f09d is a credit card and f3d1 is cash.

Then add the unicode to css like this:
.togglecontainer p[data-fake-id="#toggle-id-1"]:before {
font-family: "Font Awesome 5 Free";
content: "\f09d";
font-size: 40px;
padding-right: 12px;
}
.togglecontainer p[data-fake-id="#toggle-id-1"] {
display: flex;
}
.togglecontainer p[data-fake-id="#toggle-id-2"]:before {
font-family: "Font Awesome 5 Free";
content: "\f3d1";
font-size: 40px;
padding-right: 12px;
}
.togglecontainer p[data-fake-id="#toggle-id-2"] {
display: flex;
}
This is the result:

After applying the css, please clear your browser cache and check.
Best regards,
Mike
Hi there, I cannot get this font, Fraunces, to show up in the Thin 100 weight.
https://fonts.google.com/specimen/Fraunces
I would like it to show up in my H2, looking like Fraunces-Thin-100.
Under Quick CSS I have pasted:
h2 {
font-family: ‘Fraunces’, serif !important;
font-weight: 100 !important;
font-size: 38px;
text-transform: none !important;
}
——-
The font family, font size, all work well with that CSS code, but not the font weight, trying to get it to be Thin 100.
Would you have any ideas? Thank you!
Hi Team,
Looking at my website in Firefox today, I noticed that some text elements are not aligning properly. [See linked page below for example.]
These text elements render correctly in Edge & Chrome.
My custom CSS is below:
Thanks for you assistance,
Stephen.
====
/*
.responsive .container {
max-width: 100%;
padding-right: 0px;
padding-left: 0px;
padding-top: 0px;
padding-bottom: 0px;
}
*/
.clientlogo {
text-align: center;
}
.clientlogogallery {
max-height: 100px;
}
#top .mfp-image-holder .mfp-content {
max-width: 90vw;
}
body#top {
font-size: 125%;
}
*/
.avia-image-container .avia-image-container-inner {
top: -60px;
padding-top: 0px;
padding-bottom: 0px;
}
.responsive .container {
max-width: 100%;
padding-top: 0px;
padding-bottom: 0px;
}
*/
#top.blog .post-entry .blog-meta .small-preview .iconfont:before {
display: none;
}
#top.blog .post-entry .blog-meta {
display: none;
}
#main a {
text-decoration: underline;
}
====
Hi,
I see you have a custom font size set in your css with !important; it would be best if you change this:
@media only screen and (max-width: 767px)
h3 {
font-size: 23px !important;
}
If you can’t try this css:
@media only screen and (max-width: 767px) {
#vorstand h3.team-member-name {
font-size: 12px !important;
}
}
To reduce the top margin of the second row on desktop try this css:
@media only screen and (min-width: 768px) {
#top #wrap_all #vorstand .flex_column.av_one_fourth.column-top-margin {
margin-top: 25px;
}
}
adjust the number to suit.
Best regards,
Mike
Hi,
I see that you have this custom css:
@media only screen and (max-width: 767px){
.myslider {
margin-left: -40px;
margin-right: -25px;
margin-top: 25px;
margin-bottom: 0.5px;
}
}
To center the items please change it to this:
@media only screen and (max-width: 767px){
.myslider {
margin-top: 25px;
margin-bottom: 0.5px;
}
}
and then add this css:
@media only screen and (max-width: 767px) {
.responsive #top #team .av-large-testimonial-slider.avia-testimonial-wrapper .avia-testimonial {
padding: 0;
font-size: 0.85em;
display: flex;
justify-content: center;
}
}
Then to show the arrows remove your custom css:
.avia-slideshow-arrows.avia-slideshow-controls {
opacity: 0;
}
.avia-slideshow-arrows {
display: none !important;
}
Then add this css:
#top #team .avia-slider-testimonials.av-slideshow-ui .avia-slideshow-arrows a {
opacity: 1;
}
Please see the screenshot in the Private Content area of my test results.
Best regards,
Mike