Forum Replies Created

Viewing 30 posts - 9,061 through 9,090 (of 11,892 total)
  • Author
    Posts
  • in reply to: Displace logo #912381

    i love it if link to live page is there:

    .logo img { max-height: 135% !important }
    .logo, .logo a { overflow: visible }
    
    @media only screen and ( max-width: 767px) {
    .responsive .logo img { max-height: 100px !important }
    .responsive #header_main .container { height: inherit !important }
    .responsive #top .logo { display: block }
    .responsive #top #wrap_all .container.av-logo-container { width: 90%; max-width: 90% }
    }


    maybe you give my solution a chance – it overlaps the header area even on responsive case –
    and shrinks as expected

    that overlapping looks nice but i think if you choose the header with “Let logo and menu position adapt to browser window” on header-behavior
    will be a bit nicer.

    • This reply was modified 7 years, 11 months ago by Guenni007.

    if these are all portfolio items you got on your page you can use this if clause:

    if(is_singular('portfolio')) { …

    ismael : it still tries to find results:

    and by the way : the code from https://kriesi.at/support/topic/results-from-search-box-and-search-results-page-are-different/#post-907648

    leads to a 404 page on my installation too

    • This reply was modified 7 years, 11 months ago by Guenni007.
    in reply to: Video self-hosted preview #912154

    And your own Server has less traffic ( Performance )

    in reply to: Video self-hosted preview #911983

    this is a nice tip – i put this into a text-block:

    
    [video src="/wp-content/uploads/meeting1035.mp4" loop="on" preload="auto" poster="/wp-content/uploads/screenshot-1.jpg"]

    and see here : https://webers-testseite.de/video/

    left shortcode from ismaels link above – second with image alb element (for lightbox open)

    in reply to: How to put a 3/4 column in the center of the page? #911981

    well if you don’t be satisfied with 1/5-3/5-1/5
    i would use this nevertheless ( with space between columns) and gave to the sourrounding container a custom class
    i choosed here : oneeighth-threefourth-oneeighth

    and than i would adjust the width of the fifth-columns:

    
    .oneeighth-threefourth-oneeighth .av_three_fifth { width: 9% }
    .oneeighth-threefourth-oneeighth .av_three_fifth { width: 75% }
    #top .oneeighth-threefourth-oneeighth .av-flex-placeholder { width: 3% }

    see here the difference on normal 5th columns and your desired aim

    https://webers-testseite.de/3-4th-on-center/

    in reply to: PNG Logo over Fullwidth Easy Slider #911967

    or you post a link to your page and we will have a look
    you can see here a working example: https://pirol-hifi.de/silbersand/
    but it would be better to adjust it for your page

    • This reply was modified 7 years, 11 months ago by Guenni007.

    is there a way to get rid of that ajax Search result suggestions

    i mean that it will not run !
    that will do it but it works in background.
    .ajax_search_response {display: none}

    in reply to: Diagonal Background Image #911846

    if you are a bit familiar with coordinate systems and polygones – you can try the clip-path method:
    the css code is on that test-page.

    https://webers-testseite.de/elegant/polygones/

    polygone coordinates starts at left top corner and goes clockwise around.
    to have y coordinates it will be nice to have relativ values concerning to screen width

    The starting page is made this way too: https://webers-testseite.de/elegant
    on scrolling you will see that is realy transparent

    • This reply was modified 7 years, 11 months ago by Guenni007.
    in reply to: Close mobile menu by clicking on active navigation item #911824

    ok for me here it can be closed

    in reply to: Is possible show a modal popup and also open a link ? #911714

    well it is a custom-class first.

    I have interpreted your desire to have a popup modal window on a link

    every link you can setup (in text-block or as alb element like a button) you can give a custom class to.
    so if there is a link like <a class="open-popup-link" href=" … </a> it will than open in a modal window.

    the code itself comes to child-theme functions.php

    i have that problem too on a flyout in which i placed a link to a film – allthough i add that ?iframe=true (or &iframe=true– depending if there is allready a ? ) it does not open in a popup window.

    in reply to: Is possible show a modal popup and also open a link ? #911579

    i noticed here on my end a code for functions.php of your child theme:
    i set the trigger-class to open-popup-link

    function popup_script() { 
    ?>
    <script type="text/javascript">
    jQuery(window).load(function(){
      jQuery('.open-popup-link').magnificPopup({
        type:'inline',
        midClick: true
      });
    });
    </script>
    <?php }
    
    add_action('wp_head', 'popup_script');
    in reply to: How to include google Jquery and JqueryUI #911270

    my script here: https://kriesi.at/support/topic/google-jquery-loading/#post-778242 has the advantage that if google resource could not be loaded – the local one will be loaded instead.
    Maybe you are on a local install and internet is offline or fails etc .pp

    in reply to: How to include google Jquery and JqueryUI #911269

    here is an interesting discussion on that – and why you better don’t do that.
    https://kriesi.at/support/topic/google-jquery-loading/
    with my code here https://kriesi.at/support/topic/google-jquery-loading/#post-778242

    i tested the performance aspect on gtmetrix and it was nearby zero effect

    on using latest version read this here: https://kriesi.at/support/topic/google-jquery-loading/#post-779335

    in reply to: Position Title Bar below first element #911251

    yes – but i want to have the opportunity to have the choice on page/post editior to set it to be hidden.
    (Thats is the following when i uncomment that transparency check on functions-enfold.php)
    the following will cause every header to have titlebar.

    https://kriesi.at/support/topic/position-title-bar-below-first-element/#post-910579

    the following does not overwrite:

    
    //deactivate title bar if header is transparent
    if(!empty($transparency)) $header['header_title_bar'] = 'hidden_title_bar';

    but even if it does : I want to preserve the choice on page/post editor to set it to be hidden
    if that code here would overwrite the transparency check every transparency header will have forced title-bar

    add_filter('avf_header_setting_filter', 'avf_header_setting_filter_mod', 9999, 1);
    function avf_header_setting_filter_mod($header) {
      if(!empty($transparency)) $header['header_title_bar'] = 'title_bar_breadcrumb';
      return $header;
    }

    so i thought if a rule would be more specific than the transparency check could overwrite the parent check.
    Something like if transparency setting is not empty && header_title_bar is not hidden_title_bar than $header header_title_bar should be the value what is set in meta.
    But i can not reach it.

    • This reply was modified 7 years, 11 months ago by Guenni007.
    in reply to: Close mobile menu by clicking on active navigation item #910995

    but on that: /ikom/#team-leitung it works (close hamburger on click ) only if the aim is a fake-id /ikom/#werte it doesn’t ?

    or do you believe if it is not in a subfolder the wordpress install it will work?
    Edit i tested the last on https://webers-testseite.de/#werte

    • This reply was modified 7 years, 11 months ago by Guenni007.
    in reply to: Position Title Bar below first element #910723

    yes i know that i can totaly copy the function to child-theme functions.php – but there must be a more elegant way to avoid that transparency check.

    in reply to: Make entire column clickable #910641

    if you have a link in that column with link this messes up your setting .But this makes no sence to have a link in a link !!!#
    So if there is a icon-box with link it looks the way you have it !!!
    i said that allready

    but indeed this method of Yigit is much easier than a custom alb

    in reply to: Position Title Bar below first element #910601

    no – to early

    it should be not set globaly

    i want to get rid of that check via child-theme
    the transparency does not allow breadcrump because:

    //deactivate title bar if header is transparent
    if(!empty($transparency)) $header['header_title_bar'] = 'hidden_title_bar';

    header_title_bar should get the selected value even for transparency is set.
    but i think there must be a child-theme solution to uncomment this

    in reply to: Position Title Bar below first element #910579

    Thanks – thats it – but i want transparency option is set on page/post editor
    So this will be enough:

    add_filter('avf_header_setting_filter', 'avf_header_setting_filter_mod', 9999, 1);
    function avf_header_setting_filter_mod($header) {
      $header['header_title_bar'] = 'title_bar_breadcrumb';
      return $header;
    }
    in reply to: Featured images in posts filtered by tags #910386

    i don’t know why your blog-meta is empty ?
    on default it should be there – but whole container is empty

    did you have some entries in functions.php of your child-theme
    f.e. a filter with avf_loop_index_blog_meta ?

    in reply to: Featured images in posts filtered by tags #910373

    maybe it is possible via a filter in functions.php of your child-theme:

    add_filter('avf_blog_style','avia_change_tag_blog_layout', 10, 2); 
    function avia_change_tag_blog_layout($layout, $context){
    if($context == 'tag') $layout = 'multi-big';
    return $layout;
    }

    edit : no – you did it with alb element and used tags there .
    just a moment

    in reply to: Contact 7 form issues #910349

    i see in your css:

    #top .main_color .input-text, #top .main_color input[type="text"], #top .main_color input[type="input"], #top .main_color input[type="password"], #top .main_color input[type="email"], #top .main_color input[type="number"], #top .main_color input[type="url"], #top .main_color input[type="tel"], #top .main_color input[type="search"], #top .main_color textarea, #top .main_color select {
        border-color: #363636;
        background-color: #111111;
        color: #8c8c8c;
    }

    and this is in your vip.entertainment.css ( don’t know where this comes from- it is no enfold including css file)
    or do you have renamed your child-theme?

    change the background-color to your #fff

    try to overwrite these rules on taking the contact-form 7 classes:

    .wpcf7-form .wpcf7-select, 
    .wpcf7-form .wpcf7-text {
    	background-color: #fff !important
    }
    in reply to: Is possible show a modal popup and also open a link ? #910304

    you have seen the publishing time?
    August 24, 2015 at 9:46 pm

    in reply to: Vollbild-Slider als Hintergrundbild #910239

    Maybe a plugin can give you this feature.
    But you have to make a lot of css instructions to have main etc to be at least semitransparent.

    Kriesi itself got a photo theme : flash – looks a bit of that you like to have : Link
    but it does not have that brilliant Avia Layout Builder integrated.

    so here is an old plugin – but it will do the job: https://wordpress.org/plugins/responsive-full-width-background-slider/

    if you like to have shrinking header or fixed header you must have no margin on top !
    if you can live with scrolling header : only a few settings are necessary!
    you can place your content on left or center with a few css rules.

    but: you see there must be some settings to do to have behind content a semi-transparent look and feel.

    see here: https://webers-testseite.de/bernhard/

    in reply to: having for custom post type "event" the avia-post-nav too #910225

    can be closed !

    in reply to: edited hr.php and newest Enfold #910224

    thanks ismael –
    the question was – if i had to do it – or if i can ignore that and the hr.css is loaded from parent file

    Edit: the child-theme hr.css has no influence – so it can be ignored

    can be closed

    in reply to: secondary menu and Logo on iPad #910173

    and on your logo – i would do it in the way to have two logos on top

    you know how you did place the search in secondary logo – and your nav seems to be a different nav than the enfold one.
    but here you can see how it works with two logos on top and a little shift of nav.

    i will send you the link

    in reply to: secondary menu and Logo on iPad #910160

    well – i can not simulate it on ipad and i don’t know where your break-point to mobile view is
    but i would get rid of that align center method and try to position it in this way:

    .av_secondary_right .sub_menu {
        padding-left: 0;
    }
    
    #avia2-menu {
        width: auto !important;
        position: relative !important;
        float: left !important;
        left: 50% !important;
        transform: translateX(-50%);
    }

    can you try this and have a look to your ipad if it works the way you want

    in reply to: Video self-hosted preview #910153

    on media libary the selfhosted videos clicked – open in that media preview window. the videos there seems to start playing a bit and stopp immediately. so there is a kind of screenshot of the first scenes to see.
    That would be nice to have on frontend too.

Viewing 30 posts - 9,061 through 9,090 (of 11,892 total)