I have tool set types installed and have a few different post types I’m using.
All was fine but now After the (4.6.3.1) update it’s thrown the layout out of place on every page that is a custom post type.
All normal pages using the ALE have no issues after the update. Just custom post types.
It’s mainly special header font sizes and images
-
This topic was modified 6 years, 4 months ago by
mmsdev.
Hi there!
I would like to adjust the fontsize of submenu items, how can I do that?

For instance ‘Eendenborst’ is a submenu item of ‘Recepten’ and I would like to have the fontsize smaller so it matches the menu font.
Thanks for your help!
Best regards,
Sander
Hello,
I already used that way, but it doesn’t work as expected.
Screenshot: https://drive.google.com/open?id=1rSdHgSFVyoLeS7M2rVktTAf0Qfr8W0ma
I used this shortcode to make the button in header:
[av_button label='ORDER NOW' link='manually,#' link_target='' size='medium' position='right' label_display='' title_attr='' icon_select='no' icon='ue800' font='entypo-fontello' color='theme-color' custom_bg='#444444' custom_font='#ffffff' av_uid='' id='' custom_class='' admin_preview_bg='']
I used the CSS shown in this page: https://kriesi.at/documentation/enfold/example-of-menu-left-widget-right-logo-right/#toggle-id-2
Probably I need to change the CSS, but i don’t now which code.
Hope you can help,
Thank you
Hi!
Cool :-) That works :-)
I have another topic ;-)
Can I move the circle with the amount of thing in the basket?
https://www.dropbox.com/s/22ltvw1u9tqme5k/basket_icon_move.jpg?dl=0
My code is:
#top .cart_dropdown_link span[data-av_icon]::before {
font-family: 'test';
font-size: 35px;
content:'\e801'!important;
}
Hi,
Thanks for the update. Please try this CSS to make the icon larger:
.cart_dropdown_link span {
font-size: 40px;
}
Best regards,
Rikard
Hi,
Thank you for the update.
You can either trim the content to decrease the height of the container, or adjust the font size of the text inside.
.wpcs_content_main p, .wpcs_content_main li {
font-size: 10px;
line-height: 2em;
}
You can also adjust the padding around the content and remove the minimum height from the following css modification.
#wpcs_content_inner_8438 {
padding-top: 10!important;
margin: 0px !important;
border: none !important;
}
div#wpcs_content_inner_8438 {
display: none;
max-width: 100%;
min-height: 0;
background: #fcfcfc;
padding: 20px 20px 20px 20px;
margin: 60px 40px 60px 40px;
color: #666666;
border: 1px solid #ffffff;
}
Then adjust the bottom position of the pseudo element.
#wpcs_content_inner_8438::after {
content: '';
background: url("/../../wp-content/uploads/2017/12/footer_figures_bg.png");
width: 190px;
height: 130px;
position: absolute;
bottom: 0;
}
Best regards,
Ismael
Hi,
I would like to add an icon for the social media platform Discord to my website. I have read and followed this from the documentation but am not getting anywhere. I have put the info I’m using in private content. Can you please advise. Thanks! Anna
Using images or non-Fontello icons
In case the icon you want to use is not available in Fontello or can not be imported to it because its an image (jpg, png, etc) you can do it by using the following code in functions.php:
// We’ll use the Kriesi.at glyph for this example
function avia_add_custom_social_icon($icons) {
$icons[‘Kriesi’] = ‘kriesi’;
return $icons;
}
add_filter(‘avf_social_icons_options’,’avia_add_custom_social_icon’, 10, 1);
view rawfunctions.php hosted with ❤ by GitHub
As there is no font-face file to use for this icon we’d need to manually set its contents via CSS:
In case of using an image
#top #wrap_all .av-social-link-kriesi a:before{
content: “”;
width: 20px;
height: 20px;
display: inline-block;
vertical-align: middle;
background: url(https://kriesi.at/wp-content/themes/kriesi/images/logo.png) no-repeat center center;
background-size: contain;
}
Hi Ismael,
thank you!
That worked! Unfortunately I’m not a programmer. So I need your help with the appropriate CSS code to get the language changer in the right position next to the burger menu.
1. The position to the left of the burger menu (I can then correct pixel spacing myself)
2. removed the gray frame (below the language changer)
3. The ability to change the color of the font
4. Adjust the font size
Can you help me with this?
Best regards
Jürgen
View post on imgur.com
This is the Dot submenu that i have that i made using the documentation. i made the dots transparent and did other changes.
my problem: it has blue arrows on the left, can i remove them somehow? cant find a solution on how to. Also i wanted to be able to change the font and size of the text of seperate menu items:
Konflikt but bigger font size, underlined and bold
Analyse etc… all normal size. maybe be able to move them a bit to the right, but i can do this with just invisible symbols right?
Hi claudipro,
Well, the screenshot does not show the html and the other website is not loading still.
Please try this css:
.av-masonry-sort a {
font-size: 18px;
}
Best regards,
Victoria
Hey Fabienne,
Thank you for the inquiry.
You can increase the size of the social icons in the top header with css. Please try this code in the Quick CSS field or the child theme’s style.css file.
#top .social_bookmarks li a {
line-height: 30px;
text-align: center;
font-size: 18px;
}
And you can also change the color of a specific social icon using this css pattern.
#top #wrap_all .av-social-link-linkedin a {
color: #fff;
background-color:#419cca;
}
The css code above will adjust the color of the linkedin social icon.
NOTE: Please don’t forget to toggle the Performance > File Compression settings after adding the code.
Best regards,
Ismael
Hi,
Thanks for the clarification. Please try the following in Quick CSS under Enfold->General Styling:
.home .slide-loop-1 h3 a {
font-size: 22px;
}
Best regards,
Rikard
That sounds promising :-) I disabled my caching plugin.
Looking forward to implement some CSS modifications to make my site look better on iPads :-)
I really welcome your effort for these.
For future Enfold updates, I think selectable options for mobile optimization should include 1024 (iPad) screen width.
Not just for breakpoints, but also font size options and so on.
Thanks Victoria!
Kind regards.
Hi Basilis,
I found this in the enfold documentation. Is it possible to add second menu to the burger menu on left side? I think that would be the solution to my problem!
/*————————*/
/* Add word menu next to hamburger icon
/*————————*/
.av-hamburger strong {
display: block!important;
position: absolute;
left: -90%;
top: 0;
font-size: 20px;
transform: translate(-90%, -44%);
}
kind regards
Jürgen
Hi Rikard,
I thought that might have something to do with the combination Enfold + Gutenberg.
Maybe there is a function in Enfold that overrides the Gutenberg editor?
An example in the appendix.
Here the fontsize under the pictures is very small. This was not the case before using the Gutenberg Editor.
best regards
Florian
Hi,
Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:
#menu-item-5112 > a > .avia-bullet,#menu-item-5153 > a > .avia-bullet,#menu-item-5111 > a > .avia-bullet {
display: none !important;
}
#menu-item-5112 > a > .avia-menu-text,#menu-item-5153 > a > .avia-menu-text,#menu-item-5111 > a > .avia-menu-text {
font-size: 17px !important;
line-height: 1.1em !important;
font-weight: 900 !important;
}
#menu-item-5112 > a ,#menu-item-5153 > a ,#menu-item-5111 > a {
padding-left: 0 !important;
}
Best regards,
Mike
Hey StephanPfluegler,
You can probably get the menu items pretty close by using css to add extra space between the menu groups and changing the font sizes, but each time you add or remove menu items you would need to rewrite the css. The items at the top of the menu would be much tricker, and require some javascript.
Best regards,
Mike
Hey Kurt,
Sorry for the late reply and thanks for the login, I adjusted your css from this:
p.update-time {
width: 340px;
margin: auto;
font-size: 90%;
}
to this:
@media only screen and (min-width: 767px) {
p.update-time {
width: 300px;
font-size: 90%;
float: right;
}
}
@media only screen and (max-width: 766px) {
p.update-time {
width: 340px;
margin: auto;
font-size: 90%;
}
}
Please clear your browser cache and check.
Best regards,
Mike
Hi Victoria,
thx for your answer and the info-links! They helped, but I have a further question.
Please, take a look at the screenshots.
It is much easier to import a new icon to enfold, as it is explained in the old thread.
You only have to download the fontello-zip-file and after that you import it into enfold.
Than you go to the social-media-profile and change it in the social symbol field. That’s it!
BUT unfortunately – the new icon doesn’t show up in the header-navigation. ;-/ Instead
of te new instagram-logo you see a pencil. So, what went here wrong?
And unfortunately you didn’t answer my other questions: how can I change the size of the
icons? And also the thickness and distance of the parting line.
I’m looking forward to your new reply!
Best regards
Carsten
Hi,
Sorry for the late reply, the css on the CodePen page had to be adjusted because it didn’t account for other css included on the page with a higher specificity. I have combined the html and the css to be used within a code block element, just copy all of this code and add to a code block element and it should work fine.
<style>
.dropdown {
position: relative;
display: inline-block;
text-align: left;
width: 132px;
}
.dropdown-text {
cursor: pointer;
position: absolute;
text-indent: 10px;
line-height: 32px;
background-color: #eee;
border: 1px solid #ccc;
border-radius: 3px;
box-shadow: 0 1px 0 rgba(255,255,255, .9) inset, 0 1px 3px rgba(0,0,0, .1);
width: 100%;
color: #333;
}
.dropdown-text:after {
position: absolute;
right: 6px;
top: 15px;
content: '';
width: 0px;
height: 0px;
border-style: solid;
border-width: 5px 4px 0 4px;
border-color: #555 transparent transparent transparent;
color: #333;
}
.dropdown-text,
#top #main ul.dropdown-content a {
color: #333;
text-shadow: 0 1px #fff;
}
#top #main input.dropdown-toggle[type='text'] {
font-size: 0;
z-index: 1;
cursor: pointer;
position: absolute;
top: 0;
border: none;
padding: 0;
margin: 0 0 0 1px;
background: transparent;
text-indent: -10px;
height: 34px;
width: 100%;
color: #333;
}
#top #main input.dropdown-toggle[type='text']:focus {
outline: 0;
}
#top #main ul.dropdown-content {
-webkit-transition: all .25s ease;
-moz-transition: all .25s ease;
-ms-transition: all .25s ease;
-o-transition: all .25s ease;
transition: all .25s ease;
list-style-type: none;
position: absolute;
top: 32px;
padding: 0;
margin: 0;
opacity: 0;
visibility:hidden;
border-radius: 3px;
text-indent: 10px;
line-height: 32px;
background-color: #eee;
border: 1px solid #ccc;
width: 140px;
}
#top #main ul.dropdown-content a {
display: block;
text-decoration: none;
}
#top #main ul.dropdown-content a:hover {
background: #e8e8e8;
}
#top #main input.dropdown-toggle[type='text']:hover ~ .dropdown-text,
#top #main input.dropdown-toggle[type='text']:focus ~ .dropdown-text {
background-color: #e8e8e8;
}
#top #main input.dropdown-toggle[type='text']:focus ~ .dropdown-text {
box-shadow: 0 1px 3px rgba(0,0,0, .2) inset, 0 1px 0 rgba(255,255,255, 0.8);
z-index: 2;
}
#top #main input.dropdown-toggle[type='text']:focus ~ .dropdown-text:after {
border-width: 0 4px 5px 4px;
border-color: transparent transparent #555 transparent;
}
#top #main ul.dropdown-content:hover,
#top #main input.dropdown-toggle[type='text']:focus ~ .dropdown-content {
opacity: 1;
visibility:visible;
top: 42px;
}
</style>
<p><i>To show/hide menu, I'm using :focus instead of checkbox so when you click somewhere else then menu will be hidden :).</i></p>
<div class="dropdown">
<input class="dropdown-toggle" type="text">
<div class="dropdown-text">Account</div>
<ul class="dropdown-content">
<li><a href="#">Settings</a></li>
<li><a href="#">Projects</a></li>
<li><a href="#">Log out</a></li>
</ul>
</div>
expected results:

Best regards,
Mike
Hi folks,
I’ve been trying to get the testimonials on my website styled similar to the one shown on the Enfold 2017 Demo and I am almost there but have hit a couple of snags.
I have used the CSS below to try to style the sub-title, but whilst the font-size and font-weight values are working, the center alignment and color values are not working? (The sub-title is staying left aligned and the text color is still grey)
.avia-testimonial-subtitle {
text-align: center !important;
font-size: 14px;
font-weight: bold;
color: #fff !important;
}
Also, can you advise how to reduce the height of the testimonial content area so that the Name & Sub-title fields are much closer to the testimonial content text? Currently there is quite a large space between them.
Finally, is there way to stop the page “bouncing” when the testimonial slider rotates and there is a testimonial with slightly longer text content? In the demo it doesn’t bounce but that is because the Lorem Ipsum placeholder text is all very similar length in terms of word / character count. On live customer testimonials the text length will often vary and this is what causes the page to move as the testimonial slider rotates.
In case it is needed I have included my wbsite URL and some login details in the private section.
Many thanks in advance of your help.
Ray
Hi,
how can I change the size of the font in the text description under each image? I use the Gutenberg Editor.
We use the CSS:
.wp-caption-text {
display:block !important;
font-size:18px !important;
font-style:normal !important;
margin:0 auto !important;
padding:3px 10px 5px !important;
text-align:center !important;
font-family: "Roboto", arial, sans-serif !important; }
But this doesn’t work with Gutenberg.
Thank a lot
Hi, I am trying to display text MENU underneath the 3 lines on the menu when visiting our website using mobile,
I have added code to quick CSS:
#advanced_menu_toggle:after {
content: “Menu”;
font-size: 14px !important;
left: 2px;
position: absolute;
top: 30px;
}
Not displaying with TEXT underneath. Any suggestions please.
Hey hansblancke,
Please try to add important after your statement:
#top h3 {
font-size: 21px !important;
}
If that doesn’t work then please post admin login details in private so that we can have a closer look.
Best regards,
Rikard
Hi!
fine. that works 90% :-)
I use this code:
#top .cart_dropdown_link > span:before {
font-family: 'test';
content:'\e801'!important;
}
But there are two Icons (I only need one!) and how can I change the size?
You can have a look: https://vollstark.de
All the best!
-
This reply was modified 6 years, 4 months ago by
vollstark.
Hi,
Sorry for the late reply to change the button font size and color please adjust your custom css, please look for:
.avia-menu-text {
font-size: 14px !important;
color: #777777 !important;
font-weight: normal !important;
letter-spacing: 0.07em !important;
text-transform: uppercase !important;
}
to remove the border, try adding this css:
#top #wrap_all .header_color .av-menu-button-colored > a .avia-menu-text {
border-color: transparent !important;
}
to remove the red background for your sub-menu items please adjust your custom css, please look for:
#menu-item-11106 .avia-menu-text {
background-color: #6A1A35 !important;
}
#menu-item-11105 .avia-menu-text {
background-color: #8D5560 !important;
}
and change to:
#menu-item-11106 > .avia-menu-text {
background-color: #6A1A35 !important;
}
#menu-item-11105 > .avia-menu-text {
background-color: #8D5560 !important;
}
Best regards,
Mike
Hi,
Sorry for the delay. You should be able to replace the default text with a close (x) icon using this css code.
.btn-default.mfp-close {
text-indent: -9999px;
right: -100px;
overflow: visible;
}
.btn-default.mfp-close::before {
content: 'x';
position: absolute;
top: 0;
left: 0;
color: blue;
width: 40px;
height: 40px;
font-size: 16px;
text-indent: 0;
}
If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.
Thanks!
Best regards,
Ismael
Hey hristi,
Add this to quick css:
@media only screen and (max-width: 767px) {
#layer_slider_1 h1{
font-size:24px!important;
}
#layer_slider_1 h2{
font-size:12px!important;
}
.ls-wrapper.ls-in-out{
left:20px!important;
}}
Best regards,
Jordan Shannon
Hi, Guys, hope this find you well.
I wanted to make the contact form to have the bottom border only. I think it’s nicer.
So I set up a contact form and selected Light Transparent color scheme.
I used this css:
#top div .av-light-form .input-text, #top div .av-light-form input[type=’text’], #top div .av-light-form input[type=’input’], #top div .av-light-form input[type=’password’], #top div .av-light-form input[type=’email’], #top div .av-light-form input[type=’number’], #top div .av-light-form input[type=’url’], #top div .av-light-form input[type=’tel’], #top div .av-light-form input[type=’search’], #top div .av-light-form textarea, #top div .av-light-form select {
border-top: none !important;
border-right: none !important;
border-left: none !important;
border-bottom: 1px solid #969696!important;
color: #969696!important;
font-size: 18px !important;
padding-bottom: 2px !important;
}
but if someone doesn’t fill one of the form fields (and they’re all required), he / she doesn’t get the colored border “warning” indicating that the field is required anymore.
How can I get the contact form to have only the bottom border and still show the “colored border warning indication” when someone doesn’t fill one of the required fields?
Thank You :D