Forum Replies Created
-
AuthorPosts
-
I plan to reuse elements from multiple demos to build a custom layout.
in this case – maybe my method of getting the enfold shortcodes from pages by downloading the xml files of the demo.
You find the demos here on :
https://github.com/KriesiMedia/enfold-library/tree/master/demosDownload the concerning zip file of the demo and extract the xml file.
Open it in a good text editor (f.e. on Mac sublime text – on windows pc’s use notepad++)now you can search for “isPermaLink” (without the quotes) in that xml
or if you look for a page look for “page_id”
or for portfolio: “post_type=portfolio”Just above, you can see the title of the page and the link
Or even more specifically, search for the title of the desired layout you want to transfer, e.g.,
<title>Home</title>The Enfold shortcodes can be found directly below that reference wrapped by:
<content:encoded><![CDATA[ … here is the avia shortcode inside ]]></content:encoded>Pay attention to CDATA – there are two opening square brackets and two closing brackets below.
The third closing bracket at the end usually belongs to the Enfold shortcodes.Of course, this only provides you with the layout framework, including all element settings, but the links and images must then be edited.
October 20, 2025 at 7:52 pm in reply to: Full screen slider links don’t work when permanent caption is selected. #1490426the only thing that is strange is that on my real mobile device (an iPhone) the fallbackimage is shown – but the link will not open. But thats only on a real mobile device.
Next if you let yout fingers on that button a few seconds (on iPhone) a context menu will open and on open in new tab will work. ???
on all browsers i can test on my OSX ( Firefox, Chrome, Safari, Opera) Desktop all is ok.October 20, 2025 at 7:44 pm in reply to: Full screen slider links don’t work when permanent caption is selected. #1490423what browser do you use?
October 20, 2025 at 7:35 pm in reply to: Full screen slider links don’t work when permanent caption is selected. #1490421hm- on my testpage this is the case : https://webers-testseite.de/slider-with-permanent-caption/: second slide is a selfhosted video
Enfold 7.1.3 and newest WPok – i test now the fullscreen slider – if this will work too. …
same on fullscreen sliders on my end: https://webers-testseite.de/fullscreen-slider-with-permanent-caption/
PS : check your logo – i guess it is “Nutzfahrzeuge”
October 19, 2025 at 9:05 pm in reply to: Full screen slider links don’t work when permanent caption is selected. #1490379what is a bit strange – it seems only be the fact if it is a self-hosted video.
i tested it with a youtube video – the button works !if you switch off the video controls:
Hide Video Controls (Check if you want to hide the controls (works for youtube and self hosted videos) )then the button is working
October 17, 2025 at 12:27 pm in reply to: Sticky TOC in Echo Knowledge base plugin not working #1490340if they rule it by position sticky – have a look here :
https://webers-testseite.de/sticky-sidebar/
this principle can be used on different elements:
https://webers-testseite.de/sticky-elements/hm – didn’t i mention a solution before ? …
but take this instead from https://kriesi.at/support/topic/scroll-down-link/#post-1489662 – because we have choosen before this slightly rounded version :
function avia_replace_default_icons($icons){ $icons['svg__scrolldown'] = array( 'font' =>'svg_entypo-fontello', 'icon' => 'down-open'); $icons['svg__prev'] = array( 'font' =>'svg_entypo-fontello', 'icon' => 'left-open'); $icons['svg__next'] = array( 'font' =>'svg_entypo-fontello', 'icon' => 'right-open'); return $icons; } add_filter('avf_default_icons','avia_replace_default_icons', 10, 1);and try :
#top .avia-post-nav { padding: 20px; } #top .avia-post-nav .label { position:absolute; top:50% !important; transform: translateY(-50%); height:48px; margin-top:0; } .avia-post-nav .label.avia-svg-icon svg:first-child { fill: #FFF; height:48px; width: auto; }btw: you can have on opend slide-out a different fill color:
#top .avia-post-nav:hover .label.avia-svg-icon svg:first-child { fill: #eee }@media only screen and (min-width: 1010px) { /* your rulesets here */ } @media only screen and (min-width: 990px) and (max-width: 1009px) { /* your rulesets here */ } @media only screen and (min-width: 768px) and (max-width: 989px) { /* your rulesets here */ } @media only screen and (max-width: 767px) { /* your rulesets here */ }It is good practice (as Enfold also does) to use even values for the min-width and odd values for the max-width.
” tablet and mobile etc” tablet and mobile are not well defined as screen width.
and “this elements” is clear for you what you are belonging to, but for us it is hard to find out what you are talking about.
I tried but it won’t work so i need a code for this.
– i do not see what “this” means”
you should be more precise what you like to have – ” tablet and mobile etc” tablet and mobile are not well defined as screen width.
F.e. there are so many iPad versions (
iPad mini 768×102; iPad 800×1080; iPad 11inch 834×1194; iPad 12.9inch 1024×1366 etc. )
then there are different media queries for screen orientations ( portrait or landscape)
then there are different media queries for screen resolutions to differ between Retina Displays to normal one. etc. etc. pp
for example:@media screen and (min-width:600px) and (-webkit-min-device-pixel-ratio: 2), screen and (min-width:600px) and (min-resolution: 192dpi), screen and (min-resolution: 2dppx) { /* an example rule: */ div {background:url( (Email address hidden if logged out) );} }Therefore, I would focus on a few screen widths, e.g., the 767px and 989px used by Enfold.
Incidentally, Enfold also uses various classes on the html tag that can be used to target only mobile devices (avia_mobile) or devices with touch screens (touch-device).By the way: The link provided by Rikard leads to a more detailed page with my above-mentioned notes:
https://www.w3schools.com/css/css3_mediaqueries_ex.aspdo you have set your header to logo top menu below?
What do you mean by ‘devices’ – there are no restrictions regarding different devices in the CSS rules above?
By the way, you should not set this for mobile devices, as it looks terrible (it is not easy to read with these settings).
f.e.:/*Ajout de marges personnalisées dans les sections spécifiques de la page de résultats de recherche*/ @media only screen and (min-width: 768px) { .responsive #top.search #main .container { max-width: 100%; } .responsive #top.search #main .page-heading-container { max-width: 1310px !important; padding-right: 100px !important; padding-left: 100px !important; } .responsive #top.search #main .post-entry { margin-left: 100px !important; margin-right: 100px !important; } }It seems so, Rikard, because the page now looks as desired.
even though I believe that 20px is more like an equidistance. ;)something like this:
.responsive #top.search #main .container { max-width: 100%; } .responsive #top.search #main .page-heading-container { max-width: 1310px !important; margin: 0 auto 50px; padding: 0 50px 50px; } .responsive #top.search #main .post-entry { margin-left: 50px; margin-right: 150px; }you should shift not the button but the p-tag that has that button.
because pseudo class :has is already for most browsers usable we can do:.page-id-15 p.form_element:has(.av-recaptcha-submit) { margin-top: -20px; }or if you are able to give a custom-class to that p-tag use that instead for better browser support.
i can see both images on mobile ( dev tools setting ). So autoplay works on my end here
i did not check if real mobile device shows it.October 12, 2025 at 6:17 pm in reply to: Having trouble with a full width image header that scales responsively #1490080if it is the about/leadership page – there is no background-image at all – not even on mobile!
If you don’t have any content, why use a color section? The easiest option is to use a full-width slider. If you don’t want slider controls, you can adjust the options accordingly.
but my solution with declaring the background-size: cover and set the color-section height to aspect-ratio of your image will work properly.
https://webers-testseite.de/hostworks/October 9, 2025 at 11:44 pm in reply to: Having trouble with a full width image header that scales responsively #1489992choose your color-section and set for minimum height option your aspect-ratio in percent.
F.e. your image with 300/2000 means min-height 15%.
As long as your content inside your color-section does not grow bigger than the 15% height. The bg-image will react responsive, If you have set the bg-image is set to cover the background.PS: for small screen you have to get rid of min-height option for color-sections (100px on default)
October 9, 2025 at 12:29 pm in reply to: How to build 1/2 + 2×2 image grid with text overlays #1489981and if you like to have then a non full-width grid-row – there are ways to get this …
see: https://webers-testseite.de/grid-row-alb/October 9, 2025 at 8:12 am in reply to: Masonry Blog Posts no longer sorting date correctly #1489978The name “masonry” actually implies the desire to fill the available space as best as possible. Depending on the settings (Flexible Masonry) , this can mean that for some screen widths, entries with large heights are better suited to a different location.
Despite the discontinuation of Sort Order the above setting, Masonry attempts to fill the entire area as well as possible.
This then leads that entries bigger in height, for example, being inserted differently after all.If you try it with the “Perfect Grid” setting, that shouldn’t happen.
that is why i first tried to give you a header solution.
Then you do not need to add that lines manually to every top section in your content. – and if you got a slider or a gird-row on top no extra solutions are necessary. – But there are different Problems – f.e. what to do when first section got a collered background.The separator solution: As part of next section this should not come into conflict with your menu text. Or do you have on other installations an overlapping first section to header area ?
The problem wil be now – what to do if you got a grid-row or a slider on top.Thank goodness for DeepL — I did take French as my third subject in high school, but that was a good 40 years ago ;)
#top .ti-widget .ti-controls .ti-next, #top .ti-widget .ti-controls .ti-next:after, #top .ti-widget .ti-controls .ti-prev:after, #top .ti-widget .ti-controls .ti-prev { background: none !important; border: none !important; outline: none !important; } #top .ti-widget .ti-controls .ti-next { right: -20px; } #top .ti-widget .ti-controls .ti-prev { left: -20px; } #top .ti-widget .ti-controls > div:after { font-size: 52px; color: #ebebeb; } #top .ti-widget .ti-controls .ti-prev:hover:after, #top .ti-widget .ti-controls .ti-next:hover:after { color: #2c1175 !important; }maybe you have allready included some of those rules.
if you like to use it as svg separator you had to use a svg file like that
https://webers-testseite.de/button-row/
copy paste the svg code from there.
Link to the svg: Here_____
Incidentally, you should adjust the fixed header rules for responsive behaviour. ( See it on small screens and scrolling down)First – a screenshot would be nice to have. Many misunderstandings could have been avoided beforehand if I had known more precisely what needed to be changed.
Next: i’m participant as you are, so if there is a message on private content field – i could not see it.
but where does a link like :
https://storasoder.se/nojesteaterntestsida/richard-obriens-rocky-horror-show-the-legendary-rock-roll-musical/
come from – that is the link you must have set.first remove this from your css
.ti-prev:hover::after, .ti-next:hover::after { color: #FFF !important; background-color: var(--enfold-header-color-color); }then:
#top .ti-widget .ti-controls .ti-next, #top .ti-widget .ti-controls .ti-next:after, #top .ti-widget .ti-controls .ti-prev:after, #top .ti-widget .ti-controls .ti-prev { background: none !important; border: none !important; outline: none !important; } #top .ti-widget .ti-controls .ti-next { right: -10px; } #top .ti-widget .ti-controls .ti-prev { left: -10px; }or a little more elegant:
#top #header:not(.header-scrolled-full) #header_main { box-shadow: none; } #header_main:before { content: ""; position: absolute; left: 0; top: calc(var(--enfold-header-height) - 150px); width: 100%; height: 200px; background-image:url("data:image/svg+xml;base64,PHN2ZyBpZD0iRHJlaS1MaW5pZW4iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB2aWV3Qm94PSIwIDAgODAwIDE4MCIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CgogICAgPHN0eWxlPgogICAgICAuc3QwIHsKICAgICAgICBmaWxsOiAjOTQxMDA5OwogICAgICB9CgogICAgICAuc3QxIHsKICAgICAgICBmaWxsOiAjZWZhNDBiOwogICAgICB9CgogICAgICAuc3QyIHsKICAgICAgICBmaWxsOiAjMDA4MGEyOwogICAgICB9CiAgICA8L3N0eWxlPgoKICA8cGF0aCBjbGFzcz0ic3QyIiBkPSJNNjE0Ljg4NSw2My44MzVjLTEwNS4xNzksMjUuNTMxLTI2NC44MDQsNTUuOTY1LTQyNy45NTQsNTUuOTY1LTEwMi4xMjcsMC0xNjAuOTctMTcuODkxLTE4Ni45MzEtMjguNTI5djE0Ljk5MWMyNS45NiwxMC42MzcsODQuODA0LDI4LjUyOSwxODYuOTMxLDI4LjUyOSwxNjMuMTUsMCwzMjIuNzc1LTMwLjQzNCw0MjcuOTU0LTU1Ljk2NSw5NS42MjYtMjMuMjEyLDE2NC43ODItNDYuNjc5LDE4NS4xMTUtNTMuODM1di0xNC45OTFjLTIwLjMzMyw3LjE1NS04OS40ODksMzAuNjIyLTE4NS4xMTUsNTMuODM1WiIvPgogIDxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik02MTQuODg1LDc4LjgyNWMtMTA1LjE3OSwyNS41MzEtMjY0LjgwNCw1NS45NjUtNDI3Ljk1NCw1NS45NjUtMTAyLjEyNywwLTE2MC45Ny0xNy44OTEtMTg2LjkzMS0yOC41Mjl2MTQuOTljMjUuOTYsMTAuNjM3LDg0LjgwNCwyOC41MjksMTg2LjkzMSwyOC41MjksMTYzLjE1LDAsMzIyLjc3NS0zMC40MzQsNDI3Ljk1NC01NS45NjUsOTUuNjI2LTIzLjIxMiwxNjQuNzgyLTQ2LjY3OSwxODUuMTE1LTUzLjgzNXYtMTQuOTljLTIwLjMzMyw3LjE1NS04OS40ODksMzAuNjIyLTE4NS4xMTUsNTMuODM1WiIvPgogIDxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik04MDAsMzkuOTgxYy0yMC4zMzMsNy4xNTUtODkuNDg5LDMwLjYyMi0xODUuMTE1LDUzLjgzNS0xMDUuMTc5LDI1LjUzMS0yNjQuODA0LDU1Ljk2NS00MjcuOTU0LDU1Ljk2NS0xMDIuMTI3LDAtMTYwLjk3LTE3Ljg5MS0xODYuOTMxLTI4LjUyOXYxNy4zMjZjMzAuMDc1LDExLjQ0Miw4OS4yMjgsMjcuMjAyLDE4Ni45MzEsMjcuMjAyLDE2NC44MjUsMCwzMjUuODg0LTMwLjcxMiw0MzEuOTcyLTU2LjQ3Niw4OS4wNC0yMS42MjQsMTU1LjM3LTQzLjQ5MiwxODEuMDk4LTUyLjM4MXYtMTYuOTQzWiIvPgo8L3N2Zz4="); background-size: 100% 100%; transition: opacity 1s ease-in-out; } #top #header.header-scrolled #header_main:before { opacity: 0; }svg with more convex look.
-
AuthorPosts



