Hi,
Thank you. Where do I find the Special Heading elements in the page and Styling > Font Sizes because it’s off on a few pages.
Thanks!
Hi,
UPDATE: We set the font size of the “Ready to take the Plunge?” heading to 40px.
Best regards,
Ismael
Hi,
Thank you for the update.
Did you check the value of the Styling > Font Sizes settings? Please edit the Special Heading elements in the page, then adjust the value of the Styling > Font Sizes settings.
Best regards,
Ismael
Hey jnightingale,
Thank you for the inquiry.
The font sizes of the Special Heading elements were configured manually. You have to adjust them by editing the elements and adjusting the values in the Styling > Font Sizes panel. Let us know the result.
Best regards,
Ismael
Hey, I’m trying to get this logo to switch to a different version below 1024px browser width. I’ve been using the filters from https://kriesi.at/support/topic/different-logo-in-the-header-for-mobile-version/ including the addition from @ismael for the screen width support https://kriesi.at/support/topic/different-logo-in-the-header-for-mobile-version/#post-965244 — The logo is switching for mobile but only for iPad mini and below (< 768px).
My situation may be further complicated because this is a Left Sidebar layout and I’m using some css to switch to the Top Header layout below 1024px.
So, here’s the code I’m using and the css below that — can you help me get the logo switching at 1024 so the big vertical logo doesn’t show on iPad Air and Pro? Thanks and lmk if you have any questions.
/* USE ALTERNATE LOGO FOR MOBILE HEADERS */
add_filter('avf_logo','av_change_logo');
function av_change_logo($logo) {
if(wp_is_mobile()) {
$logo = "https://deserttortoise.org/wp-content/uploads/desert-tortoise-council-50th-ann-logo-hor.png";
}
return $logo;
}
add_action('wp_footer', 'ava_custom_script');
function ava_custom_script(){
?>
<script type="text/javascript">
(function($)) {
$(document).ready( function() {
if($(window).innerWidth() <= 1024){
$('.logo img').attr('src', 'https://deserttortoise.org/wp-content/uploads/desert-tortoise-council-50th-ann-logo-hor.png');
}
});
})(jQuery);
</script>
<?php
}
/* SWITCH LEFT COLUMN TO TOP HEADER AT 1024 */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
.html_header_sidebar .av-sidebar-social-container {
display: none;
}
.responsive #top .av_header_transparency.av_alternate_logo_active .logo a > img {
opacity:1
}
.responsive #top .av_header_transparency .logo img.alternate {
display:none;
}
.responsive #top #wrap_all #header {
position: relative;
width:100%;
float:none;
height:auto;
margin:0 !important;
opacity: 1;
min-height:0;
}
.responsive #top #main {
padding-top:0 !important;
margin:0;
}
#header .avia-custom-sidebar-widget-area {
display:none;
}
.responsive.html_header_sidebar .logo {
padding: inherit;
}
.html_header_sidebar .logo img {
padding: 10px 10px 10px 30px;
}
#top #header .av-main-nav > li {
display: none;
}
#top #header .av-main-nav > li#menu-item-search {
display: block;
}
#top #header .av-main-nav > li.av-burger-menu-main.menu-item-avia-special {
display: block;
}
.html_header_sidebar .main_menu {
position: absolute;
margin: 6%;
}
.html_header_sidebar #header .av-main-nav {
padding: 0;
}
.html_header_sidebar .logo {
width: 40%;
}
}
@media only screen and (max-width: 1024px) {
#search-3.widget, #custom_post_widget-2.widget {
padding: 0 40px 40px 40px;
display: none;
}
}
@media only screen and (max-width: 1140px) {
.avia-button.avia-size-small {
padding: 10px 10px 8px;
font-size: 13px;
min-width: 65px;
}
}
@media print {
.html_header_left #top #header {
display: none;
}
.html_header_left #main {
margin-left: 0;
}
}
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
#search-4, #custom_post_widget-7 {
display:none;
}
}
Hey Martin,
Please try the following in Quick CSS under Enfold->General Styling:
.av-masonry-entry .av-masonry-entry-title {
font-size: 24px;
}
Best regards,
Rikard
Hello,
I’m currently setting up the site http://designplanung.de/projekt-012/whirlpools/chrom-serie/ and would like the headlines in the Masonry gallery to be larger (OMAHA, SEATTLE…). I thought I could set this by defining the H3 headings, but somehow nothing is happening. Where do I set this?
best regards,
Martin
Hey Andreotti,
Thank you for the inquiry.
You can adjust the font size in Enfold > General Styling > Typography, and for additional configurations, you can edit the Main Menu elements in Enfold > Advanced Styling. Let us know if you need further assistance.
Best regards,
Ismael
Hello I wish you the best wishes for the new year..
Can you please help me:
how can I change the font size in the main menu
thanks
Andrea K.
give this a try:
@media only screen and (min-width: 990px) {
.html_header_top.html_logo_center #top #header_main_alternate .main_menu {
width: 100%
}
.html_header_top.html_logo_center #header_main_alternate .main_menu #avia-menu {
display: flex !important;
flex-flow: row nowrap;
justify-content: space-evenly;
}
.html_header_top.html_logo_center #header_main_alternate .main_menu .av-main-nav > li > a {
padding: 0 !important;
font-size: 19px !important;
}
}
i guess you will set the header widget to display none on small screens
@media only screen and (max-width: 989px) {
#header .widget {
display: none;
}
}
by the way: is it intentional that the container width is set to 1130px ?
You have to find these rules:
@media only screen and (min-width:768px) and (max-width:989px) {
body,
body .avia-tooltip {
font-size:80px
}
h1 {
font-size:60px
}
h2 {
font-size:50px
}
h3 {
font-size:42px
}
}
@media only screen and (min-width:480px) and (max-width:767px) {
body,
body .avia-tooltip {
font-size:66px
}
h1 {
font-size:46px
}
h2 {
font-size:37px
}
h3 {
font-size:29px
}
}
@media only screen and (max-width:479px) {
body,
body .avia-tooltip {
font-size:53px
}
h1 {
font-size:38px
}
h2 {
font-size:28px
}
h3 {
font-size:20px
}
}
This is a very unusual scaling.
First of all, the value for the base (body) is set very high.
Even if you take the aspect of wai aria into account, a body font-size of 53 ( below 479px) is gigantic. For desktop screen widths, this is 13px.
Here I would rather go higher, e.g. to 16px.
Because you have set a merging of the styles – i can not say where the rules comes from ( maybe it is a merging of W3total Cache ).
have a look if you have set on General Styling – Typography these values or in your quick css.

Hi,
I added to the quick css
body {
font-size: 16px;
letter-spacing: .04rem;
font-family: univers, ‘univers’, ‘Univers LT Std’;
font-weight: 400;
font-style: normal;
}
And added a link in the header
<link rel=”preload” href=”UniversLTStd-LightCn.woff2″ as=”font” type=”font/woff2″ crossorigin>
This works
Thank you for thinking with me
Best regards, Wouter
Hi,
Thank you for the update.
Yes, you can adjust the style as you wish and include the font-family property if you want to change the font:
.grid-entry-title {
font-size: 13px;
margin: 0;
padding: 0;
font-weight: 500;
font-family: 'Roboto';
}
If you want to adjust the font globally, go to Enfold > General Styling > Fonts tab. For more info, please refer to this documentation: https://kriesi.at/documentation/enfold/typography/#overview
Best regards,
Ismael
Hi,
For the /artikler/ page titles to look like the /blog/ page titles,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:
.grid-sort-container .grid-entry-title {
font-weight: 600;
font-size: 15px;
}
or for the other way:
.av-masonry-entry-title.entry-title {
font-weight: 500;
font-size: 13px;
}
After applying the css, please clear your browser cache and check.
Best regards,
Mike
Hi,
Thank you for the update.
If you need to specifically target the elements in the mega menu, you can start with this css code — take note of the comments:
/* description */
#top #header .avia_mega_div > .sub-menu > li > ul li {
font-size: 100px;
}
/* menu items */
#top #header .avia_mega_div .sub-menu li a .avia-menu-text {
font-size: 50px;
padding: 50px 0;
}
/* mega menu title */
#top #header .mega_menu_title {
margin-bottom: 8px;
font-size: 90px;
line-height: 1.1em;
font-weight: 600;
display: block;
}
You may need to remove this css code:
.sub-menu li a .avia-menu-text {
font-size: 20px !important;
padding: 20px 0 !important;
}
And make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings and purge the cache after the modification.
Best regards,
Ismael
Hi, I checked the resource you recommend but there is no way to change the just the font family or the link size for the links specifically in my mega menu. I do see a way to change all the element size using the advanced settings but I need the link element specifically in the mega menu. I wanted to have different fonts and sizes for the links and headers in the mega menu. The advanced styling setting make everything the same font. Please let me know if this is doable.
This thread highlights what I’m trying to do but the code did not work. https://kriesi.at/support/topic/enfold-mega-menu-font-sizes-and-spaces/
Basically I want the links a different font family than the header and smaller. I thought this code would work but it doesn’t
#top #header .avia_mega_div > .sub-menu > li > ul > li a { font-size: 16px; }
How do I change the size and the font family for the link in my mega menu?
How do I change the font size and font family for the description text box in my mega menu?
Hey John,
Thank you for the inquiry.
You may need to adjust the font sizes in the Enfold > General Styling > Typography tab. Let us know if you need further assistance.
Best regards,
Ismael
Hey Dzimnikov,
Thank you for the inquiry.
Try to add this script in the functions.php file to create another container below the product description or shop banner :
function ava_custom_add_shipping_text_script() {
if (is_shop()) {
?>
<script>
(function ($) {
$(document).ready(function () {
var newContainer = $('<div class="av-custom-shipping-container"><p>Free Shipping on All Orders!</p></div>');
$('#av_product_description .container').after(newContainer);
});
}(jQuery));
</script>
<?php
}
}
add_action('wp_footer', 'ava_custom_add_shipping_text_script', 99);
Then add this css code to adjust the style of the new container:
#top .av-custom-shipping-container {
background: red;
padding: 20px;
}
#top .av-custom-shipping-container p {
color: #ffffff;
font-size: 40px;
}
Best regards,
Ismael
Hello,
Not sure if I’m losing my mind here but to change the font sizing of headings and body text – wasn’t this in General Styling/Fonts where you can choose the font type and then the font size from within the same tab section? I only have the font type – where did the sizing go?
Thanks
John
Hey yifatcohen,
Thank you for the inquiry.
We adjusted the css modification a bit — please try it again:
#top .avia-button-wrap .avia-button, #top .button {
background: #990033;
background-image: -webkit-linear-gradient(top,#990033,#ff924d);
background-image: -moz-linear-gradient(top,#990033,#ff924d);
background-image: -ms-linear-gradient(top,#990033,#ff924d);
background-image: -o-linear-gradient(top,#990033,#ff924d);
background-image: linear-gradient(to bottom,#990033,#ff924d);
-webkit-border-radius: 26px;
-moz-border-radius: 26;
border-radius: 26px;
font-family: Arial;
color: #ffffff;
font-size: 20px;
padding: 10px 20px 10px 20px;
text-decoration: none;
bottom: 0px;
border-color: transparent !important;
border: 0;
}
Best regards,
Ismael
I added this CSS code to change all buttons to gradients:
.avia-button, .button {
background: #990033;
background-image: -webkit-linear-gradient(top, #990033, #ff924d);
background-image: -moz-linear-gradient(top, #990033, #ff924d);
background-image: -ms-linear-gradient(top, #990033, #ff924d);
background-image: -o-linear-gradient(top, #990033, #ff924d);
background-image: linear-gradient(to bottom, #990033, #ff924d); !important;
-webkit-border-radius: 26;
-moz-border-radius: 26;
border-radius: 26px; !important;
font-family: Arial;
color: #ffffff;
font-size: 20px;
padding: 10px 20px 10px 20px;
text-decoration: none;
bottom: 0px;
}

You’ll notice 2 things:
1. the main blue color is still showing up there as a shadow
2. the border-radius seems to be ignored completely.
How do I fix that?
Ah, you can see it live here – https://gregward.com/
Hello, thank you. The font in the left column of the table is fine, we inserted the bold element on purpose. What I consider problematic is the right column, please see the attached screenshot 1. Here you can see that the text “A” (paragraph) is larger and narrower than the text “B”. This is despite the fact that the default font size has been defined as 15px (the same as for paragraphs). Please see the attached screenshot 2. How can we solve this?
Hey pramedia,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:
#main .scroll-down-link:before {
color: #fff;
font-size: 80px;
}
After applying the css, please clear your browser cache and check.
Best regards,
Mike
Hi,
I would like to change Main menu color and font size.
I tired many things but…
how to increase the font size and change colors
Thnak you so much
Hi,
How can I place the icon in the middle?
Make sure the background-position is set to center center, and adjust the value of the background-size property if you need to reduce the size of the images.
Example:
div[data-av_icon="\e804"] {
content: " ";
background-image: url(/wp-content/uploads/2024/12/Goering_Icon5_eKey_farbig_RGB.png) !important;
background-size: 50%;
background-repeat: no-repeat;
font-size: 0 !important;
background-position: center center;
}
Best regards,
Ismael
Hi,
Thank you for the update.
1. Remove the text Share This Entry
2. Remove the Hover Tabs “link to facebook” etc
3. Make the icons smaller – one one line?
Please add the following css code to adjust the social icons based on your requests above:
#top #footer-page .av-social-sharing-box:not(.av-social-sharing-box-default) .av-share-box ul li .avia-related-tooltip.avia-tt {
display: none !important;
}
#top #footer-page .av-social-sharing-box:not(.av-social-sharing-box-default) .av-share-box ul {
display: flex;
}
#top #footer-page .av-social-sharing-box.av-social-sharing-box-same-width .av-share-box ul li a {
width: 30px;
height: 30px;
}
#top #footer-page .av-share-box ul li a {
display: block;
padding: 2px 0;
text-decoration: none;
color: inherit;
font-size: 11px;
transition: all 0.2s ease-in-out;
}
4. Change the background color of the icons and icon color?
Then use this css code to adjust the background and color of the social icons — note the selector “.av-social-link-facebook” when modifying other social icons.
#top #footer-page .av-social-sharing-box.av-social-sharing-box-color-bg .av-social-link-facebook a {
color: #fff;
background-color: #37589b;
}
Best regards,
Ismael