Forum Replies Created
-
AuthorPosts
-
well the normal tabs are simple containers for ( you can also insert in tab content shortcodes) content.
the one on your other page (link) are tab-sections from layout-elements (https://kriesi.at/themes/enfold-2017/elements/tab-section/#layer-slider-plugin)
these are capable to style by default. ( btw. it is in layout-element that tab-section because you can even drag f.e. 1/2 containers in it like in a color-section.hasn’t the horrizontal Gallery an option to deactivate the lightbox? (image linking). #
– but because you say that you have two lightboxes there might be a conflict with another lightbox plugin you have installed.try with !important if this does not work without:
#top.category .post-meta-infos { display: none; }
as an experienced member of this board you will have already tried the !important rule?
h6 { font-family: "Reforma Bold" !important }
the trouble is if there was a different rule with !important note – i don’t know how enfold declares f.e. a setting from advanced styling rules.
so the the h6 rule only is too general – so if a more specific rule f.e. special-heading h3 exists with an important note the h3 only will not overwrite it.January 26, 2018 at 9:43 pm in reply to: 4.2.2. Out and Video Bug is Improved But Still There #903531i went back on some test installations of mine to Enfold 4.1.2 or 4.0.5 ( i got both on a duplicator archiv) the troubles come definitly from WordPress 4.9. They changed the mediaelement scripts and many more – the poor WP Bakery Page Builder User f.e. those things do not work. etc etc. pp.
So we are still relatively well. I can live with selfuploaded video to youtube till the next WP Update will fix those bugs.
January 26, 2018 at 11:15 am in reply to: 4.2.2. Out and Video Bug is Improved But Still There #903288by the way – this is not only an enfold trouble – the i-net is full of that topic.
It seems that all have this problem. So turn back to 4.12 Enfold does not solve the problem .
With their over-the-top arrogance, Apple has decided to throw things over. A lot of wordpress themes ( joomla etc too) got this troubles.
For performance reasons i’m testing now a lot of cdn free options and come to Cloudinary. Has a very good wordpress plugin and good free options. Even for bigger sites this is a good option. But now the point to this topic. They do transform videos for you. So you can realy adopt the video to the settings with good acceptance to Safari (mp4, H264, baseline pofile level 3). Even with this Safari does not start the video.
But a little advantage Cloudinary places a fallback image which is displayed instead.I hope apple would come soon to a solution of this.
So Apple and WordPress 4.9 ff is the trouble-maker.
WP 4.8 everything is fine with Enfold 4.22 and Safari-
This reply was modified 7 years ago by
Guenni007.
January 25, 2018 at 8:57 pm in reply to: 4.2.2. Out and Video Bug is Improved But Still There #903032January 25, 2018 at 8:26 pm in reply to: 4.2.2. Out and Video Bug is Improved But Still There #903012i now tried a lot of alternative video formats (webm, ogv, m4v, mp4 etc.). Safari Desktop does not play it at all.
January 25, 2018 at 7:35 pm in reply to: 4.2.2. Out and Video Bug is Improved But Still There #902987ok – i see you have inserted a m4v – video – i will try that instead a mp4
yes i’m on 4.2.2January 25, 2018 at 7:06 pm in reply to: 4.2.2. Out and Video Bug is Improved But Still There #902973i can confirm – that a selfhosted video does not start on OSX HighSierra and Safari Version 11.0.3 : just a gray background
on Safari – Developer Tools – UserAgent : IPad – the video works ! (as you said)
But please do not do this with older enfold versions – this is an edited version 4.1 and later – since screenoptions are added !
Hi,
how can I make some changes to be able to add list of choice (h1,h2, … h6) for all element .
Best regards: learn how to read the code. :lol. ;)
i did that for enfold 4.1 and there seems to be no changes on 4.2 for those shortcodes.
But a child-theme is mandatory! you can overwrite the files in enfold/config-templatebuilder/avia-shortcodes. folder – but than on updating the parent-theme the things will get lost
see here in action: https://webers-testseite.de/weber/blog/
there are three files to change
you can download all files needed here: https://webers-testseite.de/slideshows_with_h-tag_since_Enfold41.zip1) create a folder on your child-theme directory called : shortcodes
2) put in those three files in that shortcodes folder
3) insert this to your functions.php of your child theme:add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1); function avia_include_shortcode_template($paths){ $template_url = get_stylesheet_directory(); array_unshift($paths, $template_url.'/shortcodes/'); return $paths; }
now you have the opportunity to make a choice which tag should be placed !
But think of that a h1 should only be placed once on a page at the same time.so if you only have one h1 per slider and only one slider on that page it is ok to have for each slide a h1
next trial will be to have it with sidebars – maybe this will work too …
but this is a bug of Sierra and his browser-version.
because as you say on OS Yosemite – and on my HighSierra there is no such behavior.by the way : to get rid of that container on responsive case : goto column options dialog “screen options” and mark the concerning desired behavior.
yes – but this is an incomplete url
so i cannot see your screenshot
you can upload images here: https://postimages.org/ok i stop trying to help you – because it seems that you only accept help from mods – bye
what does your Safari (version 11.0.2) on a Macbook Pro with OS Sierra version 10.12.6 show on my test page ?
Same bug?hm – i can not reproduce that behavior : Link
the 1/2 columns on top are in a color-section – the columns on bottom aren’t (without surrounding container)
i use high sierra and my safari is : Version 11.0.2 (13604.4.7.1.6)i can not believe that it is only a matter of OSX Version
Maybe you can insert an invisibel content (text block with
f.e.)here is an online generator to make the css rules : Link
i don’t know what you mean by row – one easy way is to give it a custom class.
As a background-image definition it lays over the background-colorif you got the code f.e.:
.custom-class { background-image: -ms-linear-gradient(top, rgb(30,87,153) 0%, rgb(125,185,232) 100%); background-image: -moz-linear-gradient(top, rgb(30,87,153) 0%, rgb(125,185,232) 100%); background-image: -o-linear-gradient(top, rgb(30,87,153) 0%, rgb(125,185,232) 100%); background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgb(30,87,153)), color-stop(100, rgb(125,185,232))); background-image: -webkit-linear-gradient(top, rgb(30,87,153) 0%, rgb(125,185,232) 100%); background-image: linear-gradient(to bottom, rgb(30,87,153) 0%, rgb(125,185,232) 100%); }
January 24, 2018 at 11:38 am in reply to: I hit the button "restart all options" , how can I revert changes?? #902065if you are working on a child-theme i do often insert for my customers in function.php:
function admin_head_mod() { echo '<style type="text/css"> .avia_reset {pointer-events: none !important } </style>'; } add_action('admin_head', 'admin_head_mod');
it blocks that click option
thanks ismael – i do not really know how this could solve my request.
For each User (Author, Editor) i have a custom made Portfolio with styled Content.so i guess the htaccess method with 301 redirect will be much easier.
Edit: Can be closed
-
This reply was modified 7 years ago by
Guenni007.
or you define a custom hr – there you can choose the width of the hr
choose thin and your desired width of the hr.
Choose no icon for it.
And give a custom class to the hr: “customised-hr”do this to quick css:
.customised-hr .hr-inner.inner-border-av-border-thin::before { content: "○"; font-size: 24px; position: relative; left: 0; top: -15px; color: #e1e1e1;; background-color: #fff; } .customised-hr .hr-inner.inner-border-av-border-thin { border-top-width: 2px; }
The color of the before content must concern to your hr color you set
see here: https://webers-testseite.de/3images-one-link/
big advantage : make one template of the custom hr and if you need it insert it and only fit the width for it
January 23, 2018 at 6:53 pm in reply to: Lessen the shrink size of the header when scrolling #901608is the 65 px the starting header height? because i have made some shrinks from 150 to 1px – and this works too!
it is not so complex to create these files – and with shortcode of columns.php it is easy to have this in a child-theme.
But i realy do not know how to get a “child-theme” avia-builder.js – so that these changings are not lost on update of enfold parent theme.For your study: webers-testseite.de/6thColumns.zip
Because there has to be changes for admin layout there must be some entries (all included in the zip file)
it does not work to put this css to quick css!function admin_head_mod() { echo '<style type="text/css"> .avia_layout_builder .av_one_sixth{width:14%;} .avia_layout_builder .av_five_sixth {width: 80%;} </style>'; } add_action('admin_head', 'admin_head_mod');
you only have to define than – the responsive design.
Essentially, 2 files are responsible for this (avia-builder.js and columns.php). And to add a little css code. Funnily, there are f.e. in grid.css up to 1/10 div instructions.
Allthough it is an existing png for sixth columns there you have to create an own sc-sixth.png
All these files are in config-templatebuilder folder.all praise goes to ismael – i only renamed some settings to better recognise the use of that function
yes i agree to rob – thanks Yigit
btw. can be closed. I will post on the other longer thread concerning to this topicthanks – i added this to my functions.php of my child-theme (with the trigger class: extralink):
function modal_video() { ?> <script type="text/javascript"> jQuery(window).load(function(){ jQuery('.extralink').magnificPopup({ type:'inline', midClick: true }); }); </script> <?php } add_action('wp_footer', 'modal_video');
that works now
i placed a fixed element on an enfold page (see private content)
but allthough i did place the correkt link with ?iframe=true option – the film does not start as expected.
The link gets on default the class as usual mfp-iframe ( i guess the trigger) but no modal window opens -
This reply was modified 7 years ago by
-
AuthorPosts