-
AuthorSearch Results
-
July 28, 2024 at 4:04 pm #1463160
In reply to: Social media icons
Hi,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field instead to have larger round social icons in the socket, it also adds a white background color before mouse-over and on mouse-over the icon colors show, I have not sure what color you wanted as typically there is no color until mouse-over, feel free to adjust the color to suit.#socket .social_bookmarks li a { width: 50px!important; line-height: 50px!important; min-height: 50px!important; font-size: 30px; } #socket .social_bookmarks li { height: 50px!important; width: 50px!important; } #top #wrap_all .av-social-link-instagram a { color: var(--enfold-socket-color-meta); background-color: #fff; } #top #wrap_all .av-social-link-linkedin a { color: var(--enfold-socket-color-meta); background-color: #fff; }After applying the css, please clear your browser cache and check.
Best regards,
MikeJuly 27, 2024 at 10:26 am #1463092Hey designguy2006,
Please try the following in Quick CSS under Enfold->General Styling:
.html_av-submenu-hidden .av-submenu-indicator { font-size: 20px; color: red; }Best regards,
RikardJuly 26, 2024 at 7:20 am #1463013In reply to: Social media icons
Hey Richard,
Thank you for the inquiry.
The social icons in the socket container were already white when we checked. To adjust the size, please add this css:
#top #socket .social_bookmarks li a { float: left; width: 50px; line-height: 50px; min-height: 50px; font-size: 30px; } #top #socket .social_bookmarks { height: 50px; }Best regards,
IsmaelHi,
I added this css to your Quick CSS:#top #header .avia_mega_div .sub-menu .avia_mega_text_block a { text-decoration: none; font-size: 12px; } #top #header .avia_mega_div .avia_mega_text_block .avia-bullet { margin-top: 10px; left: -8px; }please clear your browser cache and check.
Best regards,
MikeJuly 25, 2024 at 10:55 am #1462954Hey ftt123,
Please try the following in Quick CSS under Enfold->General Styling:
@media only screen and (max-width: 767px) { .avia-slideshow-slide .avia-caption-content p { font-size: 18px; } }Best regards,
RikardJuly 25, 2024 at 9:27 am #1462939ftt123
ParticipantHi, the homepage of my website (in private content) when displaying on mobiles, the text of the fullwidth slider is overlapping the image in a big fontsize, and it is not readable….how to solve it?
Thanks in advance!July 21, 2024 at 4:44 pm #1462615Hi,
This is what is currently appyling:
#main .avia_textblock.text-about { margin-top: 0px; padding-top: 5px; padding-bottom: 5px; font-size: 19px; font-family: zen-kaku-gothic-new; font-weight: 500; word-spacing: 18px; }Changing the top and bottom padding values work when I test it in the browser.
Best regards,
RikardJuly 21, 2024 at 11:12 am #1462600Hi Rikard,
thanks for your fast reply!
That works nice with the font-family and the font-size.
But i’m not able to reduce the space above and below the text-block?
I tried to change:padding-top: 12px; padding-bottom: 8px;but it does not change as on the screenshot?
kind regards
JakJuly 21, 2024 at 11:02 am #1462598Hi,
Please try this CSS instead:
#main .avia_textblock.text-about { margin-top: 0px; padding-top: 12px; padding-bottom: 8px; font-size: 18px; font-family: zen-kaku-gothic-new; font-weight: 500; }Best regards,
RikardJuly 20, 2024 at 11:30 pm #1462587Sorry, sure…
I just saw, that i can’t add links to special heading. So i changed it to a text-block with links.
How can i use the same css for the text-block instead of the special heading (i added the class “text-about” in developer settings for this text-block)?#main .container_wrap_first .av-special-heading.custom-class { margin-top: 0px; padding-top: 12px; padding-bottom: 8px; }and also use this css for the font-style too:
font-size: 18px; font-family: zen-kaku-gothic-new; font-weight: 500;Sorry for my confusion.
kind regards
Jak-
This reply was modified 1 year, 6 months ago by
Jak73.
July 20, 2024 at 10:00 pm #1462582Hi Mike,
this works great!
How can i add a text styling too:font-size: 18px; font-family: zen-kaku-gothic-new; font-weight: 500;Tried to add this to the css above, but it’s not affecting it?
kind regards
JakJuly 19, 2024 at 7:15 am #1462458In reply to: 3 images with clickable link next to another
Hey Jak73,
Thank you for the inquiry.
Yes, you may need to manually create this using html and a few css modifications. Please start with this html code in a text or code block element:
<div class="navigation"> <button class="nav-button left-arrow">←</button> <button class="nav-button close-button">×</button> <button class="nav-button right-arrow">→</button></div>Then add this css code:
.navigation { display: flex; justify-content: center; align-items: center; } .nav-button { background-color: #fff; border: 1px solid #ccc; padding: 10px; margin: 0 5px; cursor: pointer; font-size: 16px; } .nav-button:hover { background-color: #f0f0f0; } .left-arrow, .right-arrow { font-size: 18px; } .close-button { font-size: 20px; }Best regards,
IsmaelJuly 17, 2024 at 4:47 pm #1462284In reply to: show marker in certain pictures in portfolio grid
Finally success!
.gast_sort { position: relative; } .gast_sort .grid-image { position: relative; display: inline-block; overflow: hidden; } .gast_sort .grid-image::before { content: 'Gast'; / position: absolute; bottom: 0; left: 0; width: 100%; background-color: rgba(218, 218, 33, 0.5); color: #ffffff; padding: 5px 10px; box-sizing: border-box; font-weight: bold; font-size: 24px; z-index: 10; text-align: center; }July 17, 2024 at 3:15 pm #1462275In reply to: show marker in certain pictures in portfolio grid
Sounds easy enough!
I added a portfolio category ‘Gast’ and added the following function to ad a custom class to the categorized portfolios, but I cant seem to get the banner to show up.I added this to functions.php of the child theme:
function add_custom_category_class($classes) { if (is_category('378')) { $classes[] = 'category-378'; } return $classes; } add_filter('body_class', 'add_custom_category_class');and this to my css:
.category-378 .grid-entry .inner-entry { position: relative; } .category-378 .grid-entry .inner-entry::before { content: 'Gast'; position: absolute; top: 0; left: 0; width: 100%;height: 50px;
background-color: rgba(255, 0, 0, 0.8);
color: white;
display: flex;
align-items: center;
justify-content: center;
font-size: 18px;
font-weight: bold;
transform: rotate(-45deg);
transform-origin: top left;
z-index: 1;
}Hi,
Thanks for that. Please try the following in Quick CSS under Enfold->General Styling:
.main_color.iconbox_top .iconbox_icon:before { color: blue; font-size: 20px; }Best regards,
RikardJuly 15, 2024 at 3:50 pm #1462096In reply to: show marker in certain pictures in portfolio grid
Thank you.
I am a bit stumped. I thought it is a quite easy fix, but I run into problems.My idea is to first figure out how to get anything shown on top of the image. Lets say ‘Test’ and then when that works make it so that it only displays when the portfolio item has a certain attribute. But I am already struggling to get “test” to show up.
Here is the code I found to change:
$image = get_the_post_thumbnail( $the_id, $image_size, $image_attrs ); if( ! empty( $image ) ) { $output .= '<div class="av_table_col portfolio-grid-image">'; $output .= "<{$link_markup[0]} data-rel='grid-" . avia_post_grid::$grid . "' class='grid-image avia-hover-fx'>{$custom_overlay} {$image}</{$link_markup[1]}>"; $output .= '</div>'; } $output .= '<footer class="entry-footer"></footer>'; $output .= '</article>'; $output .= '</div>';And here is the code I change it to:
$image = get_the_post_thumbnail($the_id, $image_size, $image_attrs); if (!empty($image)) { $output .= '<div class="av_table_col portfolio-grid-image">'; $output .= "<{$link_markup[0]} data-rel='grid-" . avia_post_grid::$grid . "' class='grid-image avia-hover-fx'>"; $output .= "{$custom_overlay} {$image}"; $output .= "<div class='overlay-text'>test</div>"; // Add this line for the overlay $output .= "</{$link_markup[1]}>"; $output .= '</div>'; } $output .= '<footer class="entry-footer"></footer>'; $output .= '</article>'; $output .= '</div>';I also added the following passage to my style.css
.grid-image { position: relative; display: inline-block; } .grid-image img { display: block; width: 100%; height: auto; } .overlay-text { position: absolute; bottom: 10px; left: 10px; background-color: rgba(255, 255, 255, 0.7); color: #dada21; padding: 5px 10px; border-radius: 5px; font-size: 16px; font-weight: bold; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); }Unfortunately I dont get the text to show up.
Where is my mistake?July 15, 2024 at 7:11 am #1462058In reply to: Reduction of the font size on mobile devices
Hey reqonsult,
Thank you for the inquiry.
Are you using the Fullscreen Slider element? Try to edit one of the slides, go to the Styling > Font Sizes panel and adjust the Caption Content Font Size and the Caption Title Font Size settings. It’s possible to set a custom font size for different screen sizes.
Best regards,
IsmaelJuly 14, 2024 at 11:25 pm #1462050Topic: Reduction of the font size on mobile devices
in forum Enfoldreqonsult
ParticipantIs it possible to reduce the font size on mobile devices only? We are satisfied with the font size in desktop devices, but some text is partially cut off in the mobile view. Thank you.
July 14, 2024 at 8:50 pm #1462047In reply to: Menu Items for mobile
Hi,
Try this css instead#top #header_meta .phone-info span { font-family: 'Raleway', sans-serif; font-size: 18px; font-weight: 900 !important; color: #000; }After applying the css, please clear your browser cache and check.
Best regards,
MikeJuly 14, 2024 at 4:02 pm #1462033In reply to: Email field in mobile view in a different color
Hey Diana,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#top .main_color input[type='email'] { border-color: #ffffff; background-color: #f6f7f9; color: #1e242f; font-weight: 300; font-size: 10px; text-transform: uppercase; letter-spacing: 1px; }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.Best regards,
MikeJuly 14, 2024 at 2:15 pm #1462024In reply to: Menu Items for mobile
Hi,
When I check now the font size is now 13px, try clearing your browser cache if you use Safari try following these steps for Safari and note step 4 where you will Clear the History.Best regards,
MikeJuly 13, 2024 at 3:55 pm #1461978In reply to: Menu Items for mobile
Hi,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#header_meta .phone-info span { font-size: 13px; font-weight: bold; }adjust the font size to suit and after applying the css, please clear your browser cache and check.
Best regards,
MikeJuly 13, 2024 at 3:34 pm #1461974the_digital_manager
ParticipantI started yet another (my 5th) Enfold web project (happy customer, mainly due to the awesome support that always helps me to tweak the theme). Each time I try to achieve an individual identity for the website and this time I’d like to tweak the main menu.
Basically what I’m trying to achieve is to wrap a ‘transparant box’ around the menu with an adjustable background and font colour. The logo needs to be on the left (with another background colour of that socket) and on the right a CTA (make appointment) with another background colour in that socket (which I guess will be a custom link in the menu using the coloured button option, though the button needs to have the same hight as the rest) . This applies for devices starting from a screen size of tablets. The menu is on top of the content of the page (i.e. a full width slider or image)
See https://drive.google.com/file/d/1twinJeP4c580lVkn9jbqnAKerd4e_bvd/view?usp=sharing for an example and find the url of a live example of another site in the private content.
looking forward to realize another awesome enfold site!
-
This topic was modified 1 year, 6 months ago by
the_digital_manager.
-
This topic was modified 1 year, 6 months ago by
the_digital_manager.
July 12, 2024 at 2:14 pm #1461924In reply to: 2 times drop down menu in left side bar menu
Hi Mike
I managed to change the font to rift in the burger menu and also could change the font size, so for now it’s good for me and i can go on…
Thank you for all your help!
Greetz Karin
Have a nice weekend!July 10, 2024 at 3:52 pm #1461786Meine Empfehlung wäre schon eher den Code für die functions.php zu nehmen.
siehe den Endkommentar meinerseits.Da post ids und page ids wohl offenbar bei Enfold mit als Klasse bei html geführt werden sollte es reichen nur diese aufzuführen.
Damit der Selector stärker wird solltest Du noch das html vor die Klasse setzen.
Pass auf, das alle selectoren durch Kommata getrennt sind, nur der letzte in der Reihe erhält kein Komma vor der eröffnenden Klammer.die variablen kannst du natürlich anpassen. Je nachdem, was du ersetzen willst. Die Liste was Enfold da anlegt bezieht sich auf die Einstellungen – siehe unten – die Farben bzw. anderen Werte entsprechen den Styling-Einstellungen
html.html_entry_id_777, html.html_entry_id_778, html.html_entry_id_779 { --enfold-header-color-bg: #eee; --enfold-main-color-bg: #eee; --enfold-footer-color-bg: #eee; --enfold-alternate-color-bg2: #eee; --enfold-header-color-bg2: #eee; --enfold-socket-color-bg: #eee; --enfold-socket-color-border: #eee; }Beispiel-Liste was alles von Enfold als variablen geführt werden.
:root { --enfold-socket-color-bg:#333333; --enfold-socket-color-bg2:#555555; --enfold-socket-color-primary:#ffffff; --enfold-socket-color-secondary:#aaaaaa; --enfold-socket-color-color:#eeeeee; --enfold-socket-color-meta:#999999; --enfold-socket-color-heading:#ffffff; --enfold-socket-color-border:#444444; --enfold-socket-color-constant-font:#333333; --enfold-socket-color-button-border:#dddddd; --enfold-socket-color-button-border2:#888888; --enfold-socket-color-iconlist:#333333; --enfold-socket-color-timeline:#333333; --enfold-socket-color-timeline-date:#000000; --enfold-socket-color-masonry:#444444; --enfold-socket-color-stripe:#ffffff; --enfold-socket-color-stripe2:#ffffff; --enfold-socket-color-stripe2nd:#bbbbbb; --enfold-socket-color-button-font:#333333; --enfold-footer-color-bg:#222222; --enfold-footer-color-bg2:#333333; --enfold-footer-color-primary:#ffffff; --enfold-footer-color-secondary:#aaaaaa; --enfold-footer-color-color:#dddddd; --enfold-footer-color-meta:#919191; --enfold-footer-color-heading:#919191; --enfold-footer-color-border:#444444; --enfold-footer-color-constant-font:#222222; --enfold-footer-color-button-border:#dddddd; --enfold-footer-color-button-border2:#888888; --enfold-footer-color-iconlist:#333333; --enfold-footer-color-timeline:#333333; --enfold-footer-color-timeline-date:#000000; --enfold-footer-color-masonry:#222222; --enfold-footer-color-stripe:#ffffff; --enfold-footer-color-stripe2:#ffffff; --enfold-footer-color-stripe2nd:#bbbbbb; --enfold-footer-color-button-font:#222222; --enfold-alternate-color-bg:#fcfcfc; --enfold-alternate-color-bg2:#ffffff; --enfold-alternate-color-primary:#719430; --enfold-alternate-color-secondary:#83a83d; --enfold-alternate-color-color:#666666; --enfold-alternate-color-meta:#8f8f8f; --enfold-alternate-color-heading:#222222; --enfold-alternate-color-border:#e1e1e1; --enfold-alternate-color-constant-font:#ffffff; --enfold-alternate-color-button-border:#507210; --enfold-alternate-color-button-border2:#61861b; --enfold-alternate-color-iconlist:#d0d0d0; --enfold-alternate-color-timeline:#d0d0d0; --enfold-alternate-color-timeline-date:#a0a0a0; --enfold-alternate-color-masonry:#eeeeee; --enfold-alternate-color-stripe:#93b652; --enfold-alternate-color-stripe2:#82a541; --enfold-alternate-color-stripe2nd:#94b94e; --enfold-alternate-color-button-font:#ffffff; --enfold-main-color-bg:#ffffff; --enfold-main-color-bg2:#fcfcfc; --enfold-main-color-primary:#719430; --enfold-main-color-secondary:#83a83d; --enfold-main-color-color:#666666; --enfold-main-color-meta:#919191; --enfold-main-color-heading:#222222; --enfold-main-color-border:#e1e1e1; --enfold-main-color-constant-font:#ffffff; --enfold-main-color-button-border:#507210; --enfold-main-color-button-border2:#61861b; --enfold-main-color-iconlist:#d0d0d0; --enfold-main-color-timeline:#d0d0d0; --enfold-main-color-timeline-date:#a0a0a0; --enfold-main-color-masonry:#ebebeb; --enfold-main-color-stripe:#93b652; --enfold-main-color-stripe2:#82a541; --enfold-main-color-stripe2nd:#94b94e; --enfold-main-color-button-font:#ffffff; --enfold-header-color-bg:#ffffff; --enfold-header-color-bg2:#f8f8f8; --enfold-header-color-primary:#719430; --enfold-header-color-secondary:#444444; --enfold-header-color-color:#333333; --enfold-header-color-meta:#808080; --enfold-header-color-heading:#000000; --enfold-header-color-border:#e1e1e1; --enfold-header-color-constant-font:#ffffff; --enfold-header-color-button-border:#507210; --enfold-header-color-button-border2:#222222; --enfold-header-color-iconlist:#d0d0d0; --enfold-header-color-timeline:#d0d0d0; --enfold-header-color-timeline-date:#a0a0a0; --enfold-header-color-masonry:#e7e7e7; --enfold-header-color-stripe:#93b652; --enfold-header-color-stripe2:#82a541; --enfold-header-color-stripe2nd:#555555; --enfold-header-color-button-font:#ffffff; --enfold-header_burger_color:inherit; --enfold-header_replacement_menu_color:inherit; --enfold-header_replacement_menu_hover_color:inherit; --enfold-font-family-theme-body:"HelveticaNeue","Helvetica Neue",Helvetica,Arial,sans-serif; --enfold-font-size-theme-content:13px; --enfold-font-size-theme-h1:34px; --enfold-font-size-theme-h2:28px; --enfold-font-size-theme-h3:20px; --enfold-font-size-theme-h4:18px; --enfold-font-size-theme-h5:16px; --enfold-font-size-theme-h6:14px; --enfold-font-size-content-font:18px }July 9, 2024 at 6:06 am #1461650In reply to: Slider at Header truncates text on a cell phone.
Hi,
Thank you for the info.
We edited the contact page and set the Styling > Font Sizes > Caption Title Font Size to 18px for mobile devices. The default custom size is 60px. You can also adjust the size for desktop and tablet in portrait/landscape modes. The font size should respond automatically if the Font Size default is set to the initial option, but since it’s set to a custom size (60px), you have to manually define the font size for all screen sizes. Please check the screenshot in the private field.
Best regards,
IsmaelJuly 8, 2024 at 7:20 pm #1461628In reply to: Slider at Header truncates text on a cell phone.
HI.
Adjusting the font size affects the Desktop/Laptop adversely as well as the Cell mode.
This reply does not address why updates to the theme disrupted cell phone layouts.
Q: how do we retain our Desktop/Laptop layouts while regaining an elegant look for the cell mode in responsive Design?
Example pages:
https://www.stonecrafters.rocks/
https://www.stonecrafters.rocks/services/
https://www.stonecrafters.rocks/contact/
NOTE: we have not altered out layout since the initial rebuild of the site using Enfold theme. This site used to look perfect in responsive design.
Please advise. Note: I shared login credentials and you have permission to enter the site.
July 7, 2024 at 4:41 pm #1461556In reply to: Custom Fonts
Hey Mike,
I decided to use a different font family (Open Sans) for mobile and tablet and added this code:
@media only screen and (max-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) { h1, h2, h3, h4, h5, h6 { font-family: 'Open-Sans', sans-serif; font-style: italic; } }Funnily enough, the Calibri is now displayed as the headline on the iPhone. And I can’t find the reference to the code why the browser finally understands that it should use “Calibri”.
So why it works now, I have no idea, but it works ;)Unfortunately, Calibri or Open Sans are not displayed on the tablet in Safari. I don’t understand this again…
And I also adjusted the .av-special-heading using CSS:
#top .av-special-heading .av-subheading.av-subheading_above { font-size: 32px !important; font-family: 'calibri' !important; color: #ff0044 !important; }Unfortunately the special heading font is not displayed on mobile in Safari… sorry i opened such a bottomless pit …
I hope your team finds a solution to help me out :’)
July 7, 2024 at 2:03 pm #1461537In reply to: Socket menue on left side
Hi,
Your screenshot looks like the socket is full width, but your site is smaller, so I recommend making the area full width and making the font smaller so there is enough room..responsive #socket > .container { max-width: 100%; font-size: 18px; } #socket .copyright { float: right; padding-left: 20px; line-height: 24px; }and then move the “title” on the right side over some in the css for it, currently you have:
#footer-title { font-size: 38px; font-family: zen-kaku-gothic-new; color: #000; font-weight: bold; float: right; top: -38px; position: relative; left: -15%; }change to:
#footer-title { font-size: 38px; font-family: zen-kaku-gothic-new; color: #000; font-weight: bold; float: right; top: -38px; position: relative; left: -5%; }Best regards,
MikeJuly 6, 2024 at 10:27 pm #1461505In reply to: Non-uniform layout for multiple paragraphs in tables
Hey reqonsult,
Thank you for the link to your site, this is because the first paragraph is in the “td” and the others are in a “p” which has more specialty.
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#top .all_colors td p { font-size: 13px; font-weight: 400; }After applying the css, please clear your browser cache and check.
Best regards,
Mike -
This reply was modified 1 year, 6 months ago by
-
AuthorSearch Results
-
Search Results
-
Hi, the homepage of my website (in private content) when displaying on mobiles, the text of the fullwidth slider is overlapping the image in a big fontsize, and it is not readable….how to solve it?
Thanks in advance!Is it possible to reduce the font size on mobile devices only? We are satisfied with the font size in desktop devices, but some text is partially cut off in the mobile view. Thank you.
