Forum Replies Created

Viewing 30 posts - 10,441 through 10,470 (of 11,742 total)
  • Author
    Posts
  • in reply to: Validations #699941

    if it is there it is allways in front of : </div></div></div><!– close content main div –>

    </p>
    </div></div></div><!-- close content main div -->	  
    Line 178     http://kriesi.at/themes/enfold-one-page-portfolio/
    
    </p>
    </div></div></div><!-- close content main div -->    
    Line 194     http://kriesi.at/themes/enfold-startup/
    
    </p>
    </div></div></div><!-- close content main div -->
    Line 182     http://kriesi.at/themes/enfold-hotel/
    
    </p>
    </div></div></div><!-- close content main div -->
    Line 166     http://kriesi.at/themes/enfold-spa/
    in reply to: Mobile menu effect #699888

    it seems to be important to set the translate rules to important:

    .show_mobile_menu #mobile-advanced{
    -webkit-transform: 	translate(0, 100%)!important;
    -moz-transform: 	translate(0, 100%)!important;
    -ms-transform: 		translate(0, 100%)!important;
    transform: 		translate(0, 100%)!important;
    }

    the Rest – you have to play a bit (f.e. to position the open and close buttons.

    in reply to: Enfold Kontaktformular und Impressum #699416

    hm ich habe auch El Capitan hier drauf und jedenfalls bei einer Installation die ich gerade testete, sehe ich dass verschickt wird.

    in reply to: Enfold Kontaktformular und Impressum #699385

    Lege ein neues Menu an. Dashboard/Designs/ Menus –
    Unten gibt es Bedingungen – da kannst du “Enfold Child Footer Menu” auswählen (wenn du kein Child-Theme installiert hast steht da nur Enfold Footer Menu)

    Safari normal im Mac OSX ? oder ipad / ipod
    Meinst Du – nicht versendet oder kommt nicht an?

    • This reply was modified 9 years ago by Guenni007.

    what does this mean:

    fixed_frame = $('.av-frame-top').length ? $('.av-frame-top').height() : 0,

    is it a shortend if clause ( i can not find the declaration of “?”) in a jquery clause.
    $('.av-frame-top').length means the amount of .av-frame-top : so if there is one or not

    if there is one .av-frame-top fixed_frame = $(‘.av-frame-top’).height()
    if there is no .av-frame-top fixed_frame = 0

    Edit Ok i found something about a ternary operator
    (condition) ? (if_true) : (if_false)

    but i can not understand why it should work for foveaworks – and not for me.

    it works here on my iphone – but i thought you like to have it only for landscape.

    did you use it with the media querie ? – edit – yes i see it.

    try it with:

    @media only screen and (min-device-width : 375px)  and (max-device-width : 667px)  and (orientation : landscape) {
    
    }

    the min-device-width is a bit more specific to device option than the code above

    you have to play a bit with the values : see here the device values: http://stephen.io/mediaqueries/

    why did you use the custom.css ?
    on the majority of all cases the quick css will do the job too!

    if the code above works for you only insert the .home class ( you see just behind #top : #top.home ) that is the specific code for homepage.

    if you only wants to have it for landscape see mediaquerie above

    aha : there comes a class with small screens:

    @media only screen and (min-width: 360px) and (max-width: 767px)  and (orientation: landscape) {
    .responsive #top.home .no_margin.av_one_third {
        width: 33% !important;
    }
    }

    if you take the code globaly :

    .responsive #top.home .no_margin.av_one_third {
        width: 33% !important;
    }

    it works ! you have to find the settings for your landscape option – try to insert that code first and see if it works globaly for your homepage

    can you please try this :

    @media only screen and (min-width: 360px) and (max-width: 767px)  and (orientation: landscape) {
    #top.home .no_margin.av_one_third {
        width: 33% !important;
    }
    }

    you have to play yourself with these values a bit. i can not simulate it via Firebug or something like this for iphone or ipad – you have to set the rule first and than we will see.

    if you want it globaly get rid of the orientation: landscape
    the min-width should be corrected and the max-width perhaps if you like to set rules for tablets too.

    • This reply was modified 9 years ago by Guenni007.
    in reply to: Validations #698630

    on every enfold page i disable the autop function of wordpress this closing p-tag is gone.
    without that little fault (and it is not a fault of enfold i think – Enfold Pages are html5 valide

    in reply to: Validations #698622

    well that is not so important – but since it exists now an official w3c html5 validator i’m nosy about enfold and the results.
    They only have two “faults” and a lot of advices concerning to role setting (header, footer, navigation do not need the role attribut etc.)
    The link i mentioned above and some closing p tags without opening one.
    for example on enfold theme demo page line 322

    why not a link for us? you mean this one here? : http://kriesi.at/themes/enfold/blog/blog-single-author-full/

    the version i had was the latest and the latest Version of WP too.
    see here the result ( if i take the -fixed_frame it is solved for small screens when fixed-frame is gone) if there is the fixed-frame active the fixed submenu goes to absolute positioning. ??

    (if i take the code as described with “+fixed_frame” i got double margins)

    http://webers-testseite.de/kokon/

    and this is not ” fixed fullwidth menu ” my issue and i thought yours also because in your first thread you are talking about fixed submenu.

    in reply to: burger menu not full screen and on the right side #697988

    Thanks !

    :lol can’t see the wood for trees

    looks ok. http://webers-testseite.de/elegant

    in reply to: Mega Menu effect #697987

    :lol can’t see the wood for trees

    looks ok. http://webers-testseite.de/elegant

    This could not be the whole solution Ismael.
    First of all on top you mean under bordermod… replace the line with the other? or do you realy mean add the new line – no – this will end in two fixed_frame lines.

    i got now:

    bordermod	= html.is('.html_minimal_header') ? 0 : 1,
    fixed_frame	= $('.av-frame-top').length ? $('.av-frame-top').height() : 0,
    calc_margin	= function()

    and on line 1420ff

    if(scrolled + modifier > top_pos)
    {
    	if(!fixed)
    	{
    		this.css({top: modifier - bordermod + fixed_frame, position: 'fixed'}); fixed = true
    	}
    }

    look here : with “+ fixed_frame” i got a double distance
    if i change it to “- fixed_frame” the solution is good to small screens when fixed-frame is gone but on wide screens the submenu is not fixed !

    see private content

    • This reply was modified 9 years ago by Guenni007.
    in reply to: Full Width Slider Caption Animation #697218

    it seem to be that on fading the slides the caption-title will allways comes from top and the caption-description from bottom.
    This will be nice to have the oportunitiy to set this effect – even for “sliding” Slides

    in reply to: Google jquery loading #696919

    thanks – ok

    in reply to: Mega Menu effect #696809
    in reply to: Move content over a slider like a "curtain" #696175

    yes you are right on that. But you have to be aware of that issue. If you only prove it via http://ipadpeek.com/ you might be mislead that everything is ok.
    The real devices shows the bug – and it is very important to solve this – more and more of my customers only surf via ipad or iphone.

    in reply to: Move content over a slider like a "curtain" #696140

    no one of the online simulators shows the result you mention it.
    Only the real devices shows that – so it is very hard to find the solution.
    Even Safari on my Mac with Developer tools does not show the real thing ( you can switch via Developer/User Agent to ipad/iphon )

    It looks like it is ignoring some height or width rules given f.e. in vw or vh units. Strange

    in reply to: Move content over a slider like a "curtain" #696078

    yes but i did not found a solution for both – footer curtain and slider :
    here ist the solution for slider alone:

    .avia-section, .av-layout-grid-container, .main_color {
        z-index: 0 !important;
    }
    .avia-fullscreen-slider .avia-slideshow-inner {
        position: fixed;
    }
    .avia-fullscreen-slider .avia-slideshow[data-image_attachment=fixed] .avia-slideshow-inner,
    .avia-fullscreen-slider .avia-slideshow[data-image_attachment=fixed] > ul > li {
     transform: none !important;
    }

    the variation of code above was that the slideshow-inner has to be set on fixed.
    but that is than the reason for disturbing the footer solution i gave. The fullscreen slider is 100vh so on footer position this is over the footer !

    see here on firefox the result for stand alone: http://webers-testseite.de/elegant/fullscreen-slider/

    in reply to: Scroll down arrow #695259

    in quick css:

    #top .scroll-down-link { 
    color: #88bbc8 
    }

    maybe an important is necessary

    by the way if you are looking for a nearby Proxima Nova or Gotham have a look to Montserrat Google Font

    The G is a bit different and the M

    well you only have woff2 and woff Files – my advice is to create all the webfont files (woff, woff2, eot, svg, ttf)

    i don’t know if it is necessary but with these fonts i have a positive loading of the gotham font package (created from gotham regular otf via Fontsquirell)

    in reply to: large gallery loading badly. #694949

    you can see the link in screenshot: http://www.louisadettmerweddingphotography.co.uk/portfolio-item/1-orangery/

    btw. it is a good advice to not show all of the images but to paginate them ( but he did that)

    in reply to: Layer Slider Background Image Not displaying Correctly #694946

    hi Rikard – : http://taks.org.uk/test/

    in reply to: Site title in front of logo #694943

    by the way as you can see it works with shrinking option too!

    and if you want to get rid of the top border when header is scrolled :

    .header-scrolled #header_main_alternate.container_wrap {
        border-top: medium none;
    }

    Your welcome!

    in reply to: Site title in front of logo #694939

    so here is my test on it: http://webers-testseite.de/elegant
    with logo right menu below options on enfold

    insert the WordPress Title (this is without WordPress Site Description) as above in your child-theme functions.php

    add_filter('avf_logo_subtext', 'kriesi_logo_addition');
    function kriesi_logo_addition($sub)
    {
      $sub .= "<span class='logo-title'>";
      $sub .= get_bloginfo( 'name', 'display' );
      $sub .= "</span>";
      return $sub;
    }

    This in Quick css :

    .logo, .logo a {
        overflow: visible;
        width: 100%
    }
    
    .logo-title {
        display: block;
        float: left;
        font-size: 36px;
        left: 0 !important;
        position: absolute;
    }
    
    .logo img {
        float: right;
    }
    
    #avia-menu.menu.av-main-nav {
        float: left;
        width: 100%;
    }
    
    @media only screen and (max-width: 767px) {
    .responsive .logo img {
        float: left !important;
    max-width: 80%
    }
    .responsive #top .logo {
        width: 100%;
    }
    .logo-title {
        text-align: center;
        top: 80px;
        width: 100%;
    }
    }

    you can play with these values ( font-family is not defined here, font-size etc.
    For Small Screens ( try it on my testsite) i decided to do the Title under the top logo in the center of the screen

Viewing 30 posts - 10,441 through 10,470 (of 11,742 total)