Forum Replies Created

Viewing 30 posts - 8,701 through 8,730 (of 11,692 total)
  • Author
    Posts
  • i can not reconstruct that error.
    And mike if it is the following section – why is it shifted and not in line with the section?

    i do often see such behavior if customers try to have a repeating supposedly seamless background – But which has a certain small difference in brightness

    yes but wihtout the link there is no way to see what has been happend

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

    ist es denn überhaupt sinnvoll die Cache-Ordner zu kompieren?
    Alle mir bekannten professionellen Backup-Tools bieten genau diese Option immer mit an, die Temp und Cache-Ordner zu excludieren.

    Nun zum Grund : hast du im Cache-Ordner eventuell Dateien, die Umlaute beherbergen? Manchmal sogar sehr ungewöhnliche Zeichen, weill Umlaute benutzt wurden? Schau mal nach. Falls Ja – melde Dich bitte nochmal.

    in reply to: Google maps is not working #925424

    Yes – but i guess the tip seems to be obsolete. On former times this happens reproduceable each time that without the space the asterix was lost. But i see that they corrected that behavior now.

    in reply to: Where do I edit Mobile Menu Subtitles? #925294

    the selector for those will be:

    #av-burger-menu-ul .avia-menu-subtext {
      here your css rules for it !   - maybe an !important will be necessary
    }
    in reply to: Where do I edit Mobile Menu Subtitles? #925290

    on your menu screen – you have at the top right position a fly out called “Screen Options” – click on it – there you have the choice to set up the Menu-Settings Options. Mark “Description” – (https://kriesi.at/support/topic/how-do-you-add-a-portfolio-item-to-the-main-navigation-bar/#post-924489)
    if you go no on your Menu – Points you can press that little arrow on the right side. There you have now a description input field.

    click to enlarge:

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

    i would have done that via Multi Site Install. One WordPress install – one enfold with activation of Enfold over all “Subsites”
    Than you can set for each a color-scheme and for each different css. But – you have to be a bit familiar of doing that – and after having existing content it is a hard work to transfer it – it is possible but laborious

    Now : if only these three Sites from the launch page are different – it would be easier to define a whole set of css for those pages
    (bollywood-bar; East-India and indian stories)

    in reply to: Google maps is not working #924872

    how is your page you have reigstered to inserted.

    you don’t need to have http or https on that and the little astereix at the end has to be there to be valid for the whole site !

    on that little asterix at the end – it often disappears on input!
    just place behind that asterix a space ! on input and press return. – now the asterix is saved !

    in reply to: How to change the colour of just 1 text input area #924862

    once again – i think it is better to alway have the scripts only on those pages where it is needed –
    so take this one only for your home page – so we can make the if clause with is_home()
    if it is a special page you can have is_page(123) etc
    allthough it is just a very tiny script – it does not have to be loaded on page where it is not needed

    function change_placehoder_txt() {
    if( is_home( ) ) {
    ?>
    <script type="text/javascript">
      jQuery('#avia_1_1').attr('placeholder', '  Enter Reg*');
     </script>
    <?php
    }
    }
    add_action('wp_footer', 'change_placehoder_txt');

    Or do you mean that little shadow ( by the way it is an inset shadow – should not be outside the box !)

    in reply to: Contact Forms not sending. Not in spam or inbox #924611
    in reply to: Integration von Newsletter2go #924527

    leider gibts ja keine PN – hab dir mal was ins Private Content geschrieben

    this image shows you the menu and on top right there is that slide out options dialog. So you might not see it immediately. Just press on “Screen Options” to show – then mark your desired choices

    ah ok – i see the thing you are trying to get. But for that you don’t need the slider in a color section.
    you have choosen the boxed layout ! and have a body background-color defined. ( guess it is something like: #F3F4F4)
    Go and set for your content the same background-color globaly in Enfold Options.

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

    if you are on layerslider Options page you got a shortcode for that slider
    you can insert thea shortcode wherever you like (as here in a 1/1 container – but all others are possible too)

    but regard the settings of the slider – if it is a fullwidth slider it does not show in a 1/1 container distance it is thant full-width.

    So here is a working example of a adv. layerslider form template page of kreaturea media. – i only changed it to responsive design. and put a text block on top of the color-section : https://webers-testseite.de/weber/advanced-layerslider-in-color-section/

    in reply to: Gutenberg WordPress 5.0 #924470

    i tested a few minutes ago the gutenberg plugin.
    it runs – but i do not see the benefit of that. The ALB of Enfold is so userfriendly that I can not see the reason for using the plugin.

    (if debug mode is enabled on Enfold – this block will be seen as .edit-post-layout__editor which we can set to display none.)

    it may be a great benefit for those Themes which do not have such layout tools like Enfold ( or other visual layout builders ).

    in reply to: How to change the colour of just 1 text input area #924428

    :lol btw : you have to change the reg plate after brexit ;)

    • This reply was modified 7 years, 7 months ago by Guenni007.
    in reply to: How to change the colour of just 1 text input area #924420

    well on cf7 this is possible by setting up the form. and use this shortcode

    [text your-name placeholder "Your name here"]

    here you can try to influence via Child-theme functions.php:

    function change_placeholder_txt() {
    ?>
    <script type="text/javascript">
    	jQuery('#avia_1_1').attr('placeholder', 'Reg');
     </script>
    <?php
    }
    add_action('wp_footer', 'change_placeholder_txt');

    it works with the image too: but i would take the png without the yello background on the right in the image – just the GB only

    if you like to have a bit distance on placeholder text just add some spaces – and to be more specific your selector can be more precise

    function change_placeholder_txt() {
    ?>
    <script type="text/javascript">
    	jQuery('#top.home #avia_1_1').attr('placeholder', '  Enter Reg');
     </script>
    <?php
    }
    add_action('wp_footer', 'change_placeholder_txt');

    see results here (with name as placeholder and image): https://webers-testseite.de/kontakt/

    PS: on Safari it works too – but the autofill function does not find an input if placeholder text is different to the standard input name

    • This reply was modified 7 years, 7 months ago by Guenni007.
    in reply to: How to change the colour of just 1 text input area #922856

    this will work too:

    #top.home .main_color input#avia_1_1[type="text"] {
        background-color: #ffcd26 !important;
        border-color: gray;
        color: blue;
        background-image: url(/wp-content/uploads/2018/02/favi.png);
        background-size: contain;
        background-repeat: no-repeat;
        padding-left: 50px;
    }

    don’t know why boardsoft did that auto correction

    in reply to: How to change the colour of just 1 text input area #922849

    complete the code above with something like this:

    #top.home .main_color input#avia_1_1[type="text"] {
        background-color: #ffcd26 !important;
        border-color: gray;
        color: blue;
        background-image: url(https://www.wesellanyautopart.com/wp-content/uploads/2018/02/favi.png);
        background-size: contain;
        background-repeat: no-repeat;
        padding-left: 50px;
    }

    can you please change the code to https without s – boardsoflt changes to https automatically ????

    WHY?

    • This reply was modified 7 years, 7 months ago by Guenni007.
    in reply to: H1 Tag inside Caption Title for Full Width Easy Slider #922843

    you mean – substitute h2 to h1 tags ?

    see here a workaround: https://webers-testseite.de/edited-enfold-alb-elements/#sliders
    these files are edited files of enfold 4.2.5 – i hope that there will be no changings in the meanwhile

    but i guess it is than neccessary to update the captions !

    in reply to: Contact Forms not sending. Not in spam or inbox #922414

    the thing has been happend on my webers-testseite.de
    so – the admin e-mail is the one i use allways on my pages. – So it has nothing to do with the website domain webers-testseite.de.
    maybe that is the reason why.
    on contact form 7 there was an input field for “from” and that had to be an e-Mail concerning to the website domain.
    For the reply they got an extra input field – that could be any e-mail you like. But it seems to be important that there is a congruency on “sending” e-mail account and domain. The CF7 Mails were allways delivered – the ALB Form not on that setup

    in reply to: Fullscreen background image #921375

    if you like to have allways the same background-image each page
    yes you have to find the page-id and set it as: (here is id: 211)

    .responsive body.page-id-211 {
        background-image: url(path-to-your-image);
    }

    from a screenshot it is hard to say what it is
    edit: by the way if you have a grid like
    1/2 1/2 and want to have on totally a 1/2 page filled – you have to put in on the right grid-cell a 1/1 container ;)

    did you try it with !important ?

    #team .av-special-heading-tag {
        text-transform: capitalize !important;
        font-weight: 300 !important;
    }

    or try ( this is three ids and one class)

    #top #wrap_all #team .av-special-heading-tag {
        text-transform: capitalize !important;
        font-weight: 300 !important;
    }

    have you a link for it?
    or make a screenshot of the whole tree please with the color-section

    sorry double post

    how about a screenshot of your ALB Layout – or a better description.
    You got one color-section – this color-section has the unique ID : team.
    All Headings in that Color-Section should be capitalized.

    And you tried already:

    #team .av-special-heading-tag {
        text-transform: capitalize;
        font-weight: 300;
    }
    in reply to: Enfold Showcase #920523

    who knows how to obtain that ? Even on Edge and IE11 ( bad but it works – fixed postitioning is nothing Microsoft can handle)
    with clip-path it will be not so simple but it works good – but not on Microsofts Explorers:
    https://webers-testseite.de/bernhard/

    Scroll a bit to see whats happening with scroll content over the header :lol

    By the way sometimes it is not synchronized ;) – well it is just an experiment

    • This reply was modified 7 years, 7 months ago by Guenni007.
    in reply to: White screen of death after 4.2.5 update! #920347

    there are a lot of shortcodes which are now in a subfolder (iconbox, iconlist, hr etc) i believe on non ftp update these will not be erased – maybe that causes the wsod.
    By the way the newest wordpress has an code debugger – which reduces the wsod on functions.php mismatches.
    On former time an invalid code or double function names will cause a wsod too. Now you got a warning.

    in reply to: Contact Forms not sending. Not in spam or inbox #920317

    hm strange behavior – if i choose the normal form color scheme – the message has been sent ???
    dark-transparent – : no sending – even to the wordpess admin e-Mail

    Edit: no – onetime it works – the other time not ??

    • This reply was modified 7 years, 7 months ago by Guenni007.
    in reply to: Contact Forms not sending. Not in spam or inbox #920309

    some hosters do not accept different adresses than the one set in general options of the wordpress install.
    With CF7 – i now there is a different handling – and that works almost without any additional code .
    i tried your code :

    add_filter('avf_form_from', 'avf_form_from_mod', 10, 3);
    function avf_form_from_mod($from, $new_post, $form_params) {
        $from = " (Email address hidden if logged out) ";
        return $from;
    }

    but than the short message isn’t displayed after sending

    edit : and it is not sending – even when i use the code here: Link

Viewing 30 posts - 8,701 through 8,730 (of 11,692 total)