-
AuthorSearch Results
-
June 3, 2025 at 12:49 pm #1485020
In reply to: Posts appear in justified text on mobile devices
Hi,
Thanks for that. Please try the following in Quick CSS under Enfold->General Styling:
@media only screen and (max-width: 767px) { #top .fullsize .template-blog .post .entry-content-wrapper { text-align: left; } }
Best regards,
RikardJune 3, 2025 at 11:35 am #1485017Topic: shortcodes not rendered on frontpage
in forum Enfoldslikslok
ParticipantHi,
while trying different methods to implement shortcodes (as text, html block-type shortcode and content-elment “code”, in the main site , the footer or the widget) the shortcode is not rendererd and always occurs literally as shortcode.
So, for e.g. [pagelist] doesn’t show a list of all pager but “[pagelist]”.
Due to every shortcode I tried.
I found in an very old topic from 2013 that there was a problem in the functions.php, but this seems not to be the case here.
How to troubleshoot this problem?
A link of example in the private area.
June 3, 2025 at 11:25 am #1485016In reply to: Big issue with latest version
Good morning, the page https://easyzanzibar.com/dove-alloggiare-a-zanzibar/ loads a large image even when opened on mobile. In your test, you show me that it should use a 218 Kb image in the desktop slide, while my optimized image is 141 kb. If it then always uses the large image on mobile, what kind of optimization is that?
The technical programmers who are trying to solve the problem of a very slow site and CPU that exceeds the limit have sent me reports stating: ‘Enfold is a heavy and outdated theme for a site like yours.’
If this is the case, I have to eliminate Enfold from all four of my websites and completely redo them.
Does it turn out that Enfold creates problems with slow loading and high CPU demand for sites like ours?
AI answers:
Regarding your question about Enfold:
Yes, it is a known issue that the Enfold theme can sometimes cause slow loading times and high CPU usage for some websites. This can be due to several factors:
Theme Features: Enfold is a feature-rich theme, and while this offers a lot of flexibility, it can also lead to more code and assets that need to be loaded, potentially slowing down the site. Some of these features, if not used, can still contribute to the load.
Image Handling: As you’ve noticed, how the theme handles images across different devices can impact performance. If the theme isn’t correctly serving optimized images for mobile, it can significantly slow down loading times on those devices.I would like to understand from you if there is anything that can be done to avoid redoing everything
June 3, 2025 at 9:55 am #1485012In reply to: different strong styles
If you use more specific selectors, you can style “strong” differently.
if you want it only on some words in a textblock you had to use the way above from Rikard.
for example if you like to have a different color for them only on one page – use the page ID :#top.page-id-12345 strong { color: black; }
sometimes it might be necessary to have an !important on the value. (black !important;)
PS: if you are editing text-blocks the editor could do that for you
this will create an inline-style:
<span style="color: #ff0000;"><strong>Important</strong></span>
June 3, 2025 at 7:52 am #1485004In reply to: Burger/Mobile menu in Widget or Footer
see here on very small screens: https://webers-web.info/datenschutz/
that sidebar menu on the left goes to a hamburger on top right on small screen width.you see on the link above (https://jonsuh.com/hamburgers/) – and (on enfold main burger DOM ) what are the class names – i used them too – because then a predefined look is allready present.:
and the script to manage the burger is allready loaded(page-id-3 – is my privacy page)
add_action('ava_after_main_menu', function() { if ( is_page(3)){ echo '<nav class="datenschutz-menu" role="navigation">'; echo '<div class="container av-menu-mobile-active">'; echo '<a href="#" class="mobile_menu_toggle no-scroll" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello"><span class="av-current-placeholder">Datenschutz</span>'; echo '<span class="subnav-hamburger subnav-hamburger--spin-r"><span class="subnav-hamburger-box"><span class="subnav-hamburger-inner"></span></span></span>'; echo '</a>'; echo do_shortcode('[menu name="datenschutz"]'); echo '</div>'; echo '</nav>'; } });
on that line:
echo do_shortcode('[menu name="datenschutz"]');
you see the usage of that menu shortcodenow i got that extra subnav-hamburger (this name is set by me – it only reminds me that this is subnavigation on privacy page )
now i have to have the same behaviour on that second burger menu:function subnav_hamburger_first(){ if(is_page(array( 3))){ ?> <script> (function($){ var $subham = $(".mobile_menu_toggle"); $subham.on("click", function(a) { $subham.find(".subnav-hamburger").toggleClass("is-active"); $subham.next(".menu-datenschutz-container").find('#menu-datenschutz').toggleClass("av-open-submenu"); }); $('#menu-datenschutz li').on("click", function(b) { $(this).addClass('selected').siblings().removeClass('selected'); $(this).parents('#menu-datenschutz').toggleClass('av-open-submenu'); $(this).parents('.av-menu-mobile-active').find('.subnav-hamburger').toggleClass('is-active'); }); })(jQuery); </script> <?php }} add_action('wp_footer', 'subnav_hamburger_first');
This is not a trivial request, which is why there are several paid plugins available. To grasp the complexity of a multilevel burger menu, take a look at the avia-snippet-hamburger-menu.js code.
June 3, 2025 at 7:36 am #1485002In reply to: Masonry Grid pulling all categories to filter
Hi,
The other sorting items are displayed because some portfolio items belong to multiple categories. For example, the item Harrisonburg Innovation Hub is assigned to “Commercial and Retail”, which is a selected category, but it also belongs to three additional categories, Anthony Barone’s Projects, Ben Reid’s Projects, and Kevin Gabel’s Projects.
Please note that all categories associated with the items will display as sorting options. The “Which Entries Should Be Used” option only controls which items are shown in the masonry element, but it does not control or limit the sorting/filter categories.
If you need to hide the other categories and only display the selected ones, try adding this css code:
#top .av-sort-by-term a, #top .av-sort-by-term .text-sep { display: none; } #top .av-sort-by-term .commercial-retail_sort_button, #top .av-sort-by-term .education_sort_button, #top .av-sort-by-term .healthcare_sort_button, #top .av-sort-by-term .industrial_sort_button, #top .av-sort-by-term .municipal-civic_sort_button, #top .av-sort-by-term .religious_sort_button { display: inline-block; }
Best regards,
IsmaelJune 3, 2025 at 6:03 am #1484995In reply to: Color section – rounded corners
Hey Alan,
Thank you for the inquiry.
There is no option for this in the Color section by default, but you can add a custom class name (e.g., av-section-border-radius) to the element under Advanced > Developer Settings > Custom CSS Class field, then add the following css to apply the border radius.
#top #wrap_all .av-section-border-radius { border-bottom-right-radius: 100px; border-bottom-left-radius: 100px; }
Another option is the Layout > SVG Divider settings.
Best regards,
IsmaelJune 2, 2025 at 1:04 pm #1484978Topic: Enfold theme issue
in forum Enfoldupdcreative
ParticipantHi,
We are trying to load a backup version of one of our sites into a dev environment. When we loaded it, we received the same error as this thread discusses: https://kriesi.at/support/topic/magister10/
To try and fix it, we updated Enfold via FTP, but there are still some issues. I’ve added the dev URL in the private section along with FTP login details.
Any help would be great.
Thanks
June 2, 2025 at 12:35 pm #1484974In reply to: mobile shrinking header
i did it this way with the edited child-theme files
(just erased the && ! isMobile ):function wp_change_sticky_header_script() { wp_deregister_script( 'avia-sticky-header' ); $vn = avia_get_theme_version(); $options = avia_get_option(); $child_theme_url = get_stylesheet_directory_uri(); $min_js = avia_minify_extension( 'js' ); // $min_css = avia_minify_extension( 'css' ); for that js - file not needed to mention here $condition = ( isset( $options['header_position'] ) && $options['header_position'] == 'header_top' ); $condition2 = ( isset( $options['header_sticky'] ) && $options['header_sticky'] == 'header_sticky' ) && $condition; avia_enqueue_script_conditionally( $condition2 , 'avia-sticky-header-child', "{$child_theme_url}/js/avia-snippet-sticky-header{$min_js}.js", array('avia-default'), $vn, true); } add_action( 'wp_enqueue_scripts', 'wp_change_sticky_header_script', 100 );
but allways to do this on all pages where i like to have a shrinking header on mobile devices too – and to generate allways the minified file from the actual avia-snippet-sticky-header.js file – is a lot of work.
A filter set by you would be a great time saver here
using something like this :
add_filter('avf_shrinking_header_on_mobile', '__return_true');
😉 I am of course aware that a filter has no place in a script file. But maybe there is a trick that could regulate it differently.June 2, 2025 at 8:24 am #1484966In reply to: Logo overlay top bar menu
Hi,
You have to remove the width property from this css code to keep the logo from being distorted:
.logo, .logo a { overflow: visible; height: 100px; background-color: #075195; border-bottom-right-radius: .3125rem; border-bottom-left-radius: .3125rem; width: 12.5rem; }
And to replace the dashes with bullets, add this css code:
.html_av-overlay-side-classic #top .av-burger-overlay li li .avia-bullet { height: 3px; opacity: 1; border: none!important; width: 3px; border-radius: 100%; }
Best regards,
IsmaelJune 2, 2025 at 5:41 am #1484957In reply to: Advanced Post Types Order conflict?
Hi,
If you’re using the Posts Slider element or the Blog Posts element in Grid Layout, you can use the avia_post_grid_query filter to modify the query or adjust the item sorting.
Example:
— https://kriesi.at/support/topic/remove-current-portfolio-post-from-related-portfolio-grid/#post-836906
— https://kriesi.at/support/topic/sort-blog-posts-element-ascending/#post-1001791
— https://kriesi.at/support/topic/add-a-order-by-attribute-on-portfolio-grid/#post-1015617
— https://kriesi.at/support/topic/add-event-date-to-portfolio/#post-1479828Best regards,
IsmaelJune 2, 2025 at 5:20 am #1484955Topic: Logo overlay top bar menu
in forum Enfoldminhndq
Participant👉 I would like to adjust the position of the logo as in website’s logo below
https://globalhealth.duke.edu/👉 Replace the “-” in the mobile submenu with a “.”
June 2, 2025 at 12:53 am #1484949In reply to: Background image issues.
Hey Mike,
We have some good progress. I changed the text padding-left from pixel to percentage. Now no matter how I change the shape of the page the text keeps the creative indentation I want. Thank you for showing me that. I also added some line breaks to the end of my text to allow the background image more room to show.
Still struggling with the background image. Your test page looked like this..
/Users/j-birdteching/Desktop/Contact-test-desktop.jpgThis is what I am hoping to achieve.
/Users/j-birdteching/Desktop/Jkos-contact.jpg
I know some people like a more vertical window and some like a more horizontal window so, fit, distort, stretch, fill, whatever you call it, I would like to always see the entire background image. The image is abstract enough to be able to handle considerable distortion.
/Users/j-birdteching/Desktop/contact-vert.jpg/Users/j-birdteching/Desktop/contact-horizontal.jpg
The next challenge is getting this page to look good on a phone. Is having a separate contact page just for phones something we should be considering?
Doing the left margin by percentage did work for the phone but, I think having 50-60% margin padding on a phone is unrealistic.
The font would have to be a micro font. lol
/Users/j-birdteching/Desktop/contact-phone-2.jpgThe test page you made looks like this on my phone. I could live without the text having the creative indentation and just being uniformly left, right or center justified but, the page didn’t scroll down to see the rest of the text.
/Users/j-birdteching/Desktop/test-contact-phone.jpgWe’ll see what the background image looks like on the phone after we make adjustments to the desktop.
Thank you,
JasonJune 1, 2025 at 7:33 pm #1484943In reply to: Timeline mobile
Hey rixi,
I notice that on mobile not all of the dates show, only every other one, so to correct try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor, 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:
and ensure that it is activated, then add the bellow code and save.function custom_timeline_script_for_mobile() { ?> <script> document.addEventListener('DOMContentLoaded', () => { // Check if there are any .av-milestone-even elements const milestones = document.querySelectorAll('.av-milestone-even'); if (milestones.length === 0) return; // Exit if no milestones found // Define the media query for screens smaller than 989px const mediaQuery = window.matchMedia('(max-width: 989px)'); // Function to reorder elements const reorderMilestones = () => { if (mediaQuery.matches) { milestones.forEach(milestone => { const date = milestone.querySelector('.av-milestone-date'); const icon = milestone.querySelector('.av-milestone-icon-wrap'); const content = milestone.querySelector('.av-milestone-content-wrap'); // Ensure all elements exist before reordering if (date && icon && content) { milestone.innerHTML = ''; milestone.appendChild(date); milestone.appendChild(icon); milestone.appendChild(content); } }); } }; reorderMilestones(); mediaQuery.addEventListener('change', reorderMilestones); }); </script> <?php } add_action( 'wp_footer', 'custom_timeline_script_for_mobile', 99 );
Then I notice that one of your content boxes has too much padding for the list:
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:@media only screen and (max-width: 989px) { .av-no-preview ul.avia-timeline-vertical .av-milestone-content li { padding: 0; } }
Changing the content padding and font size of the title and content may also help:@media only screen and (max-width: 989px) { .avia-timeline-boxshadow .av-milestone-contentbox { padding: 1em; } #top #wrap_all .all_colors h4.av-milestone-title { font-size: 20px; } .av-milestone-content p, .av-milestone-content li { font-size: 12px; line-height: 18px; } }
Best regards,
MikeJune 1, 2025 at 6:58 pm #1484940In reply to: Background image issues.
Hey jkos,
When you set the background image to Scale to fit it scales image, so the whole image is always visible, this includes the height. Which is why the image does not reach the sides.
At Stretch to fit it stretches the image width to cover the page, less the 50px padding that the page has by default.
The height of your column is not set so the content is determining the height, but you have little content so the whole background image is not shown. If you set the column height to 150% then it will show.
But I recommend trying the color section instead because the background image will then be full width. I created a test page linked below to demonstrate.
Since the color section wants to vertically center the content, I added this css to the bottom of the page so your content will be higher:.responsive #top #wrap_all .avia-section.av-minimum-height-99vw .container { display: flex; justify-content: center; margin-top: 15%; max-width: fit-content; }
The reason your text is off the screen for mobile is because your text has 800px padding, which is larger than a mobile screen:
to correct this you could change it to a percentage, or for this I created a css grid for two columns to achieve the layout without padding, and on mobile the grid is stacked. See the test page below.
For others, this is the HTML for the two columns:<div class="parent"> <div class="div1"> first column text </div> <div class="div2"> second column text </div> </div>
and this is the css:
@media screen and (max-width: 789px) { .parent{ grid-template-columns: 1fr; grid-template-rows: 1fr; } } @media screen and (min-width: 790px) { .parent { display: grid; grid-template-columns: repeat(2, 1fr); grid-template-rows: 1fr; grid-column-gap: 0px; grid-row-gap: 0px; } .div1 { grid-area: 1 / 1 / 2 / 2; } .div2 { grid-area: 1 / 2 / 2 / 3; } }
Best regards,
MikeMay 31, 2025 at 4:00 pm #1484899In reply to: Column Accordion/Slider-like ability?
Hey syberknight-tb,
Unfortunately, we don’t have an element that will achieve this for you in the theme, while there are many plugins that may work for you, when I check some of them they don’t quite match, but if you spend more time testing each one you may find one.
I was able to create something that may work for you using javascript and HTML in a shortcode, on mobile it shows 1 1/2 team member cards with prev & next arrows and loop when you click to the end:
on tablet it shows 2 1/2 cards:
and on desktop it shows 3 1/2 cards:
As is it holds 8 cards, you can add more or have less, you will need to edit the HTML to add your images and text, hopefully you will be able to do this:
Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor, 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:
and ensure that it is activated, then add the code below and save.function team_carousel_shortcode() { ob_start(); ?> <div class="carousel-container"> <button id="prevBtn">←</button> <div class="carousel"> <div class="carousel-track"> <!-- START: Team Members --> <div class="card"> <img src="/people-2-2-300x300.jpg" alt="Member 1"><p>Member 1<br>A short bio for the team member</p></div> <div class="card"> <img src="/people-2-2-300x300.jpg" alt="Member 2"><p>Member 2<br>A short bio for the team member</p></div> <div class="card"> <img src="/people-2-2-300x300.jpg" alt="Member 3"><p>Member 3<br>A short bio for the team member</p></div> <div class="card"> <img src="/people-2-2-300x300.jpg" alt="Member 4"><p>Member 4<br>A short bio for the team member</p></div> <div class="card"> <img src="/people-2-2-300x300.jpg" alt="Member 5"><p>Member 5<br>A short bio for the team member</p></div> <div class="card"> <img src="/people-2-2-300x300.jpg" alt="Member 6"><p>Member 6<br>A short bio for the team member</p></div> <div class="card"> <img src="/people-2-2-300x300.jpg" alt="Member 7"><p>Member 7<br>A short bio for the team member</p></div> <div class="card"> <img src="/people-2-2-300x300.jpg" alt="Member 8"><p>Member 8<br>A short bio for the team member</p></div> <!-- END: Team Members --> </div> </div> <button id="nextBtn">→</button> </div> <style> .carousel-container { position: relative; width: 80%; overflow: visible; margin: auto; } .carousel { overflow: hidden; width: 100%; } .carousel-track { display: flex; transition: transform 0.5s ease-in-out; } .card { box-sizing: border-box; padding: 10px; background: #e8e8e8; margin: 5px; border-radius: 8px; text-align: center; box-shadow: 0 4px 10px rgba(0,0,0,0.1); } @media only screen and (max-width: 767px) { .card { flex: 0 0 62%; } } @media only screen and (min-width: 768px) and (max-width: 1800px) { .card { flex: 0 0 38%; } } @media only screen and (min-width: 1801px) { .card { flex: 0 0 28%; } } .card p { color: #000; } .card img { width: 100%; height: auto; object-fit: cover; border-radius: 100%; } #nextBtn, #prevBtn { position: absolute; top: 50%; transform: translateY(-50%); color: #000; border: 2px solid #000; padding: 10px; cursor: pointer; z-index: 10; } #prevBtn { left: -50px; } #nextBtn { right: -50px; } </style> <script> document.addEventListener('DOMContentLoaded', function () { const track = document.querySelector('.carousel-track'); const cards = document.querySelectorAll('.card'); const prevBtn = document.getElementById('prevBtn'); const nextBtn = document.getElementById('nextBtn'); let currentIndex = 0; let cardWidth = cards[0].offsetWidth + 20; function updateCarousel() { const shift = currentIndex * cardWidth; track.style.transform =
translateX(-${shift}px)
; } function moveToNext() { currentIndex++; if (currentIndex >= cards.length) { currentIndex = 0; } updateCarousel(); } function moveToPrev() { currentIndex--; if (currentIndex < 0) { currentIndex = cards.length - 1; } updateCarousel(); } nextBtn.addEventListener('click', moveToNext); prevBtn.addEventListener('click', moveToPrev); window.addEventListener('resize', () => { cardWidth = cards[0].offsetWidth + 20; updateCarousel(); }); }); </script> <?php return do_shortcode(ob_get_clean()); } add_shortcode('team_carousel', 'team_carousel_shortcode');Then add this shortcode in a code block element on your page:
[team_carousel]
Feel free to adjust the colors in the css in the code.Best regards,
MikeMay 30, 2025 at 10:57 pm #1484892In reply to: Advanced Post Types Order conflict?
This reply has been marked as private.May 30, 2025 at 8:59 pm #1484885Topic: Background image issues.
in forum Enfoldjkos
ParticipantBear with me, I am new to using background images. Having several issues.
I am using a background image in the 1/1 element on my Contact page. The image matches the horizontal px of my site. I would love for the background image to go all the way to the edge of the page on theft and right – to stretch horizontally as needed to match page.
The left & right padding for desktop is set to 0px.
The background image is set: Stretch to fit.
When I expand my page to the right the background image does not ‘stretch’ to fit, it zooms in to fit. Resulting in the top and bottom of the image to be cut off. I would rather the image distort horizontally to fit.In addition, the text box on this page seems to be in a fixed position. I would love for it to stay proportional to the background image, if possible.
Lastly, this page on my phone is not even close. lol
Help, please! :)
May 30, 2025 at 8:57 pm #1484884In reply to: Uploaded childs theme – problemS
Hi,
Go to each setting then enable it and choose “select page” so none will be selected. See this post.Best regards,
MikeMay 30, 2025 at 4:38 pm #1484876Topic: please look at this:
in forum Pre Sale QuestionsVentsislav Krastev
GuestHi,
to my #post-1484859 , please look at this:
BR
VentyMay 30, 2025 at 10:16 am #1484858Hi,
Thanks for the update. I’ve imported the top level pages for you, please let us know if you should need anything else. Note that images are not included, but I’m guessing that you will replace them with your own anyway? If not, then you can download them from the demo pages by right clicking on the image and select to save them on your local machine.
Best regards,
RikardMay 30, 2025 at 7:21 am #1484853Hello Ismael
Thank you for the help. It is working but i wonder how i can also disable the top row of icons which seems to be duplicate of icons which are already there.
Its called:
Iconfont: Entypo Fontello Enfold (Default)
and contains like 12-15 iconsMay 29, 2025 at 11:45 pm #1484839In reply to: Missing arrows in carousel
Ok, what did I do wrong? :) I couldn’t find the code that you suggested to remove and added the one that you suggested to add and nothing changed.
This is the current CSS code that I have for the the sliders:
#top .avia-slideshow-arrows.avia-slideshow-controls a {
border-radius: 25px;
font-weight: bold;
font-size: 18px;
background:#transparent;
width: 45px;
height: 30px;
}I also tried to change background from #transparent to #a6a6a6 !important but still nothing.
Thanks again!
May 29, 2025 at 8:34 pm #1484832In reply to: Uploaded childs theme – problemS
Hey extraeyes,
The old version 5.6.6 will not automatically update, to update your version of Enfold you will need to download the latest installable WP version from your Theme Forest account and upload it to your WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New
after you choose the zip file and click install, you will see a This theme is already installed message because you are updating, you can continue
then you will see the Theme updated successfully message.
For your other issue see this post.Best regards,
MikeMay 29, 2025 at 1:21 pm #1484823In reply to: Editor field does not exist
Hi Ismael,
thank you for your help! :) I suspected it had something to do with Ninja after reading this threat: https://kriesi.at/support/topic/theme-editor-option-under-appearance-has-disappeared-in-enfold-4-8-2/. But perhaps there is a completely different reason for this. I provide login data and a screenshot in the private field.
Kind regards,
ebenandersMay 29, 2025 at 3:28 am #1484819Topic: Colour Section doesnt go to the top of the page
in forum FAQ & Video TutorialsExperienceDNA2019
ParticipantHello, I have a transparent header, with a colour section on my page with a fulll size image set to align with the top.
The image however only goes partially behind the header, there is a black area at the top of the header.When i scroll the page you can see the image moves up.
How can i make the Colur Section start at the top of the page inline with the top of the header
May 29, 2025 at 3:24 am #1484816In reply to: Missing arrows in carousel
Hey Shari,
Thank you for the inquiry.
The arrows are there but they are barely visible because the background is transparent due to this css code.
#top .avia-slideshow-arrows.avia-slideshow-controls a { background: #fff0 !important; }
You can either remove the modification or add this code in the Enfold > General Styling > Quick CSS field.
#top .avia-slideshow-arrows.avia-slideshow-controls a { background: #a6a6a6 !important; }
Best regards,
IsmaelMay 28, 2025 at 10:09 am #1484767In reply to: having trouble with google maps api key
Hi,
Great, I’m glad that you found a solution. Please let us know if you should need any further help on the topic, or if we can close it.
Best regards,
RikardMay 27, 2025 at 7:28 pm #1484745In reply to: Google Tag Manager installieren
Hi,
If you have questions outside the current topic, then please open a new thread.
Best regards,
RikardMay 27, 2025 at 10:40 am #1484724Topic: Burger/Mobile menu in Widget or Footer
in forum Enfoldslikslok
ParticipantHi,
how can I use the Burger-Menu in a widget or in the footer or anywhere on the site? Is there a shortcode to implement it?
“Different menu for different pages” isn’t helpful because its site-specific.
I need a solution to show the Burger-Menu (and/or the Desktop-Menu!) within the footer and/(!)/or sidebars ((optional within a accordeon). Therefore I need a general solution I can use flexible…
Thanks
-
AuthorSearch Results
-
Search Results
-
Hi,
while trying different methods to implement shortcodes (as text, html block-type shortcode and content-elment “code”, in the main site , the footer or the widget) the shortcode is not rendererd and always occurs literally as shortcode.
So, for e.g. [pagelist] doesn’t show a list of all pager but “[pagelist]”.
Due to every shortcode I tried.
I found in an very old topic from 2013 that there was a problem in the functions.php, but this seems not to be the case here.
How to troubleshoot this problem?
A link of example in the private area.
Topic: Enfold theme issue
Hi,
We are trying to load a backup version of one of our sites into a dev environment. When we loaded it, we received the same error as this thread discusses: https://kriesi.at/support/topic/magister10/
To try and fix it, we updated Enfold via FTP, but there are still some issues. I’ve added the dev URL in the private section along with FTP login details.
Any help would be great.
Thanks
Topic: Logo overlay top bar menu
👉 I would like to adjust the position of the logo as in website’s logo below
https://globalhealth.duke.edu/👉 Replace the “-” in the mobile submenu with a “.”
Topic: Background image issues.
Bear with me, I am new to using background images. Having several issues.
I am using a background image in the 1/1 element on my Contact page. The image matches the horizontal px of my site. I would love for the background image to go all the way to the edge of the page on theft and right – to stretch horizontally as needed to match page.
The left & right padding for desktop is set to 0px.
The background image is set: Stretch to fit.
When I expand my page to the right the background image does not ‘stretch’ to fit, it zooms in to fit. Resulting in the top and bottom of the image to be cut off. I would rather the image distort horizontally to fit.In addition, the text box on this page seems to be in a fixed position. I would love for it to stay proportional to the background image, if possible.
Lastly, this page on my phone is not even close. lol
Help, please! :)
Topic: please look at this:
Hi,
to my #post-1484859 , please look at this:
BR
VentyHello, I have a transparent header, with a colour section on my page with a fulll size image set to align with the top.
The image however only goes partially behind the header, there is a black area at the top of the header.When i scroll the page you can see the image moves up.
How can i make the Colur Section start at the top of the page inline with the top of the header
Hi,
how can I use the Burger-Menu in a widget or in the footer or anywhere on the site? Is there a shortcode to implement it?
“Different menu for different pages” isn’t helpful because its site-specific.
I need a solution to show the Burger-Menu (and/or the Desktop-Menu!) within the footer and/(!)/or sidebars ((optional within a accordeon). Therefore I need a general solution I can use flexible…
Thanks