-
AuthorSearch Results
-
April 7, 2024 at 11:25 am #1439381
In reply to: Layoutprobleme bei mobiler Ansicht der Seite
This reply has been marked as private.April 6, 2024 at 3:57 pm #1439323In reply to: Change color in table cell
Hey cuccarini,
Thank you for the link to your site and your screenshot, you are using the pricing table on your site, try using the tabular data instead.
I created a test page with the tabular data and I made the table background color transparent so the color section Background Gradient would show instead of filling the empty cells with a red background color. This is how I filled the table:

I then added the custom class club-table

Then I used this css:.main_color table.club-table { border-collapse: separate; border-spacing: 10px; background: transparent; font-size: 18px; font-weight: bold; color: #fff; } .main_color table.club-table td, .main_color table.club-table th { border: 2px solid #fff; padding: 5px; background: transparent; font-size: 18px; font-weight: bold; color: #fff; height: 120px; vertical-align: middle; text-align: center; } .main_color table.club-table tr { border: 2px solid #fff; background: transparent; } tr:first-child th, tr:first-child td, tr th:first-child, tr td:first-child { border: 2px solid #fff; } table.club-table > tbody > tr:nth-child(2) > td:nth-child(1), table.club-table > tbody > tr:nth-child(3) > td:nth-child(1) { background-color: #1e90ff; } table.club-table > tbody > tr:nth-child(3) > td:nth-child(2) { background-color: #808080; } table.club-table > tbody > tr:nth-child(2) > td:nth-child(3) { background-color: #808080; } table.club-table > tbody > tr:nth-child(3) > td:nth-child(3) { background-color: #ee711f; } table.club-table > tbody > tr:nth-child(3) > td:nth-child(5) { background-color: #29a715; }This is the result:

Please give this a try.Best regards,
MikeApril 5, 2024 at 11:39 pm #1439304In reply to: Change Doughnut Chart
Hey marco593,
Thank you for your patience, the following javascript will add the chart title to the center of the Doughnut Chart,

If you are not using a child theme you could use the WP Code plugin then add a new snippet, in the top right corner use the PHP snippet as the code type:

then add this code and save.function doughnut_chart_with_title_in_center() { ?> <script> document.addEventListener('DOMContentLoaded', function() { function waitForChartJs() { if (typeof Chart === 'undefined') { setTimeout(waitForChartJs, 50); } else { registerCenterTitlePlugin(); } } function registerCenterTitlePlugin() { Chart.register({ id: 'centerTitle', beforeInit: function(chart) { // Dynamically hide the title and legend const options = chart.options; if (options.plugins) { if (!options.plugins.title) { options.plugins.title = {}; } options.plugins.title.display = false; // Hide title if (!options.plugins.legend) { options.plugins.legend = {}; } options.plugins.legend.display = false; // Hide legend } }, afterDraw: function(chart) { if (chart.config.type === 'doughnut') { const ctx = chart.ctx; const width = chart.width; const height = chart.height; const fontSize = (height / 114).toFixed(2); ctx.font = fontSize + "em sans-serif"; ctx.textBaseline = "middle"; ctx.textAlign = "center"; // Use existing title if set, otherwise use a default text const text = chart.options.plugins.title.text || 'Your Title Here'; const textX = width / 2; const textY = height / 2; ctx.fillText(text, textX, textY); } } }); } waitForChartJs(); }); </script> <?php } add_action( 'wp_footer', 'doughnut_chart_with_title_in_center', 99 );Best regards,
MikeApril 5, 2024 at 7:19 am #1439249In reply to: portfolio category page style changed
Hi,
Add this css code to adjust the layout of the tag pages:
#top.tag .no_margin.av_one_third { float: none; margin-right: 2%; width: 31%; margin-bottom: 2%; } #top.tag .grid-sort-container { display: flex; flex-wrap: wrap; flex-direction: row; } #top.tag .grid-entry-title.entry-title { font-size: 1.2em; padding: 10px 13px; }Then add this code in the functions.php file to adjust the image thumbnail:
add_filter("avf_post_slider_args", function($atts, $context) { if( $context == "tag" ) { $atts['type'] = 'grid'; $atts['preview_mode'] = 'custom'; $atts['image_size'] = 'full'; } return $atts; }, 10, 2);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,
IsmaelApril 4, 2024 at 4:58 pm #1439222In reply to: Theme options fonts/colours
Hi Rikard,
What exactly should I see in the privat part? I only see the pictures I made myself.I will mention just one issue below
To locate the content of the screenshots see 1 in private.
When I see this page incognito, I see that some elements are not correct. When I look in the editor, it looks correct.2: this is H3 in a smaller size font then in the settings and also it is shown fat instead of normal (on the incognito site)
3: the words in the red circle should also be H3, but is shown small and also in another color (on the incognito site)Hopefully it’s clear like this.
Thanks!
April 3, 2024 at 9:33 am #1439060Topic: Theme options fonts/colours
in forum EnfoldAnouk
ParticipantHi,
The settings in the theme options for H3 are:
colour: white
font family: caveat
size: 35On a mobile it shows the right version, but on my pc it shows a different colour and a different font. It’s the same for H4.
The element which I use is the ‘header special’. But even if I use a simple textfield, I have the same issue.
Can you please help me to solve this problem?
Thanks in advance. Best wishes, Anouk
April 3, 2024 at 6:53 am #1439055In reply to: Center navigation arrows in horizontal gallery
Hey Christy,
Thank you for the inquiry.
You can add this css code to adjust the position of the arrow inside the box:
#top #wrap_all .avia-slideshow-button, #top .avia-button, .html_elegant-blog .more-link, .avia-slideshow-arrows a:before { border-radius: 5px; padding-left: 25px; padding-right: 25px; padding-top: 0; padding-bottom: 15px; font-size: 15px; font-weight: 700; text-transform: uppercase; }Best regards,
IsmaelApril 3, 2024 at 6:42 am #1439052In reply to: Responsive
Hi,
Thank you for the update.
Have you tried adjusting the value of the padding and font size properties to make the pills smaller?
@media only screen and (max-width: 479px) { /* Add your Mobile Styles here */ #top .av-pill-tabs .av-section-tab-title { margin-right: 10px; padding: 0 !important; } .av-pill-tabs .av-inner-tab-title { color: #FFFFFF; font-size: 0.7em; margin-bottom: 0px !important; line-height: .5em; padding: 4px !important; } }Best regards,
IsmaelApril 2, 2024 at 12:48 pm #1438986In reply to: only on this page
Hi,
To change the color of the widget title for both pages try this css:#top #wrap_all .all_colors .widgettitle, #top #custom_html-2 > h3.widgettitle { color: #000000; text-transform: none; font-size: 23px; font-weight: 200; }to show the footer on tablet you need to change the css to show for tablet, we will say it is 768px, so use this:
@media only screen and (min-width: 768px) { #top:not(.page-id-3288,.page-id-3593) #footer { display: none; } } @media only screen and (max-width: 767px) { #top #footer { display: none; } }some tablets are different sizes like 1024px & 1366px, but 768px should cover all of them.
Best regards,
MikeApril 2, 2024 at 9:36 am #1438968In reply to: portfolio category page style changed
Hi Ismael
Thanks for your support.#top.tax-portfolio_entries .no_margin.av_one_third { float: none; margin-right: 2%; width: 31%; margin-bottom: 2%; } #top.tax-portfolio_entries .grid-sort-container { display: flex; flex-wrap: wrap; flex-direction: row; } #top .grid-entry-title.entry-title { font-size: 1.2em; padding: 10px 13px; }i want make my tag page same style as categories page.
i make some change of up code, but failed. could you help.Thanks
Wang
April 2, 2024 at 8:48 am #1438964In reply to: Responsive
Hi Ismael,
I have tried adding the code and it seems to work fine on devices such as XR up to tablet dimensions. However, not all mobiles shows the tabs in one line. For your further assistance, please. Sharing with you the code for the pill-shaped tabs I included in the Quick CSS.
/* Tabs Pill Shape*/
.av-pill-tabs .av-tab-section-tab-title-container a {
background: #0B897A;
border-radius: 5px;
padding: 0!important;
margin-top: -10px;
overflow: hidden;
}.av-pill-tabs .av-outer-tab-title {
padding: 0px!important;
margin: 0 !important;
}/* Tab arrow */
.av-pill-tabs .av-tab-arrow-container {
top: 5px;
}
#top .av-pill-tabs .av-tab-arrow-container span {
background: #ffffff;
}/* Add your Mobile Styles here */
#top .av-pill-tabs .av-section-tab-title {
margin-right: 8px;
padding: 0 !important;
}.av-pill-tabs .av-inner-tab-title {
color: #FFFFFF;
font-size: 0.9em;
margin-bottom: 0px !important;
line-height: .5em;
padding: 8px !important;
}
}-
This reply was modified 1 year, 10 months ago by
Renard. Reason: Edited css code
April 2, 2024 at 7:56 am #1438956In reply to: Cookie Message
Hi,
Thank you for the inquiry.
– I would like to have a space between the buttons and the message bar.
– Also, a slight shadow above the entire cookie-bar would be nice
– and a slightly larger font only in the mobile versionYou can add this css code to adjust the style of the consent box based on your description above.
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ .responsive #top .avia_cookie_text { margin-bottom: 10px; } .responsive #top .avia-cookie-consent p { font-size: 14px; line-height: 1.2em; } .avia-cookie-consent a.avia_cookie_infolink, .avia-cookie-consent p, .avia-cookie-consent .avia-cookie-consent-button { display: inline-block; vertical-align: middle; font-size: 13px; letter-spacing: 0.05em; } .avia-cookie-consent { box-shadow: 0px -4px 6px rgba(0, 0, 0, 0.1) } }Best regards,
IsmaelApril 2, 2024 at 3:28 am #1438946In reply to: Responsive
This reply has been marked as private.April 1, 2024 at 11:54 pm #1438934In reply to: Button position on sliders
Hi,
When I check your page on desktop the css I posted above is not applied, and this is what makes the button larger and center, so I don’t know if you have an error in your css, or if you didn’t add it because you didn’t understand, but this is the desktop part of the css that you should ensure to use:@media only screen and (min-width: 768px) { #top .caption_bottom .slideshow_caption .slideshow_inner_caption { position: relative; text-align: center; } #top .slideshow_inner_caption .avia-slideshow-button.avia-button { width: 300px; height: 100px; font-size: 24px; } .html_header_transparency #top #main .caption_bottom .slideshow_caption { padding-top: 0; } }this is the result:

I now assume that you now wanted the button to move up a little, so you would then add this css:@media only screen and (min-width: 768px) { .slideshow_inner_caption { top: -100px; } }for this result:

feel free to adjust to suit.Best regards,
MikeApril 1, 2024 at 3:22 am #1438867In reply to: portfolio category page style changed
Hey Yaphoon,
Thank you for the inquiry.
On the category page, items are displayed using the Portfolio Grid element, while the Masonry element is used on the Product page, which is they don’t look the same. If you want to adjust the style of the Portfolio Grid to make it look more like the Masonry element, try adding this css code:
#top.tax-portfolio_entries .no_margin.av_one_third { float: none; margin-right: 2%; width: 31%; margin-bottom: 2%; } #top.tax-portfolio_entries .grid-sort-container { display: flex; flex-wrap: wrap; flex-direction: row; } #top .grid-entry-title.entry-title { font-size: 1.2em; padding: 10px 13px; }Best regards,
IsmaelApril 1, 2024 at 12:31 am #1438862In reply to: Add a header widget area
Hi,
Your header is transparent the gray that you see is from the top color section on the page:

when the header is scrolled the #897270 color is from your Logo Area Color:

if you don’t want a transparent header change the setting on the page in the backend in the admin sidebar:

As for the header widget, I disabled the above css and added this:@media only screen and (min-width: 990px) and (max-width: 1670px) { #header_main .inner-container .widget .textwidget { margin-left: -196%; } } @media only screen and (min-width: 990px) and (max-width: 1440px) { #header_main .inner-container .widget .textwidget p span { font-size: 14px !important; } } @media only screen and (min-width: 1441px) and (max-width: 1670px) { #header_main .inner-container .widget .textwidget p span { font-size: 18px !important; } } #header_main .inner-container { display: flex; flex-wrap: wrap; justify-content: center; align-content: center; } #header_main .inner-container .widget { padding: 0; } #header_main .inner-container .widget .textwidget { align-content: center; height: 100%; }please clear your browser cache and check.
Best regards,
MikeMarch 31, 2024 at 10:34 pm #1438859In reply to: Button position on sliders
Hi,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:@media only screen and (min-width: 768px) { #top .caption_bottom .slideshow_caption .slideshow_inner_caption { position: relative; text-align: center; } #top .slideshow_inner_caption .avia-slideshow-button.avia-button { width: 300px; height: 100px; font-size: 24px; } .html_header_transparency #top #main .caption_bottom .slideshow_caption { padding-top: 0; } } @media only screen and (max-width: 767px) { #top .caption_bottom .slideshow_caption .slideshow_inner_caption { position: relative; text-align: center; } #top .slideshow_inner_caption .avia-slideshow-button.avia-button { padding: 10px 6px; font-size: 10px; } }After applying the css, please clear your browser cache and check.
Best regards,
MikeMarch 31, 2024 at 9:34 pm #1438853In reply to: Change words color when hover
Hi,
Then remove the other css and use this instead:.single-portfolio #av-masonry-1 h3.av-masonry-entry-title { font-family: verdana; font-size: 16px; font-weight: 400; }After applying the css, please clear your browser cache and check.
Best regards,
MikeMarch 30, 2024 at 6:30 pm #1438770In reply to: Change words color when hover
Hey Yaphoon,
For your first two questions, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:.main_color a.more-link:hover { color: #470024; } .main_color .sidebar a:hover { color: #e94a3f; }For your last question, try this css:
.single-portfolio h3.av-special-heading-tag { font-family: verdana; font-size: 16px; font-weight: 400; }After applying the css, please clear your browser cache and check.
Best regards,
MikeMarch 30, 2024 at 5:47 pm #1438765In reply to: How to make packages, features and pricing table?
Hey ipressen,
Thank you for your patience, to create a pricing table like this:

add these icon shortcodes into the table:[av_font_icon icon='ue812' font='entypo-fontello' size='40px' position='center' color='green'][/av_font_icon] [av_font_icon icon='ue819' font='entypo-fontello' size='40px' position='center' color='red'][/av_font_icon]the top one is a checkmark, and the other is a minus.
This is how the backend looks:

I recommend showing the empty cells, otherwise the rows will move out of place:

Then this is the css I used in the Quick CSS to make the text black and make all of the cells the same height so they would line up and to “hide” the empty cells:.pricing-table > li { font-size: 20px; line-height: 48px; } .main_color .pricing-table > li:not(.avia-heading-row,.avia-pricing-row) { color: #000; } .pricing-table-wrap:nth-child(1) .pricing-table li.avia-heading-row { opacity: 0; } .pricing-table-wrap:nth-child(1) .pricing-table li.avia-pricing-row { opacity: 0; }Best regards,
MikeMarch 28, 2024 at 9:01 am #1438526In reply to: Header and slider not responsive
Hi,
1.) We recommend increasing the font size slightly from the default of 14px. Perhaps 16px or 18px would be ideal, but the choice depends on your preference.
2.) Would you mind providing a screenshot? You can use platforms like Savvyify, Imgur or Dropbox.
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,
IsmaelMarch 28, 2024 at 8:11 am #1438523In reply to: Responsive
Hey Renard,
Thank you for the inquiry.
You can add this css code to adjust the size of the tabs and make sure they align properly on smaller screens:
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ #top .av-pill-tabs .av-section-tab-title { margin-right: 10px; padding: 0 !important; } .av-pill-tabs .av-inner-tab-title { color: #FFFFFF; font-size: 0.9em; margin-bottom: 0px !important; line-height: .5em; padding: 8px !important; } }Best regards,
IsmaelMarch 28, 2024 at 7:44 am #1438516In reply to: Full Width Easy Slider Link Button
Hey woogie07,
Thank you for the inquiry.
You can add this css code to adjust the style of the slider button:
#top .avia-slideshow-button { border-radius: 3px; text-transform: uppercase; padding: 15px 16px; display: inline-block; margin-top: 20px; text-decoration: none; font-weight: bold; font-size: 30px; }Best regards,
IsmaelMarch 27, 2024 at 6:38 pm #1438473In reply to: Header and slider not responsive
Hi, Ismaël
We’re almost done… Two last questions:
– what would be the right font size for a correct vertical display of the title and the legend in the slider?
– on the vertical display on mobiles, the toggle menu hides part of the header. Could you tell me how I could reposition it a bit further to the right side of the mobile screen? If there is no specific setting in the theme for that, could you send me the appropriate code?
Thanks, looking forward to reading youMarch 27, 2024 at 11:27 am #1438430In reply to: Header and slider not responsive
Hi,
The Styling > Font Sizes settings can be found in each slider item of the Full Width Slider element. Please let us know if you need further assistance.
Best regards,
IsmaelMarch 27, 2024 at 11:15 am #1438426In reply to: Header and slider not responsive
Thanks for your answer, Ismaël.
In Styling – General, I cannot find the Font Sizes toggle you are mentionning, only Fonts and Typography but there’s no way I can change the size there. Is there another way, some coding maybe? Could you send me the appropriate code for the title and the small code just below? What should be the appropriate size for these 2 items?
Thanks for your helpMarch 27, 2024 at 7:45 am #1438407In reply to: Header and slider not responsive
Hi,
Thank you for the update.
The images are resizing correctly when we checked the site on smaller screens, but the size of the captions is a little too large for the slider. You can adjust the Caption Title Font Size and Caption Content Font Size for different screen sizes in the Styling > Font Sizes toggle.
Best regards,
IsmaelMarch 27, 2024 at 2:19 am #1438391Topic: Centering Footer Images In Responsive Mode
in forum Enfoldblaisen
ParticipantI have spent much too much time, and tried just about everything today to try and get two images in my footer to center in responsive portrait mode. The footer is set up with 5 columns – which look great on a desktop: https://ibb.co/tsntFz8
But when the page is in portrait mode, the images in the first and last column will not center: https://ibb.co/0qwmMmp
I tried every trick I could think of and a few mentioned on these boards, but nothing is working. Please help!
Here is ALL the CSS code being used in the footer:
/*—————————————-
// FOOTER
//————————————–*/#top #footer .av_one_fifth {
width: 16.5%;
margin-left: 2%;
}#top #footer > .container > .av_one_fifth:first-child {
margin-right: 3%;
width: 20%;
}
#top #footer > .container > .av_one_fifth:last-child {
width: 12%;
margin-left: 1%;
}@media only screen and (max-width: 767px) {
#top #footer .av_one_fifth {
width: 90%;
}
#top #footer > .container > .av_one_fifth:first-child {
width: 90%;
padding-top: 10px;
}
#top #footer > .container > .av_one_fifth:last-child {
width: 60%;
}
#footer .widget {
margin: 10px 0 0 0!important;
text-align: center;
font-size: 1.1em!important;
line-height: 1.5em!important;
}
#footer .textwidget p {
text-align: center;
}
#footer h3.widgettitle {
text-align: center!important;
}
#footer .widget img {
display: table;
margin: 0 auto;
}
}You’ll see that I have #footer .widget {margin: 10px 0 0 0!important;} to close up the spacing between containers. Removing it didn’t help with the final class #footer .widget img {display: table; margin: 0 auto;}.
March 26, 2024 at 3:33 pm #1438354Topic: Display Page only on mobile
in forum Enfoldgreg47
ParticipantHello,
I try to display a specific page only on mobile and diplay a message : “thank you to connect you on mobile to display this page”I past this code in my page, it’s hidden if i’m on desktop for example, but my message does not appears.
Do you know why ?
<!DOCTYPE html> <html lang="fr"> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Vérification d'accès via mobile</title> <style> #message { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; font-size: 24px; z-index: 99999; /* Met le message au premier plan */ } </style> <script> window.onload = function() { // Vérifie si l'utilisateur accède à la page depuis un téléphone mobile var isMobile = /iPhone|iPad|iPod|Android/i.test(navigator.userAgent); if (!isMobile) { // Affiche le message si l'utilisateur n'accède pas depuis un téléphone mobile document.getElementById("message").innerHTML = "Ce site est adapté pour les téléphones mobiles, merci d'y accéder via votre smartphone."; document.getElementById("message").style.display = "block"; // Affiche le message si nécessaire } else { // Affiche le contenu de la page s'il est consulté depuis un téléphone mobile document.body.style.display = "block"; } }; </script> <body style="display: none;"> <div id="message"></div> </body> </html>Thank you for your help
-
This topic was modified 1 year, 11 months ago by
greg47.
March 26, 2024 at 9:45 am #1438332In reply to: Struggling to add custom css (it doesn’t work!)
An example…
I have the below code which is working.
.hero-text {
text-align: center;
text-shadow: 2.5px 2.5px 0px #000000;
}(THIS WORKS)
However I have a subheading within the “hero-text” so I just want to adjust the H1 child.
.hero-text .h1 {
font-size: 3em !important;
font-weight: 1000 !important;
}(THIS DOES NOT WORK)
Why does the second not work and how do I resolve this? Other than creating two text blocks. I’m trying to work out where I am going wrong with my logic so I can fix for myself in future :)
-
This reply was modified 1 year, 10 months ago by
-
AuthorSearch Results
-
Search Results
-
Topic: Theme options fonts/colours
Topic: Display Page only on mobile
Hello,
I try to display a specific page only on mobile and diplay a message : “thank you to connect you on mobile to display this page”I past this code in my page, it’s hidden if i’m on desktop for example, but my message does not appears.
Do you know why ?
<!DOCTYPE html> <html lang="fr"> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Vérification d'accès via mobile</title> <style> #message { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; font-size: 24px; z-index: 99999; /* Met le message au premier plan */ } </style> <script> window.onload = function() { // Vérifie si l'utilisateur accède à la page depuis un téléphone mobile var isMobile = /iPhone|iPad|iPod|Android/i.test(navigator.userAgent); if (!isMobile) { // Affiche le message si l'utilisateur n'accède pas depuis un téléphone mobile document.getElementById("message").innerHTML = "Ce site est adapté pour les téléphones mobiles, merci d'y accéder via votre smartphone."; document.getElementById("message").style.display = "block"; // Affiche le message si nécessaire } else { // Affiche le contenu de la page s'il est consulté depuis un téléphone mobile document.body.style.display = "block"; } }; </script> <body style="display: none;"> <div id="message"></div> </body> </html>Thank you for your help

