Forum Replies Created
-
AuthorPosts
-
March 28, 2019 at 6:24 pm in reply to: Issues with negative margins inside of columns — cannot select button #1084215
have a look if this will do the job:
.page-id-17 #av_section_5 .container .content { z-index: 0; }
you can open the hotel.xml and find all image links in there. ( includes ▸ admin ▸ demo_files ▸ hotel.xml )
If you got a download manager like jdownloader – you can copy paste the whole xml content to it. It will find every image link in there.
( mostly with the line “isPermaLink” )Again btw:
there is a little trick to have an outline with text-shadow:.robshadow h1, .robshadow h2 { text-shadow: -1px -1px 0 #000 , 1px -1px 0 #000 , -1px 1px 0 #000 , 1px 1px 0 #000 !important; }
PS: you can combine text-shadow and filter f.e.:
.robshadow h1 { text-shadow: -1px -1px 0 #000 , 1px -1px 0 #000 , -1px 1px 0 #000 , 1px 1px 0 #000 !important; -webkit-filter: drop-shadow(1px 1px 2px #999); filter: drop-shadow(1px 1px 2px #999); }
and maybe it looks nicer to have your html background on fixed position ;)
and by the way there is a new filter to use on content font:
avf_available_google_fontsadd_filter( 'avf_available_google_fonts', 'avia_add_content_font'); function avia_add_content_font($fonts) { $fonts['Montserrat'] = 'Montserrat:700'; return $fonts; }
Meinst du jetzt wirklich mehrzeiliges Menu ? oder das ein Link ( Menü-Punkt) zwei Zeilen hat?
Mehrzeilig ist eher gut umzusetzen – und für mich eigentlich immer die Alternative vor dem frühzeitigen umbrechen zum Hamburger Menü.
Siehe hier: https://kriesi.at/documentation/enfold/menu/#multiline-menu
on 5 ) i can not reproduce that behavior on my ipad here ( maybe because it is an ipad mini retina)
if you don’t want to loose this on updating enfold – as i said – make a copy to your child-theme – described here : Link
i’m participant as you are – so i do not see private content – sorry
what i see is that gallery.php got that filter: avf_avia_builder_gallery_image_link
gallery_horizontal.php not.you see on line 385 gallery_horizontal.php that setting to “large” – so for now it would be possible to have a copy of that alb element on your child-theme/shortcodes folder with
$lightbox = wp_get_attachment_image_src($attachment->ID, 'full');
on that line 385maybe we could get a filter here too on future versions. ;)
March 27, 2019 at 7:39 am in reply to: my Quick CSS isn't changing according to the language I open #1083465on default this is the normal case – so have you got the actual version of that plugin?
What happens if you have the merging off?hm – i see that on 1) the containers are set to hide on mobile – but do not go away.
what i do not know is why the default style of enfold does not work here:
EDIT: aha i see this is a rule on a media-query (@media only screen and (max-width:767px) {
and ipad has 768px so this could not do the job.responsive #top .av-hide-on-mobile, .responsive #top .av-hide-on-tablet { display:none !important }
so you can use that class in combination with “mobile typical class on html”:
.avia_mobile #references .flex_cell.av-hide-on-mobile { display: none !important; }
on 1) you got this layout for id: references done by 1/5 3/5 1/5 th grid containers – go to set those two small containers to hide on mobile devices ( there is in the alb “screen options” – mobile display
on 2) you got a rule on your css:
.responsive #top #wrap_all .flex_column.av-break-at-tablet, .responsive #top #wrap_all .av-break-at-tablet .flex_cell { margin: 0px 0px 20px; width: 100%; display: block; }
this is a tablet rule only so it is clear why it is not on other devices set margin to 0 everywhere – you got 20px bottom
on 3) have a look if these timeline things are there if you deactivate your wp-rocket
do not forget to refresh all cachings after deactivating so you can make a representative statement.on 4) see: https://kriesi.at/support/topic/icon-list-element-issue/
-
This reply was modified 6 years, 3 months ago by
Guenni007.
March 26, 2019 at 10:56 pm in reply to: my Quick CSS isn't changing according to the language I open #1083286what kind of Language Plugin do you use?
no one hampers you to have an opacity of 0.001 ;)
see here with predefined color to transparent : Gradient Tool
f.e:#top .av_header_transparency .header_bg { background-image: -ms-linear-gradient(bottom,rgba(255,255,255,0.001) 0%,rgba(255,255,255,1) 45%); background-image: -moz-linear-gradient(bottom,rgba(255,255,255,0.001) 0%,rgba(255,255,255,1) 45%); background-image: -o-linear-gradient(bottom,rgba(255,255,255,0.001) 0%,rgba(255,255,255,1) 45%); background-image: -webkit-gradient(linear,left bottom,left top,color-stop(0,rgba(255,255,255,0.001)),color-stop(45,rgba(255,255,255,1))); background-image: -webkit-linear-gradient(bottom,rgba(255,255,255,0.001) 0%,rgba(255,255,255,1) 45%); background-image: linear-gradient(to top,rgba(255,255,255,0.001) 0%,rgba(255,255,255,1) 45%); background-color: transparent !important; }
for detailed advices i had to see the corresponding site.
-
This reply was modified 6 years, 3 months ago by
Guenni007.
can you try this:
function avia_change_gallery_thumbnail_link($link, $attachment, $atts, $meta) { $link = wp_get_attachment_image_src($attachment->ID, "full"); return $link; } add_filter('avf_avia_builder_gallery_image_link', 'avia_change_gallery_thumbnail_link', 10, 4);
your code should work too – i have that on my memory board for enfold too – but maybe this will do the job for you
see here about my comment: https://kriesi.at/support/topic/icon-list-element-issue/#post-1082360
it seems to be solved over night :
don’t know – becaue i have done all that vinay said. Try again to make it step by step.
disable merging – refresh – merge again etc.ist das ein shrinking header oder nicht?
Bei non-shrinking kann man einfach die line-height korrigieren. Bei shrinking wird es komplizierter. Da die Line-height and as Scroll-event gekoppelt ist.March 25, 2019 at 3:34 pm in reply to: Again one Problem with merged css – this is sad thing because i like to use this #1082706works ! – great – thanks
by the way: why is it needed / necessary to have
/** * * @since 4.5.5 * @var array */ protected $screen_options;
etc. pp on iconlist but not on iconbox ?
hm
I could have sworn that I precisely had this problem with the new version 4.5.5. Of course, I always update all cache settings – due to the background image problem, the merging was even disabled, but even then I created new css and js files.
I don’t know why it doesn’t occur anymore. ?March 24, 2019 at 4:24 pm in reply to: 4.5.5 Fails To Show ANY Custom Background Image at the top of my home page #1082250on my installation the absolute path fails even too. On 4.5.4 this works on 4.5.5. it does not fix the issue.
i tested with url(“https://domain/wp-content/…) with (https://domain/wp-content/…) with (//wp-content/…) etc. pp. always doubling the domain – as you described above.The place to look for is : asset-manager.class.php – the new lines in:
public function rel_to_abs_url($content, $path)
espacialliy on thepublic function _url_callback( $match )
if you like to have on those headings at the logo the h2 tag – and you want to have influence over these lines in your css – you have to change it to h2.
The rules in CSS begins always with the selector. Selector is what selects the element to address. So no influence if the selector does not fit to the tag you want to select. Simple – isn’t it?March 22, 2019 at 3:52 pm in reply to: Update to 4.5.5 caused issue with icon list icon background color #1081880a temp-fix for that will be good.
all iconlists except the one with left icons are not correct styled. (Custom font size , custom colors etc.)March 22, 2019 at 3:48 pm in reply to: Shortcode vom Kontaktformular falsch einprogrammiert von Haus aus #1081877Geil – das muss einem erstmal auffallen – top
aber ich denke das dies nicht zum copy&paste gedacht war. Sondern um es zu verdeutlichen wie es geht. Aber du hast natürlich recht – es wird viele geben die es dort rauskopieren.
Es ist im englischen übrigens nicht da diese Leerstelle._____
but I don’t think this was meant to be a copy&paste. But to make it clear how it works.
But of course you’re right – there will be many who will copy it out there.
Btw on english Options It’s not there that spaceFirst of all if you only like to influence the subtext style why don’t you change your css rules to h1 ?
______
i thought you will do it because of seo reasons than have a look if your child-theme functions.php file got an entry like this:
search for avf_logo_subtext
this code is only an example code – i use it if i want to place wordpress site name and wordpress description to my logoIf you got something like that – you can change here your h1 to h2 ( but don’t forget to do it twice – opening and closing tag)
add_filter('avf_logo_subtext', 'kriesi_logo_addition'); function kriesi_logo_addition($sub) { $sub .= "<h1 class='logo-title'>"; $sub .= get_bloginfo( 'name', 'display' ); $sub .= "</h1>"; $sub .= "<h2 class='logo-title logo-subtitle'>"; $sub .= get_bloginfo( 'description', 'display' ); $sub .= "</h2>"; return $sub; }
you existing code may look like this:
add_filter('avf_logo_subtext', 'kriesi_logo_addition'); function kriesi_logo_addition($sub) { $sub .= "<h1>Jonathan F. Anderson, LPC-s</h1>"; $sub .= "<h1>Gate Healing, PLLC</h1>"; return $sub; }
March 21, 2019 at 5:07 pm in reply to: "File merging and compression for CSS" feature not working in Enfold Theme 4.5.5 #1081481Bitte erst lesen dann Code probieren:
Bei WordPress deutsch gibt es unter Dashboard – Einstellungen – Allgemein die “Sprache der Webseite”
Hierbei gibt es wohl nur im deutschen die Unterscheidung zwischen informeller und formeller Anrede: Deutsch und Deutsch (Sie)
Wenn du dann Deutsch (Sie ) gewählt hast und die Übersetzer Ihr Handwerk verstanden haben, dann wird Sich die Frage erübrigen.
Falls nein, dann müssen wir in die Sprachfiles gehen und es dort ändern.Bzw, wenn es nicht allzuviele Änderungen sind gibt es auch quick and dirty Lösungen.
zB das hier in die child-theme functions.php:function my_text_strings( $translated_text, $text, $domain ){ switch ( $translated_text ){ case 'das könnte dich auch interessieren': $translated_text = __( 'das könnte Sie auch interessieren', $domain ); break; } return $translated_text; } add_filter('gettext', 'my_text_strings', 20, 3);
is there a link to your site?
so i misunderstood your question. You only want to have it over the container width.
The headline misleaded me: Adjust Video to browser width
same as above but without the fullvideo class
just put your codeblock into a color-sectionsee testpage again – just under the fullwidth video
next question from you:
clip text only works on firefox with background-attachment : scroll.
but on chrome and safari they will do the trick with : fixed
so we need a fallback for firefox
see same example page above.take a color-section give it a custom class like: cliptext
put in it a heading alb element ( or text-block Alb).cliptext .av-special-heading-tag { background :url('https://link-to-your-image'); display: block; background-size: cover; background-repeat: no-repeat; background-attachment: fixed; color: #000; font-size: 200px !important; font-weight: 900; line-height: 1.5em; letter-spacing: .1em; text-rendering: optimizeLegibility; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; text-fill-color: transparent; -webkit-filter: drop-shadow(2px 2px 5px #333); filter: drop-shadow(2px 2px 5px #333); } @supports(-moz-appearance:none){ .cliptext .av-special-heading-tag {background-attachment:inherit} }
But: – remember that fixed positioning is alway difficult to manage from mobile devices !
Edit: it works on iPad miniAnd i do not realy know how to have in code-block element here a forced line-break ( <br/> nor <br> works here)
Edit: einfach eine neue Heading Zeile einsetzenPPS: if you have the background-image of the color section in fixed or parallax style – the ipad/iphone does not go with the text effect.
Then all is set to scroll-
This reply was modified 6 years, 3 months ago by
Guenni007.
Everything is in the code – just look:
here is the layout – working with codeblock element ( Deactivate schema.org markup ) means no additional containers.
what is the codeblock element input:
and the surrounding color-section got custom-class: fixed-heading<div class="mask"> <div class="mask__content"> <div class="container is-full"> <div class="teaser is-centered"> <div class="teaser__title"> <h2 class="is-h2">Your Text</h2> <h2 class="is-h1">A next line</h2> </div> </div> </div> </div> </div>
your input for quick css:
.mask { height:400px; } @supports ((-webkit-clip-path:polygon(0 -1px,0 calc(100% + 1px),100% calc(100% + 1px),100% -1px)) or (clip-path:polygon(0 -1px,0 calc(100% + 1px),100% calc(100% + 1px),100% -1px))) { .mask { -webkit-clip-path:polygon(0 -1px,0 calc(100% + 1px),100% calc(100% + 1px),100% -1px); clip-path:polygon(0 -1px,0 calc(100% + 1px),100% calc(100% + 1px),100% -1px); clip:rect(0,auto,auto,0) } body:not(.is-noscroll) .mask { position:relative } .mask .mask__content { position:fixed } .mask .mask__content { top:50vh } } .mask__content { position:absolute; width:100%; left:0; transform:translateY(-50%); z-index:20; top:50% } .fixed-heading .content { padding: 0 !important; } h2.is-h2 { text-align: center !important; font-size: 36px; font-weight: normal; text-transform: none !important; line-height: 60px; }
if you like to style the h2 change the class in the code block element in is-h1 or something else
the color-section can have background as you like. And: “no minimum height” ( is given by mask height )
See example page: https://webers-testseite.de/schrift-und-parallax/
-
This reply was modified 6 years, 3 months ago by
-
AuthorPosts