-
AuthorSearch Results
-
May 12, 2023 at 9:57 am #1407192
Topic: button text – like to change font size, weight
in forum EnfoldNomad
ParticipantHi,
is there some quick CSS magic available that let me control font size, weight on some of my buttons?-
This topic was modified 2 years, 8 months ago by
Nomad.
May 12, 2023 at 9:54 am #1407191Topic: numbered icon list: like to change Font
in forum EnfoldNomad
ParticipantHi,
I recognised enfold having a font problem with a numbered icon list.
In quick CSS, I used …
.VV-IconList-numbers li:nth-child(1) .iconlist-char:before {content: '1'; } .VV-IconList-numbers li:nth-child(2) .iconlist-char:before {content: '2'; }how can I change font/family, weight, size as well?
-
This topic was modified 2 years, 8 months ago by
Nomad.
May 12, 2023 at 9:47 am #1407190Topic: Subline for “av_button” Buttons
in forum EnfoldNomad
ParticipantHi,
I’d like to have a button with a subline below. Like to change font, size, weight, more lines …
is this a new feature request or possible with a little quick-CSS magic?-
This topic was modified 2 years, 8 months ago by
Nomad.
May 11, 2023 at 7:23 pm #1407146In reply to: Admin-Seite wählt Hauptmenü nicht an
This reply has been marked as private.May 11, 2023 at 5:46 pm #1407138Topic: Fullwidth Easy Slider Titel Position // Button Hover
in forum Enfoldclaudipro
ParticipantHello,
I have two questions to solve:
1. I would like to have th position of titel and Caption in the Fullwidht easy slider more on the top of the page than on the bottom. Didn’t find a way to do this.
2. I changed the color from the button. Is it possible to customize the hover style from the button too?
This is the CSS I used for the Button:
/* Slideshow button */
#top .avia-slideshow-button {
background: rgba(255,210,62, .75) !important;
font-color: #65877f; -> Font color doesn’t work, the Font is still white!
padding: 20px;
min-width: 300px;
min-hight: 180px;
border-radius: 15px;
font-size: 20px;
line-height: 20px;
}Thank’s for your help.
ClaudiaMay 10, 2023 at 4:24 pm #1407012I think you misunderstood me.
I meant the css in your earlier letter of August 28, 2022.
————————–
This looked like this in its entirety:
@media only screen and (max-width: 1024px) {
#av_section_2.av-parallax-section {
overflow: visible;
}
#av_section_1 .av-section-color-overlay {
opacity: 0;
}
}
————————–
What does the (extra) css mean?
#av_section_1 .av-section-color-overlay {
opacity: 0;And why is max width 1024 and not 1366
What do you mean by: Did you try this and adjust the font size to suit your needs, is it working for you?
May 10, 2023 at 1:00 pm #1406986In reply to: Accordion Not Working
Hi, Thanks, that has fixed the Accordion.
But there are still two further issues.
1. The Text Block Font Size responsivity is not working, it does not adjust on different screens.
2. When the plugins are active, the Home page does not update.May 9, 2023 at 12:15 pm #1406878Hi,
The css in my last post is only for the font size, the other css should also remain as it is not the same as the first post.
The max-width of 1024 tells the css to not work above 1024px, so it doesn’t apply for the headings since you do want it to work for 1024px and above.
Did you try this and adjust the font size to suit your needs, is it working for you?Best regards,
MikeMay 9, 2023 at 4:17 am #1406817In reply to: Regular price not crossed out and gray
Hey Illingco,
Thank you for the inquiry.
The following css rule overrides the default style of the original product price.
#top .price, #top .price span, #top del, #top ins { display: inline; text-decoration: none; font-size: 15px; line-height: 24px; font-weight: 600; } div.product p.price del { font-size: 14px; color: #8b2121; }To revert the style back to default, you can add this css code.
#top .price del { text-decoration: line-through; color: gray; }You may need to temporarily disable the Enfold > Performance > File Compression settings and toggle the compression plugin.
Best regards,
IsmaelMay 9, 2023 at 12:10 am #1406813In reply to: Print the current date in a text box/button
try using that little snippet in your child theme functions.php:
function show_date_with_shortcode() { date_default_timezone_set('Europe/Berlin'); setlocale(LC_TIME, 'de_DE.UTF-8'); $date = date_i18n( 'l \d\e\n ' . get_option( 'date_format' ) . ' ' . get_option( 'time_format' ). ' \U\h\r' ); return $date ; } add_shortcode( 'show_date', 'show_date_with_shortcode' );use it as shortcode in your text :
[show_date]this is for my german language a binding word \d \e \n will end in Freitag den 17.04.1968
the rest will be corresponding to your lang settings – but if you like to have that binding word f.e. the then use \t\h\e
if you don’t like the time in this shortcode – just remove that part:
$date = date_i18n( 'l \d\e\n ' . get_option( 'date_format' ) );___________
or style a kind of calendar sheet:
function datum_shortcode() { date_default_timezone_set("Europe/Berlin"); setlocale(LC_TIME, 'de_DE.UTF8'); $year = date_i18n('Y'); $day = date_i18n('d'); $month = date_i18n('F'); $weekday = date_i18n('l'); $weekdaycolor = date_i18n('l') == 'Sonntag' ? 'red': 'gray' ; $uhrzeit = date_i18n( get_option( 'time_format' ) ); $datum = '<div id="calendar_sheet"><div class="month-year"><span class="month">'.$month.'</span><span class="year">' .$year.'</span></div><div class="day ' .$weekdaycolor.'">'.$day.'</div><div class="weekday">'.$weekday.'</div><div class="time">'.$uhrzeit.'</div></div>'; return $datum; } add_shortcode('calendar_sheet', 'datum_shortcode');here use it as shortcode in your text:
[calendar_sheet]some css for it:
#calendar_sheet{ text-align:center; display: inline-block; border:1px solid #eee; border-top:15px solid #0076ba; -webkit-box-shadow: 5px 5px 2px #ccc; -moz-box-shadow: 5px 5px 2px #ccc; box-shadow: 5px 5px 2px #ccc; background:#fafafa; padding: 5px; min-width: 150px; } .month-year .month, .month-year .year { padding: 0 5px } .day { font-size:48px; font-weight: bold; font-family: times; padding: 10px 0 0; } .day.red { color: red; } #calendar_sheet .time { font-size: 24px; }see both shortcodes in action on: https://enfold.webers-webdesign.de/3-columns/
again adjust to your language: so for red Sundays change that Sonntag to Sunday in weekday color ;)
and change to your local time in these lines:date_default_timezone_set("Europe/Berlin"); setlocale(LC_TIME, 'de_DE.UTF8');-
This reply was modified 2 years, 8 months ago by
Yigit.
May 8, 2023 at 6:45 pm #1406780Hi,
Glad this helped, the parallax allows the image to also move as the foreground moves, scroll doesn’t. The height of the parallax image doesn’t really alow you to see the effect very well, it works better when the image is bigger.
The media query max-width is pixel width of the screen size.
For the masonry headings this is the css, adjust to suit:#top #main .av-caption-style-overlay .av-masonry-entry .av-masonry-entry-title { font-size: 1.5em; }Best regards,
MikeMay 8, 2023 at 11:38 am #1406721Thanks for your answer.
By setting it to parallax and the extra css it now works. The lower height header (https://lacasatorre.nl/portfolio-item/zwembad/) has the parallax setting, the higher height header (https://lacasatorre.nl/inrichting/) has the scroll setting.• Question, what exactly is the difference between parallax and scroll?
• And can you explain to me what the max-width in the css means, what is the meaning of the number of pixels.Another question I asked, but maybe I should create a new ticket for that?
Can you adjust the font size of the headings (such as swimming pool, living room, etc.) in the pictures at the bottom of the page (masonry) see https://lacasatorre.nl/inrichting/. Intended for the iPad!!-
This reply was modified 2 years, 8 months ago by
tomcusters.
-
This reply was modified 2 years, 8 months ago by
tomcusters.
-
This reply was modified 2 years, 8 months ago by
tomcusters.
-
This reply was modified 2 years, 8 months ago by
tomcusters.
May 6, 2023 at 8:20 pm #1406600Hi,
I recommend this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#top #main a.av-masonry-pagination.av-masonry-load-more { font-size: 0px; } #top #main a.av-masonry-pagination.av-masonry-load-more:before { content:"Load More Articles"; font-size: 13px; }After applying the css, please clear your browser cache and check.
Best regards,
MikeMay 5, 2023 at 12:02 pm #1406518Hello again,
Following on from my previous question.
Can you adjust the font size of the headings (such as swimming pool, living room, etc.) in the pictures at the bottom of the page (masonry) see https://lacasatorre.nl/inrichting/
If you then click on a picture (at the bottom of the page), for example swimming pool (https://lacasatorre.nl/portfolio-item/zwembad/ ), and you view this on an iPad or telephone, the block with text and photos will disappear under the header with photo, see: https://imgur.com/a/mtjCwmN !
This is NOT the case on the regular computer.I’ve tried everything, but can’t find where to change this.
If the photo in the header is higher then it goes well, if the photo is smaller it disappears.-
This reply was modified 2 years, 8 months ago by
tomcusters.
-
This reply was modified 2 years, 8 months ago by
tomcusters.
May 4, 2023 at 4:53 pm #1406461In reply to: Admin-Seite wählt Hauptmenü nicht an
Hi,
Thanks for the feedback, try this css:#top.single-post .wp-caption-text { font-style: normal; font-family: 'montserrat'; font-size: 14.95px; font-weight: 400; color: #383838; }After applying the css, please clear your browser cache and check.
Best regards,
MikeMay 4, 2023 at 7:48 am #1406411In reply to: Admin-Seite wählt Hauptmenü nicht an
This reply has been marked as private.May 3, 2023 at 5:09 pm #1406360In reply to: Blog post text alignment is off in mobile view
Hi,
It looks like you are referring to the justified text alignment, try checking your customized css for this rule:#top .fullsize .template-blog .post .entry-content-wrapper { text-align: justify; font-size: 1.15em; line-height: 1.7em; max-width: 800px; margin: 0 auto; overflow: visible }and change justify to left, or try adding this css to your Quick CSS:
#top #main .fullsize .template-blog .post .entry-content-wrapper { text-align: left; }After applying the css, please clear your browser cache and check.
Best regards,
MikeMay 3, 2023 at 2:04 am #1406279In reply to: Adjusting Hotspot font size
Hey woogie07,
Thank you for the link to your site, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:.av-image-hotspot .inner_tooltip p { font-size: 13px; }Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
After applying the css, please clear your browser cache and check.
I css your number 4 hotspot is wrapping the text in a div instead of the “p” tag, so this css won’t change that font size, perhaps you were testing?Best regards,
MikeMay 2, 2023 at 6:43 pm #1406244Topic: Adjusting Hotspot font size
in forum Enfoldwoogie07
ParticipantHi,
I notice that your demos show hotspot point size at the same size as the body copy.
I am developing a site and my font looks much smaller than the body font size.
Where can this be adjusted as I can’t see it in the hotspot element editing?
Thanks
April 29, 2023 at 10:42 pm #1406024Hey JannyPolak,
Thank you for your patience, this is the correct behavior for the element, only the loaded items will be seen until the “load more” button is used.
You can change the text of the “load more” button to better convey that there are more images if you wish with this css:#top #main a.av-masonry-pagination.av-masonry-load-more { font-size: 0px; } #top #main a.av-masonry-pagination.av-masonry-load-more:before { content:"See all photos"; font-size: 13px; }Or you can choose to show all images in the element settings and hide some of them on the frontend with css, for example try this css:
#av-masonry-1 .av-masonry-container .av-masonry-entry:nth-child(n+8) { display: none; }this will show only the first six items but when you open one in the lightbox you will see the lightbox counter will show 18 and you can click the prev / next arrows to see all 18.
Best regards,
MikeApril 29, 2023 at 1:56 pm #1405987In reply to: How to disable animated number section
Hi,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:span.avia-single-number { font-size: 0; } span.avia-single-number:after{ content: attr(data-number); font-size: 70px; }Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
After applying the css, please clear your browser cache and your cache plugin and then check.Best regards,
MikeApril 28, 2023 at 8:28 am #1405914Alison
ParticipantHi,
my website can’t open suddenly. I was putting a quick css, like below:
td {
font-size: 1.5em;
border-color: blue !important;
}And when I flash the website, it shows 504 Gateway Time-out. And I can’t open the dashboard either.
maybe I lost some symbols in quick css, but can a wrong css cause the this problem?April 28, 2023 at 1:24 am #1405888In reply to: Modify Social Media Icons in Header/menu
Hi,
To change your social icons to images try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#top .social_bookmarks li:hover a { background: transparent !important; } #top .social_bookmarks li a:before{ content: ""; display: block; width: 30px; height: 30px; } #top .social_bookmarks li.social_bookmarks_facebook a:before { background: url(https://img.icons8.com/offices/30/000000/hot-air-balloon.png) center center no-repeat; background-size: contain; } #top .social_bookmarks li.social_bookmarks_instagram a:before { background: url(https://img.icons8.com/offices/30/000000/hot-air-balloon.png) center center no-repeat; background-size: contain; } #top .social_bookmarks li.social_bookmarks_linkedin a:before { background: url(https://img.icons8.com/offices/30/000000/hot-air-balloon.png) center center no-repeat; background-size: contain; }and change the image urls to yours.
If you are going to use your own images you can change the height & width in the css above to make them the size you wish, if you are not going to use your own image you can change the font icon size with this css, adjusting to suit:#top #wrap_all .social_bookmarks li a { width: 30px!important; line-height: 30px!important; min-height: 30px!important; font-size: 20px!important; } #top #wrap_all .social_bookmarks li { height: 20px!important; width: 30px!important; } #top #wrap_all .social_bookmarks { height: 60px!important; }To change the colors try this css:
#top #wrap_all .av-social-link-facebook a, #top #wrap_all .av-social-link-facebook:hover a { color: #fff; background-color: #37589b; text-decoration: none; } #top #wrap_all .av-social-link-instagram a, #top #wrap_all .av-social-link-instagram:hover a{ color: #fff; background-color: #d92e7d; text-decoration: none; } #top #wrap_all .av-social-link-linkedin a, #top #wrap_all .av-social-link-linkedin:hover a { color: #fff; background-color: #419cca; text-decoration: none; }Best regards,
MikeApril 26, 2023 at 7:23 pm #1405736In reply to: Mobile menu – Font size and colour
Hey Alan,
Please try the following in Quick CSS under Enfold->General Styling:
.html_av-overlay-side #top #wrap_all .av-burger-overlay-scroll #av-burger-menu-ul a { color: red; font-size: 16px; }Best regards,
RikardApril 26, 2023 at 10:52 am #1405682Topic: Mobile menu – Font size and colour
in forum EnfoldSchmidtgrafisk
ParticipantHey Enfold
How do I set Mobile menu – Font size and colour.
It’s just the mobile menu ;)Thanks
Alan ;)April 26, 2023 at 10:35 am #1405680Topic: MEC (M.E. Calender) and other troubles
in forum EnfoldMareenMalessa
ParticipantHey dear support,
I have some troubles with the enfold theme.1. the MEC plugin (Modern Events Calender Pro) is crashing the layout
Look in the private content please.2. I’m not able to change the font size of the main menu and the content text. I cleared the cache, but it does not work. I read here in the topics that there’s maybe a problem in the quick CSS but I can’t find the error.
Can you take a look please and help me?
Thank you so much and very kind regards
MareenApril 26, 2023 at 10:00 am #1405675In reply to: Search Icon bigger
Hi,
Please add the following code to the Quick CSS field as well
#top #header #menu-item-search a::after { content: ' Search'; font-size: 20px; position: relative; top: -5px; }Best regards,
YigitApril 26, 2023 at 6:23 am #1405645Hi,
Also, my header video is not showing all of the text on mobile.
You can decrease the font size of the heading element to make room for the rest of the content. Please add this css code.
@media only screen and (max-width: 489px) { #top #wrap_all .av-special-heading.av-lgwoy0g4-67703d5d6519f9f2bd4d8bcfc4f4746e .av-special-heading-tag { font-size: 0.6em; } }Best regards,
IsmaelApril 26, 2023 at 5:47 am #1405638In reply to: how to change the table size in text block
Hey Alison,
Thank you for the inquiry.
Did you add this css code somewhere?
td { font-size: 13px; padding: 9px 12px; border-style: solid; border-width: 1px; border-left: none; border-top: none; }It sets the font size of the table content to 13px. To override, it you can add the following code in the Quick CSS field.
td { font-size: 1.2em; }Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings afterwards.
Best regards,
IsmaelApril 26, 2023 at 1:51 am #1405631In reply to: I want to have 6 items in 2 columns on Mobile.
4-25
Thanks, Mike. Could I ask you some questions about another issue? How do you feel about replacing font px measurements with rem measurements to make a site more “scalable”? Does Enfold recommend it? In Brave and Chrome, increasing and decreasing the size of a website that uses pixels is easy. But all the big sites are doing it.
Thanks, Stephen -
This topic was modified 2 years, 8 months ago by
-
AuthorSearch Results
-
Search Results
-
Topic: Adjusting Hotspot font size
Hi,
I notice that your demos show hotspot point size at the same size as the body copy.
I am developing a site and my font looks much smaller than the body font size.
Where can this be adjusted as I can’t see it in the hotspot element editing?
Thanks
Hi,
my website can’t open suddenly. I was putting a quick css, like below:
td {
font-size: 1.5em;
border-color: blue !important;
}And when I flash the website, it shows 504 Gateway Time-out. And I can’t open the dashboard either.
maybe I lost some symbols in quick css, but can a wrong css cause the this problem?Hey Enfold
How do I set Mobile menu – Font size and colour.
It’s just the mobile menu ;)Thanks
Alan ;)Hey dear support,
I have some troubles with the enfold theme.1. the MEC plugin (Modern Events Calender Pro) is crashing the layout
Look in the private content please.2. I’m not able to change the font size of the main menu and the content text. I cleared the cache, but it does not work. I read here in the topics that there’s maybe a problem in the quick CSS but I can’t find the error.
Can you take a look please and help me?
Thank you so much and very kind regards
Mareen
