Forum Replies Created

Viewing 30 posts - 10,441 through 10,470 (of 10,649 total)
  • Author
    Posts
  • in reply to: WPML and custom css #428180

    i thougt he did not copy the whole quick css rules to the other language.
    Sorry my fault if i misunderstood the problem

    in reply to: Image Above Header #428171

    it is in most cases a good advice to use a child theme.
    Because sometimes changings only can made by putting something into the source code.
    (i guess this was made by Yigit)
    A child theme gives you the opportunity to do it by hooks f.e. by editing the child-theme functions.php .
    If there is no child-theme the changings in source code will be overwritten by updating the theme. (The custom css in the options dialog is not touched by upgrading because the files are in the wordpress folder /wp-content/uploads/dynamic_avia (outside of the themes folder)

    PS : very often many people (me to because i allways do ftp manual updates) like to have as folder owner the ftp user. By default the filepermissions of these files in dynamic_avia are 640 so sometimes the custom css rules wont work. I put filepermissions to 660.
    Or you can leave the ownership to wp user and 640

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

    by the way : for small screenwidth it might be nice to get rid of the fifth ! (the tag for that might be media queries)

    For example: under 580px a one column look

    @media only screen and (max-width: 580px){
    .flex_column.av_one_fifth {
        float: none;
        width: 95%;
        margin: 0;
    }
    }

    or you only change to a two column look:

    @media only screen and (max-width: 580px){
    .flex_column.av_one_fifth {
    div .av_one_fifth {
        margin-left: 6%;
        width: 44%;
    }
    }

    i thought the socket was no problem he is looking for the footer:

    #footer .container {
        max-width: 100% !important;
    }
    in reply to: Image Above Header #427492

    by the way it might be very difficult to obtain your request with a shrinking header on scrolling down.

    but nevertheless i have to make a big compliment to the crew which tries to help, allthough your questioning does not go with good manners.

    in reply to: WPML and custom css #427476

    isn’t it so, that this is not a bug but a feature.
    Each language has its own custom.css and i guess all Enfold Options are too language specific.
    On my Dashboard you can see at the left Enfold Child (DE) and if i turn to EN this will change too.

    This is indeed a nice feature because you can give the translation a new look. You can even change e.g. the logo position. Or the logo itself.
    etc. pp.

    • This reply was modified 9 years, 5 months ago by Guenni007.
    in reply to: Advanced Styling funktioniert nicht #421803

    btw i recognized in the last time that the folder in the wp-content/uploads/ “dynamic_avia” has the wrong permissions – espacially the enfold.css inside. so try to look to this folder (btw. if you are working with a child theme there is a enfold_child.css which might be writeable !!
    Otherwise no Changings will have an effect.

    Maybe it is a matter of Ownership too. I often change the ownership of a whole wordpress installation to ftp on my Hosting-Backend.
    and i guess it might be for the folder “dynamic_avia” in that case to web user (wp…)

    edit: oh ismael – your a little faster

    so solution could be to change for the folder the file ownership back to wp – or to set the filepermission of enfold.css (enfold_child.css) to 770

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

    i got these behaviour on chrome too.
    stuttering not as in firefox fluently.

    can you give us a link to see what happens?

    in reply to: alphabetic post pagination #408183

    Did you get any post (not page) (portfolio will work too – because it is a special post) ?
    My swedish is not good enough :lol: to see this

    in reply to: alphabetic post pagination #406303

    no this plugin above sort the post title of all (or a certain) category to the beginning letter of title – you can click f.e. to B and every Post is listet than which title begins with the letter B

    you can see it here:
    http://webers-testseite.de/enf02/category/allgemein/?ap=b

    but you want that page 1 of a post-list is A, and page 2 is B etc ?

    in reply to: alphabetic post pagination #405781

    perhaps this could help: https://wordpress.org/plugins/alphabetic-pagination/

    edit: no this is something different – sorry – sounds right

    • This reply was modified 9 years, 7 months ago by Guenni007.
    in reply to: scroll top link beneath 479px #404384

    the only thing is that i recognized the different behaviour on my iphone when changing from landscape to portrait.

    on iphone the landscape orientation : no up link
    on portrait : you can see the top-link-button ( because screenwidth is lower than 479px – so it is ok too)
    but on portrait the tapping of the statusbar works too – so i did not see the need for a different handling of it,
    and you are not using by general

    @media only screen and (max-width: 767px) {
    .responsive #scroll-top-link{display: none;} 
    }
    in reply to: videobackground on layerslider #404373

    On Method 1 ( one background video for the whole slider – every slide with the same background video )
    There you set up the video background on the color section options.
    And set the video hight to custom pixel value (in my case because the transparent slideshow has a hight of 470px – i choosed that one)

    on Method 2 ( each slide of the advanced layer slider has its own videobackground)
    you set up your layerslider like you want. The videobackground layer has to be the lowest layer (the one on top is the lowest Layer)
    On embedding the video the plugin put first the real dimensions of your video – but on changing it to 100% each (width and hights) it will than fit to your slideshow. It is best that every transition of the videobackground layer is set to nothing and on Styles there are no margins or paddings set.

    • This reply was modified 9 years, 7 months ago by Guenni007.
    in reply to: scroll top link beneath 479px #403276

    http://kriesi.at/themes/enfold/
    :lol:
    i can see the media querie rules in the enfold css styles – and these are set to display=none in between 480px and 767px
    On lower vallues than 479px the scroll-top-link button is visible ? So my question was not how to change it – but what was the reason for that behaviour. Is the tapping statusbar not possible underneath that value ?

    in reply to: updating from another theme #397473

    first switch the portfolio entries from old theme to posts.
    Then i would try to switch to enfold and after that to convert the posts (former portfolios) to Enfold Portfolios.

    but please use it only in a test environment

    in reply to: registering a custom post type #393589

    and by the way if you want to activate advanced layout builder for your custom post type you can do it similar to post in child-theme functions.php:

    add_filter('avf_builder_boxes','enable_boxes_on_posts');
    function enable_boxes_on_posts($boxes) {
    $boxes[] = array( 'title' =>__('Avia Layout Builder','avia_framework' ), 'id'=>'avia_builder', 'page'=>array('page','post', 'portfolio'), 'context'=>'normal', 'expandable'=>true );
    $boxes[] = array( 'title' =>__('Layout','avia_framework' ), 'id'=>'layout', 'page'=>array('page','post', 'portfolio'), 'context'=>'side', 'priority'=>'low');
    $boxes[] = array( 'title' =>__('Additional Portfolio Settings','avia_framework' ), 'id'=>'preview', 'page'=>array('page','post','portfolio'), 'context'=>'normal', 'priority'=>'high' );
      return $boxes;
    }
    in reply to: Pre-made Enfold child theme #393585

    upload it and activate it on dashboard
    in Enfold Child Theme Options it might be necessary to goto Import Data – the button at top “Import Parenttheme Settings”

    I think a Child Theme is a good advice because if you have to change something in your Theme Code it will not be lost by updating the Parent Theme.
    A lot of changings here on Board Support work via child-theme functions.php (first of all it is an empty functions.php in the child-theme folder)
    f.e. activating the custom.css on template builder elements
    add_theme_support('avia_template_builder_custom_css');

    or to show in lightbox the full-size image and not the large one:

    add_filter('avf_avia_builder_masonry_lightbox_img_size', 'avia_change_gallery_thumbnail_link', 10, 1);
    function avia_change_gallery_thumbnail_link($size)
    {
        return "full";
    }

    etc pp. the support is full of such changings.

    in reply to: Vollbildslider #392957

    might be a problem of javascript –
    at my installation the fullscreen slider works well. I guess screenhight will be set by a javascript and this is enormous at your slider (7950px).
    Your top button doesn’t work too – this is also script related – so try to check this first.

    in reply to: Unlink Logo? #388254

    Try this:

    #top .logo, #top .logo a {
        pointer-events: none;
    }
    in reply to: Postslider and Options #386824

    so this is a translation fault? So point 3 in my list is “Only title” and the last point on the list is in German : Weder Titel noch Textausschnitt
    “neither title nor excerpt”

    Thanks – Can be closed now

    in reply to: LayerSlider Problem #384297

    i had some problems with layerslider and bwp minify – do you use this plugin too.
    i solved it by excluding the layerslider scripts from minify.

    in reply to: Anchor in Pages without Farb-Sektion #384295

    hm – also ich denke ich kann mit dir deutsch reden:

    hier habe ich das mal auf einer Testseite gemacht:

    http://www.guenterweber.com/entwurf/wp01/beispiel-seite/#anker

    ich setzte vor das Bild einen Textblock, den ich nur im Textmodus nicht im visuellen Modus mit dem div füllte.

    in reply to: Anchor in Pages without Farb-Sektion #383646

    the code block in front of it must work
    <div id=”referenzen”></div>
    this might work

    and how do you link to the anchor?

    site-url/#referenzen

    but you can also use a text block with that div in it

    in reply to: Boxed Layout Shadow #382985

    i do only know box-shadow with 4 inputs
    x-direction / y-direction / blur / color
    so for what is the 0 0 5px 3px #888888

    in reply to: Update to 3.05 and Masonry #382911

    i do my update always this manual way by deleting the whole folder (enfold) and upload the new one!
    so i really don’t know why there is a mess up

    believe it or not : i didn’t do anything (only one little plugin update) since yesterday. Today it works!

    so can be closed now

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

    But this will be hard to visualize if you haven’t for example a boxed layout and a background defined.

    in reply to: Update to 3.05 and Masonry #382359

    so here a text not private. On a new page it works well. But on an existing page ( allthough i flush cache on bwp minify and emptied the cache on wp super cache) it doesn’t work in different coloums than 2 ??
    No idea why this happens

    in reply to: Enhancing the quality of a picture #380714

    buy Photoshop :lol:

    The Images are as sharp as you uploaded it. If your Images are to small for a bigger presentation format than you have to upload better/bigger ones. But be carefull too big is not good for loading times.

    in reply to: Erweiterter Layer Slider auf allen Seiten anzeigen #379427

    du hast wahrscheinlich in den Woocommerce Einstellungen die Seite für den Shop angegeben.
    Dann passiert das so wie bei Dir.
    Wenn du allerdings eine normale Seite anlegst, und im advanced Layout Editior bist kannst du den Layerslider einfügen, und oben ist noch ein Reiter zu den drei vorhandenen hinzugekommen. Nämlich Plugin Ergänzung.
    Da kannst du jetzt wie den Slider auch Produkt-Slider, Produkt-Raster und Produkt-Listen hinzufügen.

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