Hi Team,
I hope you are well.
Unfortunately, I have been unable to do an Enfold update for a while because it changes my headings’ font sizes and colours.
I’ve tried twice now and needed to return to a backup version before the update.
Any help would be greatly appreciated.
Warmest regards,
Darren
Hi Illingco,
Please try to replace the code I gave with this one:
#top #wrap_all .socket_color .av-subnav-menu .av-menu-button-colored>a .avia-menu-text {
color: #fff;
font-size: 12px;
background-color: #404040;
border: 2px solid white;
border-radius: 2px;
border-top-left-radius: 2px;
border-top-right-radius: 2px;
border-bottom-right-radius: 2px;
border-bottom-left-radius: 2px;
}
#top .av-subnav-menu>li>a {
background-color: transparent;
margin: 0 6px;
border: 0;
color: white;
}
#top .av-subnav-menu>li>a:hover {
opacity: 0.9;
}
Best regards,
Nikko
Hi Ismael
I have done as you said, but I still cannot get it to work.
The LInkedIn icon is still not added to the footer on my page.
When I look at the code for the link to Facebook, it looks like this:
[av_font_icon icon='ue8f5' font='entypo-fontello' style='' caption='' link='manually,https://www.facebook.com/care4burn/' linktarget='_blank' size='40px' position='left' color='#333333' av_uid='' admin_preview_bg=''][/av_font_icon]
I still don’t understand hos I can add a LInkedIn icon.
I am working in Appearance>Widgets/Customize. I want to add the LinkedIn icon with link to Care4Burns LinkedIn in the Footer Column 4.
Please help. Thank you.
Kind regards Karianne
I’m trying to change font type and size and vertical spacing between in the heading of a blog post. I know this has been answered in the forum in many vairations, but I haven’t been able to make any of the suggestions work.
When I try the example CSS it changes the blog post font style and size in full-screen mode but also affects the Enfold Top menu, Headline Rotator, etc.
It also stops working completely when I decrease the screen size while looking at a post but doesn’t change the other elements that have been affected.
As you know from answering these support posts over the years, the text size is too large and gives the appearance of overlap on mobile phones. I haven’t found any way to do this within the theme itself. I have many approaches using custom CSS Enfold Theme Options->General Styling->Quick CSS and the Advanced Tab->Development Custom CSS.
I am not a software engineer or CSS coder.
This is what I am hoping the outcome to be
color: RED;
font-size: 20px;
line-height: 1.1em;
font-weight: 400;
text-transform: none;
Hi Tom,
You had the following code Quick CSS field
h2.tribe-events-single-section-title {
color: #919191;
font-size: 20px;
font-family: var(--tec-font-family-sans-serif);
}
CSS selector was weak so I changed it to the following one
#top h2.tribe-events-single-section-title {
color: #919191;
font-size: 20px;
font-family: var(--tec-font-family-sans-serif);
}
Also, you had the “Hiding the email address and divider in the organiser’s page:” and it was not wrapped inside comment tags. That breaks your CSS. If you’d like to add comments to your CSS, please do so as following
/* Hiding the email address and divider in the organiser's page: */
Please review your website.
Best regards,
Yigit
Hi Mike,
Thx a lot. It changed the font, but not the color. I was trying
h2.tribe-events-single-section-title {
color: #919191;
font-size: 20px;
font-family: var(–tec-font-family-sans-serif);
}
but color and size had not been affected. What else I can try?
Also the map is not to be seen on mobiles.
Everything was working well until yesterday morning and looking ok, the font and the map as well.
Best regards,
Tom
Hi woogie07,
1. Yes, it’s possible, please try to add the following on Enfold > General Styling > Quick CSS:
#top #wrap_all .avia-fullwidth-slider .avia-slideshow-button {
font-size: 18px;
padding: 20px;
}
Just adjust the values as you see fit.
2. I could see a vertical line on the left of the subhead on the fullwidth easyslider, is this already done? I’m not really sure I understood the question.
Best regards,
Nikko
Hi Illingco,
Please try to add this CSS code in Enfold > General Styling > Quick CSS: (just change the values as you see fit)
#top #wrap_all .socket_color .av-subnav-menu .av-menu-button-colored>a .avia-menu-text {
color: white;
font-size: 13px;
background-color: blue;
border: 2px solid black;
}
Best regards,
Nikko
Hi,
Is there any way to limit this edit to just the top blog element? Thank you.
As suggested above, you can apply a custom css class name (av-custom-featured-blog for example) to the top blog element (Advanced > Developer Settings > Custom CSS Class) and use it in the css rule above to specifically target the blog element.
#top.home #wrap_all .main_color .av-custom-featured-blog .post-entry h2.post-title {
font-size:32px;
}
In the edited css above, we added the selector “.av-custom-featured-blog” to target the element with the class name “av-custom-featured-blog”.
Best regards,
Ismael
Hi So Evolve,
I have checked for the rumble icon on fontello’s website unfortunately, I did not find any icon.
You will need to find it somewhere or you can try downloading it here: https://companieslogo.com/rumble/logo/ (I just found one here)
Then do the following Steps:
1. Please add this code in functions.php of your child theme or you can add it via a plugin called WPCode:
// Register new icon as a theme icon
function avia_add_custom_icon($icons) {
$icons['rumble'] = array( 'font' =>'entypo-fontello', 'icon' => 'ue897');
return $icons;
}
add_filter('avf_default_icons','avia_add_custom_icon', 10, 1);
// Add new icon as an option for social icons
function avia_add_custom_social_icon($icons) {
$icons['Rumble'] = 'rumble';
return $icons;
}
add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);
2. Go to Enfold > Social Profiles, then add Rumble and the link to your Rumble Channel.
3. Go to Header > Extra Elements > Header Social Icons and make sure to set to any value except No social Icons (at this point check the frontend of your site and see if it works properly)
4. Go to Media > Add New, then upload the rumble icon, (once uploaded) click the Copy URL to clipboard button.
5. Go to Enfold > General Styling > Quick CSS and add this CSS code:
#top #header .social_bookmarks .av-social-link-rumble a {
background: url(rumble_image_url) center center no-repeat;
background-size: contain;
}
#top #header .social_bookmarks .av-social-link-rumble a:before {
display: none;
}
Just replace rumble_image_url with the URL you copied from the clipboard.
Hope this helps.
Best regards,
Nikko
Hi mescalytequila,
Please try to add this CSS code as well:
#top #wrap_all .price del {
font-size: 32px;
text-decoration-color: red;
text-decoration-thickness: 4px;
}
Best regards,
Nikko
Hi,
I tried to change my h1 and h2 font weights using the « Advanced Styling » options (my title font is Montserrat). And I don’t know why but it only changes the weights on my home page, not on the other pages. The weird thing is that if I try to change something else like the font size, it works and I can see it on all the different pages. So the problem seems to appear only with the font weight.
I have tried different things to fix it like clearing my cache, disable compression in the performance section, or using the Quick CSS directly but nothing worked.
Could you help me please ?
Thank you,
Sophie
Hey mescalytequila,
Thank you for the inquiry.
You can add this css code to adjust the font size of the price and the strike-through.
#top .price, #top .price span, #top del, #top ins {
display: inline;
text-decoration: none;
font-size: 32px;
line-height: 32px;
font-weight: 600;
}
You should remove this css code to vertically align the strike-through with the price.
.price span {
font-size: 32px!important;
color: #89b82b!important;
}
After doing the modifications above, you may need to toggle or temporarily disable the Enfold > Performance > File Compression settings.
Best regards,
Ismael
Hey es.design.ma,
Thank you for the inquiry.
You can actually set different font sizes for various screen sizes and devices in the slides’ Styling > Font Sizes panel. Look for the Font Size default – used for all screen sizes(no media query) settings in the panel, then click the little devices icon to adjust the font size for a specific device.
Best regards,
Ismael
Hey Tanja,
Thank you for the inquiry.
Are you referring to the phone number in the third footer column? If yes, then you can use this css code to adjust the font size of the phone number.
body#top .footer_color section#custom_html-2 a {
font-size: 24px;
}
Please toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css modifications.
Best regards,
Ismael
Hey William,
Thank you for the inquiry.
Since the featured post category or tag has been removed, the class name tag-featured-post is no longer applied. You have to adjust the css a bit.
#top.home #wrap_all .main_color .post-entry h2.post-title {
font-size:32px;
}
You may need to apply a custom css class name to the Blog Post element and adjust the css.
Best regards,
Ismael
I want the footer widget Navigation Menu text to be larger than the default font size.
I changed the Theme Options / Advanced Styling / Widget Links to 16px font size. This made the footer widget Navigation Menu text larger as desired, but it also made the H4 phone text smaller than desired. I want the H4 phone text to remain H4 font size.
How can this be achieved?
I’m using the fullwidth easy slider with one image and a caption. I have the caption size set to 40 point but when it converts to a mobile view, the font is so large it covers the entire image. Is there any coding I can add that would specify the font size to reduce when it’s viewed on a mobile device?
Kriesi:
On a prior need, you helped me with a code snippet for my specific scenario. It worked perfectly until I found another, better (less manual control) way to automate this. See my page at: woodyboater.com
On this page, I have used three blog post Advanced Page Builder elements—each set to do different things. The top post element was set to pull in ONLY the single post that was tagged as -featured post. After I got this working as it should, I wanted to style the headline on JUST this top blog post element, increasing the h2 post title size. This is the code snippet you gave me to do that:
/* CSS – increase heading size on featured blog post on home page. */
#top.home #wrap_all .main_color .post-entry.tag-featured-post h2.post-title {
font-size:32px;
Now…forward to today. I have found a different way to bring these post into this top element. Rather that using the tag method, ie: -featured post, I have simply filtered the blog post element as follows:
Filter entries by time period
Unit before: 1 Period before: Days
My goal is to quite using the featured post tag—at least for this specific use case. But, when I do, I lose my styling of the increased heading size. Is there a new piece of code that you can provide that will do the same thing without the use of the featured post tag?
Also, I should note, that I would like the solution to be specific to this one blog element. I have two other blog post elements on the page that I DONOT want affected.
Thank you!
Hi Tom,
I added the following code to the bottom of Quick CSS field
#top .tribe-events-content p, .tribe-events-content ol, .tribe-events-content p, .tribe-events-content ul, #top .tribe-common .tribe-common-b2 {
color: #919191;
font-size: 16px;
font-family: var(--tec-font-family-sans-serif);
}
This seems to fix the font size, color, and family issues. Please review your website and let me know if you still experience issues.
Best regards,
Yigit
Hi markmade,
Please try to add this CSS code as well:
#top .avia-content-slider .slide-entry-excerpt .more-link:after {
content: '\e88d';
font-family: 'entypo-fontello';
font-size: 18px;
margin-left: 8px;
}
Best regards,
Nikko
there are no errors in his quick css – it is quiet small:
h3.av-masonry-entry-title {
color:#fff!important
}
top label.input_checkbox_label {
font-size:16px!important
}
@media only screen and (max-width:767px) {
#top label.input_checkbox_label {
font-size:14px!important;
padding-left:25px
}
}
.pedigree-footer {
display:none
}
.pedigree-name {
text-transform:uppercase
}
main a {
text-decoration:underline
}
#top div .av-light-form select option {
color:#000
}
@media only screen and (min-width:768px) {
.overlapping-columns {
position:relative;
height:auto !important
}
.overlapping-columns .flex_column.first {
position:absolute;
width:66% !important
}
.overlapping-columns .flex_column.first ~ .flex_column {
position:relative;
margin:0 !important;
left:calc(66% - 8vw);
width:calc(34% + 8vw);
top:5vw !important;
margin-bottom:10vw !important
}
}
only: this rule should be ?
#main a {
text-decoration:underline
}
but the css snippet of Mike is still not present:
.template-search .post-entry {
clear: none;
}
did you enter css code to some other places ( custom.css etc. ) ?
Hi,
To change the menu arrows please see our documentation: Replace mega menu arrows with custom icon
So for your situation, to have the bar icon and to have it the color red, please try this css:
#top .avia-bullet {
border: none;
padding:0;
margin: 0 5px 0 0!important;
}
#top .avia-bullet:before {
content: "\e819";
font-family: 'entypo-fontello';
color: red;
font-size:11px;
line-height:1em;
left:-3px;
}
This will change the above solution to have specific bars a different color to this css:
.header_color #menu-item-331 > a > .avia-bullet:before {
color: blue;
}
.header_color #menu-item-388 > a > .avia-bullet:before {
color: green;
}
.header_color #menu-item-332 > a > .avia-bullet:before {
color: yellow;
}
The expected results:

Best regards,
Mike
Hi,
Please try this CSS instead:
#top .av-subnav-menu li a {
font-size: 16px !important;
}
Best regards,
Rikard
Hi team,
Some text elements on our website are misaligned vertically in FireFox.
I posted about this error before and hoped it woud be fixed in FireFox V 110.0.
However, the alignment error persists: the text element should be aligned with the top of the image of the monitor [See screencap].
No problem in other browsers.
Thanks for you assistance,
Stephen.
====
CUSTOM CSS:
/*
.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 Nikko. It didn’t change the font size at all. Any other suggestions?
Hi Tom,
Please try to add this CSS code in Enfold > General Styling > Quick CSS:
.main_color #submit, .main_color input[type='submit'] {
background-color: #499F99;
padding: 16px 20px;
font-size: 15px;
border-radius: 2px;
}
Best regards,
Nikko
Hi iosefo,
Please try to add this CSS code in Enfold > General Styling > Quick CSS:
#top #header #avia2-menu li {
font-size: 14px;
}
Just adjust the font size value as you see fit.
Hope it helps.
Best regards,
Nikko
Hi martinvanderharst,
Please try to add this CSS code in Enfold > General Styling > Quick CSS:
#top .av-masonry-sort a {
border-radius: 20px;
padding: 9px 10px 7px;
font-size: 13px;
margin: 3px 4px;
line-height: 1.2em;
position: relative;
font-weight: normal;
text-align: center;
color: white;
background-color: #b22979;
}
#top .av-masonry-sort .text-sep {
display: none;
}
#top .av-masonry-sort a:hover,
#top .av-masonry-sort a.active_sort {
background-color: #00a6d9;
}
Hope it helps.
Best regards,
Nikko
How can I change the font size for a secondary menu?