Forum Replies Created

Viewing 30 posts - 6,721 through 6,750 (of 11,485 total)
  • Author
    Posts
  • have a look if this will do the job:

    .page-id-17 #av_section_5 .container .content {
        z-index: 0;
    }
    in reply to: How to import images from other demos #1084135

    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” )

    in reply to: Google font weight 700 not working #1084127

    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 ;)

    in reply to: Google font weight 700 not working #1084125

    and by the way there is a new filter to use on content font:
    avf_available_google_fonts

    add_filter( 'avf_available_google_fonts',  'avia_add_content_font');
    function avia_add_content_font($fonts)
    {
    $fonts['Montserrat'] = 'Montserrat:700';
    return $fonts;
    }
    in reply to: Mehrzeiliges Menü #1083678

    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

    in reply to: Pages' layout issues on iPad (and mobile) #1083674

    on 5 ) i can not reproduce that behavior on my ipad here ( maybe because it is an ipad mini retina)

    in reply to: about lightbox #1083672

    if you don’t want to loose this on updating enfold – as i said – make a copy to your child-theme – described here : Link

    in reply to: about lightbox #1083466

    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 385

    maybe we could get a filter here too on future versions. ;)

    on default this is the normal case – so have you got the actual version of that plugin?
    What happens if you have the merging off?

    in reply to: Pages' layout issues on iPad (and mobile) #1083461

    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;
    }
    in reply to: Pages' layout issues on iPad (and mobile) #1083288

    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.

    what kind of Language Plugin do you use?

    in reply to: Gradiant to transparent Sticky Header #1083281

    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.
    in reply to: about lightbox #1083268

    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

    in reply to: Icon List Element Issue #1083263

    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.

    in reply to: Mehrzeiliges Menü #1082918

    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.

    works ! – great – thanks

    in reply to: Icon List Element Issue #1082609

    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 ?

    in reply to: Icon List Element Issue #1082360

    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. ?

    on 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 the public function _url_callback( $match )

    in reply to: Change Logo heading tag from h1 to h2 #1082089

    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?

    a 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.)

    Geil – 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 space

    in reply to: Change Logo heading tag from h1 to h2 #1081750

    First 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 logo

    If 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;
    }
    in reply to: Das könnte sie auch interessieren #1081442

    Bitte 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);
    in reply to: Adjust YouTube video in Code Block to browser width #1081386

    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-section

    see testpage again – just under the fullwidth video

    in reply to: Text and Headline scroll over effect #1081327

    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}
    }
    in reply to: Text and Headline scroll over effect #1081233

    But: – remember that fixed positioning is alway difficult to manage from mobile devices !
    Edit: it works on iPad mini

    And 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 einsetzen

    PPS: 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.
    in reply to: Text and Headline scroll over effect #1081223

    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/

Viewing 30 posts - 6,721 through 6,750 (of 11,485 total)