Forum Replies Created

Viewing 30 posts - 10,681 through 10,710 (of 11,794 total)
  • Author
    Posts
  • in reply to: change diagonal section #686585

    a big problem with those diagonal settings is that settings bigger than 5deg could end in a different behavior on wide screens 27′ Mac Retina Display and more. you see trick what is used and what happends if you go from 5deg to 10deg

    • This reply was modified 9 years, 2 months ago by Guenni007.

    Hm – warum nicht die Suchfunktion nutzen – ismael gave this solution to us:

    add_filter('avf_logo','av_change_logo');
    function av_change_logo($logo)
    {
        if( is_page(21) ) {
    		$logo = "http://www.domain.com/wp-content/uploads/logoforpage21.jpg";  
    	} elseif ( is_page(22) ) {
    		$logo = "http://www.domain.com/wp-content/uploads/logoforpage22.jpg";  
    	} elseif ( is_page(23) )  {
    		$logo = "http://www.domain.com/wp-content/uploads/logoforpage23.jpg";  
    	}
    
        return $logo;
    }

    das läßt sich durch beliebig viele elseif bereichern, oder durch zB

    
    if ( is_singular( 'event' ) || is_search() || is_category() || is_page() && !is_page(1307) ||  is_singular( 'portfolio' )  ) …

    für ganze Bereiche definieren. Conditional Tags ist das Keyword
    wenn das ein Logo für mehrere Seiten benutzt werden soll kannst du auch ein Array definieren:

    is_page( array( 42, 54, 6 ) )

    PS : es wäre denke ich gut die verschiedenen Logos dann Größenmäßig zu synchronisieren

    in reply to: iframe in lightbox – links open in parent window #685801

    thanks – have a look at the link above !

    its easier as it supposed to be:
    i created that page in the iframe with blank template (no header, no footer etc.)
    on top of that page i put in per code alb element the following:
    <base target="_parent" />

    that made the trick !

    in reply to: Menu style: the 'burger icon' menu #685648

    my vote for that you have: https://kriesi.at/support/enfold-feature-requests/
    and make a request

    in reply to: Menu style: the 'burger icon' menu #685590

    btw. if you are using this elegant demo and have some extra pages/post not on the front-page you have to set the padding of
    .responsive #top #main – otherwise the content starts down the header

    in reply to: Menu style: the 'burger icon' menu #685583

    :lol :wink everything is code
    the only thing it is hard to get from a website is the php programming !
    As long as it is simple css and js you can get all out of the code infront of you!

    btw: i changed a bit the css – see test page – now it is a bit harmonic and without shifting positions

    • This reply was modified 9 years, 2 months ago by Guenni007.
    in reply to: Menu style: the 'burger icon' menu #685580

    as i said let the instruction of 480px on top go away:

    
    .main_menu { top: -20px !important}
    
    @media only screen and (max-width: 990px) {
    .js_active.html_burger_menu #avia-menu .av-burger-menu-main, .html_burger_menu #top #avia-menu .menu-item-search-dropdown {display: block}
    .main_menu .avia-menu, #header_main_alternate, .fallback_menu {display: block}
    .avia-menu.av_menu_icon_beside {
        margin-right: 10px;
        padding-right: 0;
        top: 0;
    }
    .responsive #header .main_menu .social_bookmarks { display: block}
    .responsive #top .logo {
        display: block;
        float: left;
        position: absolute;
    }
    div .logo {
        float: left;
    }
    .main_menu {
        position: absolute !important;
    }
    .responsive.html_header_top #header_main .social_bookmarks, .responsive.html_top_nav_header #top .social_bookmarks {
        margin-top: 45px;
        right: 0;
        width: auto;
        top: 0
    }
    #advanced_menu_toggle { 
    display: none !important; 
    }
    }
    
    @media only screen and (max-width: 480px) {
    .responsive #top #wrap_all #header_main .container {
        max-width: 95%;
        width: 95%;
    }
    .responsive .logo img {
        max-width: 200px !important;
        top: 15px;
    }
    .logo, .logo a {
        overflow: visible;
    }
    }
    
    

    you have to play a bit with positioning – that was a quickly shot solution

    in reply to: Menu style: the 'burger icon' menu #685570

    on that test page i did solve the mentioned above problem by making the logo smaller – but perhaps it is better to let those social bookmarks and hamburger-menu logo float left – and let it go under the logo

    @media only screen and (max-width: 480px) {
    .responsive #top #wrap_all #header_main .container {
        max-width: 95%;
        width: 95%;
    }
    .responsive .logo img {
        max-width: 200px !important;
        top: 15px;
    }
    .logo, .logo a {
        overflow: visible;
    }
    }
    in reply to: Menu style: the 'burger icon' menu #685557

    if you don’t like that downlimit remove it:

    @media only screen and (max-width: 990px) { …

    but you see here what happend in the case above: http://webers-testseite.de/elegant/

    if you deleted the 480px down limit – you have to say what happens to the new menu for small screens. Where do those icons go when logo + social icons + menu icon is bigger than the screen width?

    in reply to: Enfold takes 3 minutes + to load on Iphones #685555

    sorry i can’t see this – i’m a participant too. so you have to wait till mods came here and help you

    in reply to: Mega menu top level styling while menu is active #685445
    .header_color .main_menu ul:first-child li:hover.menu-item-top-level > a {
        color: #900 !important;
    text-transform: uppercase
    }

    and if you only want to have it for top level links with submenu:

    .header_color .main_menu ul:first-child li:hover.menu-item-has-children.menu-item-top-level > a {
        color: #900 !important;
    text-transform: uppercase
    }
    • This reply was modified 9 years, 2 months ago by Guenni007.
    in reply to: Enfold takes 3 minutes + to load on Iphones #685432

    the image on the page is less than 1MB

    here you go – i don’t see your site link (if there is one on private area) but 1MB jpg is for a web image gigantic.
    i use for fullwidth sliders or fullscreensliders images which are not bigger than 350kb ! if they had to be on good quality. The most of those fullwidth slider images are on my installations 250KB.
    You will be astonished that most of all images with high compression level are nearly the same quality on web as jpgs with less compression.

    Only images with big contrast edges need a bit more space

    btw: gprs, edge, umts, lte etc. what do you use for that ?

    • This reply was modified 9 years, 2 months ago by Guenni007.
    in reply to: Menu style: the 'burger icon' menu #685430

    try this – i decided to show the old mobile menu under 480px

    @media only screen and (min-width: 480px) and (max-width: 990px) {
    
    .js_active.html_burger_menu #avia-menu .av-burger-menu-main, .html_burger_menu #top #avia-menu .menu-item-search-dropdown {display: block}
    .main_menu .avia-menu, #header_main_alternate, .fallback_menu {display: block}
    .avia-menu.av_menu_icon_beside {
        margin-right: 5px;
        padding-right: 0;
        top: -20px;
    }
    
    .responsive #header .main_menu .social_bookmarks { display: block}
    
    .responsive #top .logo {
        display: block;
        float: left;
        position: absolute;
    }
    
    div .logo {
        float: left;
    }
    
    .main_menu {
        position: absolute !important;
    }
    
    .responsive.html_header_top #header_main .social_bookmarks, .responsive.html_top_nav_header #top .social_bookmarks {
        margin-top: 25px;
        right: 0;
        width: auto;
        top: 0
    }
    
    #advanced_menu_toggle { 
    display: none !important; 
    }
    }
    in reply to: Mega menu top level styling while menu is active #685409

    try this :

    .header_color .main_menu ul:first-child li a:hover {
        color: #900 !important;
    }

    and if you like to influence the active (current) state:

    .header_color .main_menu ul:first-child li.current-menu-item > a, .header_color .main_menu ul:first-child li.active-parent-item > a {
        text-transform: uppercase !important;
    }
    in reply to: Mega menu top level styling while menu is active #685395

    well there is a class added to the opend mega-menu:

    .open-mega-a {
        text-transform: uppercase;
        color: #900 !important;
    }

    font-weight is bold per default i think

    in reply to: Enfold 3.8 – burger menu #685220

    Oh wow – what a next step ! Great demo that crative studio !

    in reply to: sliding background on color section #685214

    for the responsive case it will be a good advice to setup some media-querry instructions what happend to the 2nd column.

    f.e.

    
    @media only screen and (max-width: 990px) {
    .responsive .page-id-3220 #after_full_slider_1 {
        position: relative !important;
        top: 0 !important;
        width: 100%;
    }
    }
    in reply to: sliding background on color section #685202

    you see here the alb elements:

    the 1/2 column i set up to equal height and with no margin (neg margin here)

    if you only want the first columns after that slider only be affected on a specific page you have to set up f.e. a custom class or do it like me with the page-id:

    .page-id-3220 #after_full_slider_1 {
        position: absolute;
        top: 150px;
        width: 100%;
    }

    Results here: http://webers-testseite.de/ikom/full-slider-with-content/

    in reply to: sliding background on color section #685074

    perhaps you can make the trick by having on top a fullwidth slider and then after that a 1/1 container.
    After that you can give the 1/1 container a transparent background and a negative margin

    see here: http://webers-testseite.de/ikom/full-slider-with-content/

    in reply to: Disable fly in animation for Masonry Gallery #685041

    i cannot see the real site – because i’m a participant as you are here. This masonry is a gallery and not a masonry blog !

    try this instead :

    .avia_desktop.avia_transform3d .av-masonry-entry.av-masonry-item-loaded .av-inner-masonry {
        -webkit-animation: none !important;
        animation: none !important;
    }
    
    .av-masonry-entry {
    opacity: 1 !important;
    visibility: visible !important;
    }
    • This reply was modified 9 years, 2 months ago by Guenni007.
    in reply to: With BWP Minify, images are not loading #684573

    i can not confirm the “slowness of your site” even the images seems to be in a correct size and not oversized!
    The only thing i don’t like is your “footer only navigation” on page with big content – you have to scroll endlessly to come to the next site !

    Me as a visitor – i’m lost than for your site !

    in reply to: pages in footer #684568

    you can try this plugin here: https://de.wordpress.org/plugins/intuitive-custom-post-order/
    on activating you can drag and drop post/page/portfolio/ etc order by drag & drop in the wordpress dashboard.
    On Editing the plugin Options you can choose which post/page types you want to order by that method.
    Those entries which are on the top comes first.
    on blog elements you like to have a different solution – but on pages this is a nice and easy way.

    in reply to: Disable fly in animation for Masonry Gallery #684564

    i don’t know if you get rid of the one by one appear – the animation and fly in you can get rid of:

    .avia_sortable_active .isotope {
        transition: none  !important;
    }
    .avia_desktop.avia_transform3d .av-masonry-entry.av-masonry-item-loaded .av-inner-masonry {
        animation: none !important
    }
    .av-masonry-image-container, .av-inner-masonry-content, .av-masonry-pagination {
        transition: none  !important;
    }
    .avia_desktop.avia_transform3d .av-masonry-entry {
        perspective: none !important;
    }

    this is enfold embeded contact form – or a third party contact form?

    the reason why i’m asking is that contact form 7 changes a bit the way the setup has to be for working well!

    in reply to: Masonry Gallery order is reversed; images not draggable #684554

    well -this is an image gallery on masonry?
    Is the original sequence lost totaly? or does only a few entries are in a different sort order?

    Because it seem that you have choosen the perfect automatic masonry. Images which are more than 2:1 bigger in width or heights shown in that manner. I don’t know what influences the order but if you try to order it in that alb element again in your prefered manner – this is without effect?

    in reply to: Mega Menu effect #684455

    thanks – works great – only thing is i will add a transition that menu appearance and darken willl be synchronized –

    Thanks a lot !

    Edit : allthough i put in:

    			mouseover: function() {
    				bg.stop().delay(500).fadeIn(100);
    			},

    it looks a bit strange – but these means to split hairs here.

    the clou was that you put in the container in the wrap_all – i dont know that mega-parent option and – that made the trick possible ! ?

    • This reply was modified 9 years, 2 months ago by Guenni007.
    in reply to: 404 entypo-fontello.woff #683675

    maybe it is concerning to that cors problematic !

    try it: http://kriesi.at/documentation/enfold/enable-cors/

    in reply to: Retina pictures for color-section background #683037

    the most retina images have a precise nomenklatura:

    small resolution: dream.jpg (f.e. 200px x 200px )
    retina resolution: (Email address hidden if logged out) ( from the example above: 400px x 400px )

    but i think you have to say wordpress that it has to use those retina images – i don’t think that it works by default –
    So maybe there are some plugins doing that job or the team here has an idea about implementing those @2x – Images

    maybe this could help you. it is a serverside solution – so performance is good i think: Link

    Or easier : look for a plugin retina

    by the way – do you realy believe that on that extrem low-key image someone realises the difference?

    in reply to: Responsive background image in color section #682083

    oh sorry i see above that i have used one time the calc instruction. This is not necessary. Just use hight: 66.7vw – and so on.

    in reply to: third party google map plugin #681818

    thanks ismael – i will test it soon.

Viewing 30 posts - 10,681 through 10,710 (of 11,794 total)