Hi,
i created a color section with a column and a text in it.Ii’m trying to reduce the text-size to 10px.
I added “socket-h2” to column css-class.
I’m using in quick-css:
#top #main h2.socket-h2 a span {
font-size:10px !important;
line-height:1.2em !important;
}
but text is not 10px in this section. How can i change h2-text to 10px?
kind regards Jak
-
This topic was modified 6 years, 3 months ago by
Jak73.
Yes, there is a bug in Beta 2 version :(
Please see the link in private content.
I placed code below into PAGE and the same code into FOOTER text widget. It is all about icons. On the page icons appeared, in the footer text widget not..
<div class="row-fluid">
<div class="rhcol span1"></div>
<div class="rhcol span4">
<h4>Contact</h4>
(Email address hidden if logged out)
07740 111 111 111
</div>
<div class="rhcol span3">
<h4>Follow</h4>
[av_font_icon icon='ue8f5' font='entypo-fontello' style='' caption='' link='manually,https://www.facebook.com/hidden/' linktarget='_blank' size='30px' position='left' color='' custom_class='' admin_preview_bg='' av_uid='av-e5s6w'][/av_font_icon][av_font_icon icon='ue909' font='entypo-fontello' style='' caption='' link='manually,https://www.instagram.com/hidden/' linktarget='_blank' size='31px' position='left' color='' custom_class='' admin_preview_bg='' av_uid='av-72gu0'][/av_font_icon]
</div>
<div class="rhcol span2"><a title="Flowers From The Farm Member" href="https://www.hidden.co.uk/members/hidden" target="_blank" rel="noopener"><img class="alignleft wp-image-374" src="https://www.hidden.co.uk/wp-content/uploads/flowers-from-the-farm.png" alt="" width="174" height="117" /></a></div>
</div>
Hello,
I have a similar issue now with WordPress 5.2.5 and Enfold-Version 4.6.3.1. The display of the text blocks and everything looks like before but when I try to edit one block the editor is broken (the line with all the formatting icons is extremely long and extends over the edge) and shows actual source code (similar to the user semfly above) like that (just some lines):
<p>[av_layerslider id=’7′ av_uid=’av-169wygj’][av_textblock size='' font_color='' color='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' admin_preview_bg='' av_uid='av-142fswz']Datenschutzerklärung[/av_textblock][av_textblock size='' font_color='' color='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' admin_preview_bg='' av_uid='av-12hfrgj']<br />Fassung vom 22. Mai 2018Für Visisoft ist der Schutz personenbezogener Daten sehr wichtig. Wir möchten, dass Sie wissen, wann wir welche Daten speichern und wie wir sie verwenden. Als privatrechtliches Unternehmen unterliegen wir den Bestimmungen der Datenschutz-Grundverordnung (EU-DSGVO). Wir haben technische und organisatorische Maßnahmen getroffen, die sicherstellen, dass die Vorschriften über den Datenschutz beachtet werden.<br />[/av_textblock][av_heading tag='h3' padding='10' heading='Verantwortlicher für die Datenverarbeitung' color='' style='' custom_font='' size='' subheading_active='' subheading_size='15' custom_class='' admin_preview_bg='' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' margin=''][/av_heading][av_textblock size='' font_color='' color='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' admin_preview_bg='' av_uid='av-zh6q8z']
…….
The only thing could do was to install the “Classic Editor” plugin which resolves the issue. But that’s not how it’s suppose to work. Any ideas?
-
This reply was modified 6 years, 3 months ago by
mjasinski.
Hey there,
i´m using the google font qwigley, which i imported in enfold.
the font is displayed on google chrome browsers, but not on others.
the font needs a big font size, so when qwigley is not loaded – the alternative font looks oversized!
thanks for a solution!
on base css line 379 there is :
.special_amp{
font-family: "Baskerville", "Palatino Linotype", "Palatino", "Times New Roman", serif;
font-style: italic;
font-size: 1.3em;
line-height: 0.5em;
font-weight:normal;}
and on functions-enfold.php there is the function: avia_ampersand
to rule the substitution. ( it set the ampersand sign between span tags with class: special_amp
By the way if you gave that custom-class: special_amp to a whole text-block it will show you that styling.
so a lot of users have the problem to get rid of it than to have the style.
And : Baskerville is not a good Websafe Font – so it might not be seen the substitution on older Win Systems: https://www.cssfontstack.com/Baskerville
Good input Victoria , Guenni007
I will investigate further, Yes I don’t need to use all of the text , I was just showing you an example of what I was trying to do.
Below is my inspiration site Guenni007 , I think this is what your suggesting when your saying “you could insert your images as grid-cell background”
correct, something along those lines ?
https://www.openblue.com/
On another site I had the same issue and Mike gave me some input on post #1110875 on the use of media queries , see his response below.
However I was not quite sure how to implement, and had to move on as I was under a time constraint. If it’s possible using media queries to set the font size by percentages as Mike suggest any input would be great as far as a step by step how to implement.
I do have custom classes enabled for this site , I see the field at the bottom of each element I.m not sure what to do from there.
Thank you any input is greatly appreciated
Mikes Response Below
=====================
Hey webworm72,
You can use these media queries:
/* ———– iPad Pro ———– */
/* Portrait and Landscape */
@media only screen
and (min-width: 1024px)
and (max-height: 1366px)
and (-webkit-min-device-pixel-ratio: 1.5) {
}
/* Portrait */
@media only screen
and (min-width: 1024px)
and (max-height: 1366px)
and (orientation: portrait)
and (-webkit-min-device-pixel-ratio: 1.5) {
}
/* Landscape */
@media only screen
and (min-width: 1024px)
and (max-height: 1366px)
and (orientation: landscape)
and (-webkit-min-device-pixel-ratio: 1.5) {
}
Try adding a custom class or ID to the text area and then we can set the size in percentages like:
font-size: 70% !important;
Best regards,
Mike
Hi,
Try this:
.iconbox:hover p{
color:#ffd400!important;
font-size:16px
}
.iconbox:hover h3{
color:#ffd400!important;
font-size:30px!important;
}
.iconbox:hover a.iconbox_icon{
color:#ffd400!important;
font-size:60px!important;
}
Best regards,
Jordan Shannon
Hi webworm72,
The text font is already quite small, if you make it smaller it will be not readable. We can try to reduce the vertical margins and the headers font size but it will not solve the issue all the way.
Best regards,
Victoria
Hi!
I was able to change the font size in the sub level menu – thanks for that.
I did keep changing the menu, but the same issue is still there where if I hover over the main menu, then scroll down to hover over sub menu links, that main menu font turns green and I can’t see it (to be honest, I don’t know why when I hover over the main menu categories, a green box shows up).
I’ll put log in info below – thanks.
Hi,
1- It seems like you have changed your menu so i could not see the issue on your site. Could you please re-create the issue and post WP admin logins here privately so we can look into it? :)
2- You checked “Apply only to mouse hover state” so it should only increase the font size on hover state and i think it is working as “Money Conversation Guide” menu item is slightly larger than others. You can simply edit “Main Menu sublevel Links” and set font size there and not check “Apply only to mouse hover state”.
Best regards,
Yigit
Hello, thanks for your answer.
I see that there is a possibility for Resize font (font resizer) in it.
But I also need something for ‘text to speech”.
What are you suggest?
Regards Tom
-
This reply was modified 6 years, 3 months ago by
tom.
Hi,
Try the following in quick css and adjust the color to what you want.
.iconbox:hover p,
.iconbox:hover h3,
.iconbox:hover .iconbox_icon{
color:yellow!important;
font-size:1em
}
Best regards,
Jordan Shannon
Yes – but first with such an amount of text it would have to be so small that you could not read it clearly. Because you break the grid on 768px and even if you do it on 990px the font-size will be too small.
Then – your setting is not the normal usage of grid-row element. If you could insert your images as grid-cell background you can choose that the image fills the cell- but then, of course, it gets cut.
Maybe you are satisfied if the images are vertical aligned in the middle – there is an option to do so for grid-cell positioning in each cell.
-
This reply was modified 6 years, 3 months ago by
Guenni007.
so there is no way to have the text smaller depending on the device , isn’t that what the “Screen Options” are for in each element ?
so you can set the text sized based on the device ?
Under “Screen Options” it says
Font Size
Set the font size for the element content, based on the device screen size
I tried using
Font Size for medium sized screens (between 768px and 989px – eg: Tablet Landscape)
however it doesn’t do anything , Isn’t the IPad pro considered a tablet ?
Hi Martin,
Please try the following in Quick CSS under Enfold->General Styling:
ul.av-subnav-menu .avia-menu-text {
font-size: 14px;
}
Best regards,
Rikard
Still nothing…..
If i disable cookie and privacy all together then the font weight changes in chrome to the same size font as Safari!
Turn it back on and its how it should be.. (but only in chrome still and always wrong weight in Safari)
The cookies and privacy also acts differently in Safari than Chrome, ill raise a separate ticket for that..
This is very frustrating as we are due to start a new build today and messed around with this all day…
1: This is a brand new install of the latest version (and even now the beta version)
2: Enfold child theme is installed (but not activated)
3: We are using just the enfold them as of now.
4: Only plugin installed is TINY- mce advance. We have even turned that off.
It behaves different in Safari than chrome – Basic level stuff here guys the font weight for open sans is different..
Can you assist as we would relay like to get own with building the site..
-
This reply was modified 6 years, 3 months ago by
mmsdev.
Hey,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:
CSS Snippet:
.special_amp {
font-family: sans-serif;
font-size: inherit!important;
font-style: inherit;
font-weight: lighter!important;
color: inherit!important;
}
Best regards,
Yigit
Hi Amanada,
Thanks for contacting us!
Please go to Enfold theme options > Advanced Styling and edit “Main Menu sublevel Links” element and increase font size. Then add one more “Main Menu sublevel Links” element and check “Apply only to mouse hover state” to change hover state colors. It should look like this – https://imgur.com/a/KFqHRbW :)
Best regards,
Yigit
Hi,
is ist possible to remove the blue border around the title when the accordion is opened?
This happens only on Chrome, so i’m not sure if this is something i can customize.
The accordion i’m referring to can be found here: https://rs234935.rs.hosteurope.de/akrobatinnen/
I’ve already added the following custom css code and the custom css class in developer settings of the accordion:
/* Have fun adding your style here :) - PS: At all times this file should contain a comment or a rule, otherwise opera might act buggy :( */
/* General Custom CSS */
/* Team member circle image */
.team-img-container img {
border-radius: 100%;
}
/* Social icons*/
#top .avia-team-member .team-social {
background: transparent;
border: none;
}
@media only screen and (max-width: 989px) {
.responsive.av-no-preview #top .avia-team-member .team-social {
background: transparent;
border: none;
}}
/* Remove default icon border */
.my-custom-tabs .toggle_icon {
border:none;
}
/* Default tab border */
.my-custom-tabs .toggler {
border: none;
}
/* Hide default icons */
.my-custom-tabs .toggle_icon .vert_icon,
.my-custom-tabs .toggle_icon .hor_icon {
display:none;
}
/* Custom Accordion Icon */
.my-custom-tabs .toggle_icon {
display: inline-block!important;
}
.my-custom-tabs .toggle_icon:before {
font-family: 'entypo-fontello';
content:'\e87d';
position: absolute;
font-size: 18px;
top:50%;
transform: translateY(-50%);
left: 0px;
line-height: 0;
color:black;
}
/* Active tab icon */
.my-custom-tabs .activeTitle .toggle_icon:before {
font-family: 'entypo-fontello';
content:'\e87b';
}
/* Active Tab Title */
.my-custom-tabs .activeTitle.toggler {
border: blue;
}
/*
The website: http://maastrichtvooriedereen.nl.transurl.nl is intended for people with a disability.
Now I want to build in 2 functionalities through a plugin:
– a possibility of text to speech
– a possible to enlarge text (font resizer)
Which plugins works best with your template or what can you advise.
Would be great and hope to hear from you.
Regards Tom
Hi,
Thank you, I see that the icons are in .svg format, so now you can upload them to fontello.com to create your icon pack.
You see fontello.com changes them into a font file which is what the theme uses.
But note that the result will be black and white icon fonts and looking at the .svg files you sent I see they are in color, so I’m thinking you would like to use colored icons, correct?
In this case, we will change course and use css to add your color icons. So the first step is to convert your .svg into .png because WordPress doesn’t allow .svg uploads into the media library without a plugin.
Then we will add this css in the General Styling > Quick CSS field:
.avia-icon-grid-container li:nth-child(1) .avia-icongrid-icon {
background-image: url(https://test.test/wp-content/uploads/2019/12/rocket.png);
height: 40px;
background-size: contain;
background-repeat: no-repeat;
background-position: 50% 50%;
}
.avia-icon-grid-container li:nth-child(1) .avia-icongrid-icon .icongrid-char:before { display: none; }
This css targets the first icon in the Icon Grid element with the image in the url. So please change the url and change the number in li:nth-child(1) to the one you want to taget. This means that you will copy this code three times to change three icons.

If you need so help targeting many of these please include a link to your page and we can help more.
Best regards,
Mike
I have a lot of sites with Enfold.
Since the latest updates I have issues with the social Icons.
https://www.kundendialog.ch/ Here as example, no header icons. Header icons are set in Theme Options -> Header -> additional Elements.
Latest Enfold 4.6.3.1 installed.
http://new.officelab.ch/ here, I have social icons in the header, but older version of Enfold: 4.5.7
But also there, some strange icons error. I place in a post: [av_font_icon icon='ue832' font='entypo-fontello' style='' caption='' link='' linktarget='' size='40px' position='left' animation='deactivated' color='' av_uid='' custom_class='' admin_preview_bg=''][/av_font_icon] icon is shown.
I put the same thing in the Footer widget : not shown. I added it via PHP to the footer like do_shortcode(“[av_font_icon icon='ue832' font='entypo-fontello' style='' caption='' link='' linktarget='' size='40px' position='left' animation='deactivated' color='' av_uid='' custom_class='' admin_preview_bg=''][/av_font_icon]“); not shown too.
There is an HTML output, but the icon is missing, as in the new version in the header too (Html there, but Icon code missing).
Since last update, the social Icons in the header are gone.
Hey Flugtraeumer,
Thank you for the update.
Try to replace the protocol in the iframe src attribute from http to https.
Blocked loading mixed active content “http://piwik.flugtraeumer.de/index.php?module=CoreAdminHome&…anguage=de&backgroundColor=&fontColor=&fontSize=&fontFamily=”Blocked loading mixed active content “http://piwik.flugtraeumer.de/index.php?module=CoreAdminHome&…anguage=de&backgroundColor=&fontColor=&fontSize=&fontFamily=”
It doesn’t display because it’s being blocked as shown in the error above.
Best regards,
Ismael
Hey GraphicEyeDK,
Just change this:
@media only screen and (max-width: 479px){
.responsive #top .slideshow_caption h2 {
font-size: 20px !important;
}}
to this:
@media only screen and (max-width: 479px){
.responsive #top .slideshow_caption h2 {
font-size: 44px !important;
}}
Best regards,
Jordan Shannon
Thank you Rikard. The code works perfect. But i recognized another problem at this page. I use this code the arrange the social share icons at the end of the page. only the email ivon is there, the others are not. they are here (mouse over) but you cannot see the other icons. can you help me with this. thanks, alex
/* Teilen Buttons vergrößern */
.av-share-box ul li a{
font-size:30px!important;
}
/* Teilen Buttons in drei Reihen untereinander */
@media only screen and (max-width:767px) {
#av_section_1 .av-share-box-list {
display: flex !important;
flex-direction:row;
flex-wrap:wrap;
justify-content: space-around;
}
#av_section_1 .av-share-box-list::before, .av-share-box-list::after {
content: '';
width: 100%;
order: 1;
}
#av_section_1 .av-share-box-list li:nth-child(n + 4) {
order: 1;
}
#av_section_1 .av-share-box-list li:nth-child(n + 7) {
order: 2;
}
}
Hi,
Could you please help me with some css at this page https://xn--krlighedscoach-0ib.dk/. I want the h2 in the slider (Hjertelig velkommen) to be 44px at mobil screen. I have tried with this css:
.slideshow_caption {
font-size: 44px !important;
}
But it gets overwritten by this css:
@media only screen and (max-width: 479px)
.responsive #top .slideshow_caption h2 {
font-size: 20px !important;
}
What can I do?
Best regards,
Helle
This reply has been marked as private.