-
AuthorSearch Results
-
June 9, 2022 at 11:52 pm #1354729
Topic: Menue Font Size
in forum Enfoldmwinter
ParticipantHello, we want to change the font size in the menu. Unfortunately it does not work under advanced settings. Here in the screenshot we have set the size 25, but it is not changed.
Here the Screen:
(Full Size: https://ibb.co/FBq4yh7) -
This topic was modified 3 years, 8 months ago by
mwinter.
June 9, 2022 at 7:14 pm #1354703In reply to: Mobile VIew
Hi,
Please try this CSS instead:
@media only screen and (max-width: 767px) { .home .slideshow_align_caption h2.avia-caption-title { font-size: 28px !important; } .home .avia-caption-content p { font-size: 14px !important; } }Best regards,
RikardJune 9, 2022 at 6:17 pm #1354698This reply has been marked as private.June 9, 2022 at 1:54 pm #1354653In reply to: Color Section background image not clearing
Hi,
Thanks for the feedback, I was looking for a phone number, but now I see it’s the text in the Enfold Theme Options ▸ Header ▸ Extra Elements ▸ Phone Number or small info text
Please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:@media only screen and (max-width: 424px) { #header_meta .phone-info { font-size:16px; } } @media only screen and (max-width: 767px) { #header_meta .phone-info { top: 64px; position: relative; width: 80%; } }After applying the css, please clear your browser cache and check.
Best regards,
MikeJune 9, 2022 at 12:00 pm #1354629In reply to: Mobile VIew
Hey tsvweinsberg,
Please try the following in Quick CSS under Enfold->General Styling:
@media only screen and (max-width: 767px) { .home .slideshow_align_caption h2.avia-caption-title { font-size: 28px; } .home .avia-caption-content p { font-size: 14px; } }Best regards,
RikardJune 9, 2022 at 3:33 am #1354576Hi,
Thanks for the feedback, at the smallest mobile screen size, 375px, your link text is about half of the screen width with your current font size 13px:

in order to have these in one line at this screen width you will need to back the font size 8px which would probably be hard to read, you can try with this css:@media only screen and (max-width: 620px) { .avia-buttonrow-wrap.footer-buttonrow .avia-button { font-size: 8px; padding: 9px 2px 7px; } }To remove the border from the buttons try this css:
#top .avia-buttonrow-wrap.footer-buttonrow .avia-button.avia-color-light { border: none; }After applying the css, please clear your browser cache and check.
Best regards,
MikeJune 8, 2022 at 5:53 pm #1354551In reply to: Post Slider not loading correctly
Hi,
It seems like you used to display FontAwesome icons there. You can remove following codes from custom.css file to remove those
#recent-post .slide-meta-comments a::before { font-family: "FontAwesome"; content: "\f086"; font-size: 22px; margin-right: 10px; color: #239dd8; } #recent-post .slide-meta-time::before { font-family: "FontAwesome"; content: "\f017"; font-size: 22px; margin-right: 10px; color: #239dd8; }Regards,
YigitJune 8, 2022 at 5:17 pm #1354545In reply to: Blog Post Excerpt Font size
Hi,
Thanks for that. Please try this CSS instead:
.template-blog .entry-content-wrapper p { font-size: 12px; }Best regards,
RikardJune 8, 2022 at 2:46 pm #1354530In reply to: White Space/Gap Below Slider
Hi,
Thanks for the update. Please try the following CSS as well:
@media only screen and (max-width: 767px) { .slideshow_align_caption h2.avia-caption-title { font-size: 30px; } .slideshow_align_caption a.avia-slideshow-button { margin-top: 5px; font-size: 16px !important; } }Best regards,
RikardJune 8, 2022 at 1:53 pm #1354521Hi,
As a temporary fix you can put the following in theme options -> General Styling -> Quick CSS:
@media only screen and (max-width: 767px) { #top #wrap_all .av-inherit-size .av-special-heading-tag{ font-size: 0.8em !important; } }This reverts back to 4.8.3 behaviour.
But it will override custom settings for mobile < 767px (or you can wait for the next release where I will add some logic to prevent this)
New Size options
Is added to our dev repo.Best regards,
GünterJune 8, 2022 at 12:11 pm #1354514Hi Gunter,
I think what you are suggesting should solve the problem
As per guenni’s screen shot above.
Making it so the font size specified in the special heading (and all headings) only apply to the screen size specified would make sense – instead of becoming the new default size.
Then all other screen sizes are the default size as set by the theme OR as set in the new typography settings.New Size options
As a pro feature I would probably use extra percentage based sizes however scale from desktop to mobiles is not uniform so percentages never seem to work too well vs px sizes. The percentages are based on screen width desktop is 16:9 and mobiles are 9:16. So percentage driven often means the fonts are too small on mobiles when they scale down. I normally use px values for each screen size because of this.I wouldnt complain if there were more options. A Pro users being able to type in a figure and unit would be preferred as an extension to the existing options – better for developers than more dropdown options.
June 8, 2022 at 11:51 am #1354508Hi,
@thinkjarvis
Thank you for bringing this up.
I checked the font behaviour of the “Special Heading” element with 4.8.3 (a version prior the post css file changes).
Setting Heading Font Sizes – Font Size (Default) to e.g. 50px, responsive Font sizes to “Use default”.
The 50px are used for all devices (because added inline in a style tag).
There is a media query in heading.css:@media only screen and (max-width: 767px) { #top #wrap_all .av-inherit-size .av-special-heading-tag{ font-size: 0.8em; } }And this is what I missed to implement when switching to post css file implementation.
And the only difference I can see.
Would adding this help you ?
And I’m also thinking about extending the selectable font sizes with flexible units also for responsive:
vw
em
remMaybe an option for pro users to replace the dropdown with input boxes ?
Best regards,
GünterJune 8, 2022 at 9:47 am #1354494Thanks @Guenni007
The issue is simple when you set the sizes you expect it to only affect those screen sizes and the “Default” for all other screen sizes should be the theme default OR the styles specified in the new Enfold > General Styling > Typography tab. The logic isn’t right at the moment.
This is a new change in the most recent versions of Enfold. The problem only started to occur when I moved to the latest version.
It used to work as expected but now as Guenni007 has pointed out the Default size is now the desktop size which is really silly.
@Rikard
Do you have enough to understand the issue here?I just want to add – I have over 50 Enfold licenses / sites with another 15 in progress and in about half of the cases I did not specify font sizes for the smaller screens. This means I will have to go through every heading on every page and explicitly state font sizes – Its going to take an extremely long time and is caused by a recent change in the logic.
-
This reply was modified 3 years, 8 months ago by
thinkjarvis.
-
This reply was modified 3 years, 8 months ago by
thinkjarvis.
June 8, 2022 at 8:47 am #1354485if this is important for me to have a more responsive design on font-sizes – i use often the clamp method
see the heading on page: https://webers-testseite.de/heading-with-fluid-font-size/one big disadvantage on that – you had to think of column-width – because the middle font-size definition is related to screen-width.
but a 1/2 column only got 50vw of total place … and after colaps it has that 100vw again.So a perfect simple solution is not in sight. Customized solutions are then sought after. For headings that are positioned within a full-width container, one can take the min – max solution.
You can see here a nice font-size calculator to get this css definition:
https://websemantics.uk/tools/responsive-font-calculator/June 8, 2022 at 8:29 am #1354482Yes – i can confirm this for headings
on that test page i choose under styling tab : 48px and for the next ( 768-989) 40px and let the rest to default.So – I can confirm that. Strangely enough, it is also there as it is.

The first setting defines the “Default Size”. I think this is not how it should be interpreted. The format should be set there for large screens.
Or one takes it in fact here around the default to specify, it can be overwritten then in the following with another setting and if one leaves it on “default” with the smaller screen widths it is defined there relative (thus 480px to 767px) on 50% then the smaller screens accordingly smaller.June 8, 2022 at 5:04 am #1354471In reply to: Column widths of table
Hi whdsolutions,
Is this already fixed? I have checked the link and it seems to be working properly with this code:
tr th:first-child, tr td:nth-child(1) { width: 20%; vertical-align: middle; font-size: 15px; color: #2d4f76; } tr th:first-child, tr td:nth-child(2) { width: 58%; vertical-align: middle; font-size: 15px; color: #2d4f76; } tr th:first-child, tr td:nth-child(3) { width: 22%; text-align: center; vertical-align: middle; font-size: 17px; font-weight: bold; color: #2d4f76; }The code however is global and could affect tables on other pages, I would suggest you target the specific table using ID (#av-tm6a-293684b59095412a37110c873b903ed6).
Best regards,
NikkoJune 8, 2022 at 4:54 am #1354470In reply to: blog page not working regularly
Hi Elena,
Please try adding this CSS code as well:
.ww-masonry-cat span { color: #719430; font-size: 12px; }Best regards,
NikkoJune 7, 2022 at 3:39 pm #1354412In reply to: blog page not working regularly
Hi Mike,
thank you for your help.
It does show the category name, but I don’t like how it looks that much, as it is in the same font, size and color as the summary and one can hardly understand it is a category name.
Any chance it can appear in the same font and color as it appears in the article slider? (there is one at the bottom of the homepage).Best regards,
ElenaJune 7, 2022 at 2:40 pm #1354391Topic: Bug: New Typography tools clash with settings on the page
in forum Enfoldthinkjarvis
ParticipantHi team,
In the latest update of Enfold – When you specify font sizes for ALB Special Headings or Slider Headings the default sizes are not applied correctly.
If you overide the settings locally for Desktops and leave the others as default – The system seems to apply the last specified size to smaller screen sizes.
So if I create an ALB Special Heading and set the Desktop font size to 48px and the tablet size to 40px – Leaving the two smallest size as default – It automatically applies the larger size to the mobile sizes.
Essentially – Giant fonts on mobile phones causing overflow issues for sliders and headings where the container has a fixed height.Really hard to explain but this has affected every site on my server where I had left some of the font settings for smaller screen sizes as default size.
I had to go in to every header element (h1 – h6) on every page and change the mobile size defaults to specific pixel sizes to resolve the issue.
Is it possible for you to investigate? I’ll see if I can re-create the issues for you on my test server when I am next in there.
Can you try creating a special heading in a clean Enfold install and within the element change the desktop and tablet sizes to 48px leaving the smallest two sizes as default. This should cause the fonts to become massive on mobile devices instead of using the defaults.
-
This topic was modified 3 years, 8 months ago by
thinkjarvis.
June 7, 2022 at 9:10 am #1354357In reply to: Move menu to center
Hi,
Thanks for the update. You can change the default body font size under Enfold->General Styling->Typography.
Facebook; did you try to activate social icons under Enfold->Header->Extra Elements?
Best regards,
RikardJune 6, 2022 at 6:56 pm #1354320In reply to: Move menu to center
This reply has been marked as private.June 5, 2022 at 5:37 pm #1354234In reply to: Text loading bold and immediately going non-bold
Hi Mike,
I don’t quite understand. In the page editor I have just tried to get this text loading as a H1 tag, please see the code here:
<h1 style="text-align: center;"><span style="font-size: 17pt;">WELCOME TO ************</span></h1> <h1 style="text-align: center;"><span style="font-size: 17pt;">THE BLOG THAT WOULDN'T BE POSSIBLE *******************</span></h1>That is all that should be applied. Is there some code elsewhere that is messing with this?
I have uploaded a screenshot of the styling page but in all honesty, this was setup for me and I don’t really understand it. I bought a website which came with your theme which I have now bought so I can get the support. I’m not a web designer but understand little bits.
Thanks.
June 4, 2022 at 10:55 pm #1354191In reply to: Customize Hospot-Tooltip
Hi,
Please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:.avia-tooltip .inner_tooltip { font-size: 1.5em; line-height: 1.65em; color: #fff; } #top .av-tt-large-width { width: 350px; } .main_color .avia-tt, .main_color .avia-tt .avia-arrow, .main_color .avia-tt .avia-arrow { background-color: #add4ef; }
Feel free to adjust to suit.
After applying the css, please clear your browser cache and check.
If this still doesn’t work for you then we will need to see your example so we can examine, so please create a test site online.Best regards,
MikeJune 4, 2022 at 3:27 pm #1354151In reply to: problème d'actualisation suite modification du CSS
Hi,
Thank you for your patience, as I understand your issue, on your History portfolio page: /portofolio-histoire/ you want to increase the masonry mouse-over title with this css:.masonry-portofolio { font-size: 22px !important; }I didn’t find this css in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field or in your child theme ▸ style.css
So I tested this in your child theme ▸ style.css:

and checked with Chrome, Firefox, Edge in Windows and it worked correctly:

I also had the same results in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field

Please clear your browser cache and check.Best regards,
MikeJune 3, 2022 at 1:59 pm #1354025In reply to: Customize Hospot-Tooltip
the setting on default is:
.avia-tooltip .inner_tooltip { font-size: 0.925em; line-height: 1.65em; }June 3, 2022 at 4:57 am #1353981In reply to: Display post tags as small buttons
Hi m s,
Try adding this CSS code and just change the font size value:
#top #wrap_all .av_one_fifth .bloglist-simple .post-title { font-size: 16px; }Hope this helps.
Best regards,
NikkoJune 2, 2022 at 4:04 pm #1353933In reply to: Blog Post Excerpt Font size
Hi,
Please try this:
.entry-content-wrapper p { font-size: 12px; }Best regards,
RikardJune 2, 2022 at 3:36 pm #1353929In reply to: Display post tags as small buttons
Ok. How do I reduce the size of the font of only the post titles in the blog list? All other instances of blog titles should stay as is.
June 2, 2022 at 2:21 pm #1353921In reply to: Blog Post Excerpt Font size
the font size of the blog post excerpt
June 2, 2022 at 8:22 am #1353866In reply to: Customize Easy Slider
Hey joshuabcohen,
Thank you for the inquiry.
You can use this css code in the Enfold > General Styling > Quick CSS field to adjust the style of the slider caption title.
.responsive #top .avia-slideshow .avia-caption-title { font-weight: 600; line-height: 1.2em; font-size: 34px; }Best regards,
Ismael -
This topic was modified 3 years, 8 months ago by
-
AuthorSearch Results
-
Search Results
-
Topic: Menue Font Size
Hi team,
In the latest update of Enfold – When you specify font sizes for ALB Special Headings or Slider Headings the default sizes are not applied correctly.
If you overide the settings locally for Desktops and leave the others as default – The system seems to apply the last specified size to smaller screen sizes.
So if I create an ALB Special Heading and set the Desktop font size to 48px and the tablet size to 40px – Leaving the two smallest size as default – It automatically applies the larger size to the mobile sizes.
Essentially – Giant fonts on mobile phones causing overflow issues for sliders and headings where the container has a fixed height.Really hard to explain but this has affected every site on my server where I had left some of the font settings for smaller screen sizes as default size.
I had to go in to every header element (h1 – h6) on every page and change the mobile size defaults to specific pixel sizes to resolve the issue.
Is it possible for you to investigate? I’ll see if I can re-create the issues for you on my test server when I am next in there.
Can you try creating a special heading in a clean Enfold install and within the element change the desktop and tablet sizes to 48px leaving the smallest two sizes as default. This should cause the fonts to become massive on mobile devices instead of using the defaults.
