Forum Replies Created

Viewing 30 posts - 10,561 through 10,590 (of 11,788 total)
  • Author
    Posts
  • in reply to: Video lightbox size – update needed #691210

    well i would do it via the scaler container:

    .mfp-iframe-scaler {
         width: 80vw;
         height: 45vw;
         left: 50%;
         top: 50%; 
         transform: translate(-50%, -55%) ! important;
         position: relative;
    }

    the vw is video-screen width ( if you got a 16:9 video – 80% of videoscreen-width results in nearly 45% of videoscreen-width for the height)

    • This reply was modified 9 years, 1 month ago by Guenni007.
    in reply to: Fixed "Curtain" Footer #691194

    and perhaps we should take instead of .height( ) the .outerHeight( )

    see Result here: Link

    btw: the footer background-color is a gradient – just a test – nothing i will realy work with.
    And diagonal backgrounds are just to see what happens realy ( landing page )

    • This reply was modified 9 years, 1 month ago by Guenni007.
    in reply to: I've submitted 4 tickets with no response to my knowledge #691184

    Sorry

    in reply to: I've submitted 4 tickets with no response to my knowledge #691182

    Well i guess you are not familiar with css coding?

    <center><font size=”6px” color=”black”>Get this <font color=”red”>Free CD</font> that will give you <br><br>
    a step-by-step proven process to <br><br>
    hire winners instead of wimps <br>

    <p style="text-align: center; font-size:6px; color:#000">Get this<span style="color:red"> Free CD</span> that will give your<br/><br/>
    a step-by-step proven process to <br/><br/>
    hire winners instead of wimps</p>

    Edit : sorry the word “hire” seems to be automatically linked to a page here on board

    you can take for p other tags like div or span

    btw : you realy want to display the font-size 6px ?

    • This reply was modified 9 years, 1 month ago by Guenni007.
    in reply to: How can I get this result? #691177

    done !

    on dashboard / appearance / menus – on top right of this window there is “Screen Options” push that little button.

    Now you can choose what the menu options dialog should look like
    under the “Show advanced menu properties” there are some interesting things f.e. you can give each list point an own class !
    And for those little things in hamburger-menu the “description” that is the point you are looking for
    check those things you like to have.

    then you only must toggle the menu list point at that little arrow

    • This reply was modified 9 years, 1 month ago by Guenni007.
    in reply to: Fixed "Curtain" Footer #691135

    still testing – but im on a good way i think

    hm – i don’t know if every section or grid etc got this class (container_wrap) if so we can do that:

    add_action('wp_footer', 'ava_custom_script');
    function ava_custom_script(){
    ?>
    <script type="text/javascript">
    (function($) {
     
        $(window).load(function() {
        	var socket = $('#socket'),
    			footer = $('#footer'),
    			spacerh = socket.height() + footer.height();
    
    			$('#main .container_wrap:nth-last-child(3)').css('padding-bottom', spacerh );
        });
    
        $(window).resize(function() {
        	var socket = $('#socket'),
    			footer = $('#footer'),
    			spacerh = socket.height() + footer.height();
    
    			$('#main .container_wrap:nth-last-child(3)').css('padding-bottom', spacerh );
        });
    
    })(jQuery);
    </script>
    <?php
    }

    and in quick css :

      #footer {	
          position: fixed;
          left: 0;
          width: 100%;
          z-index: 1;
          bottom: 58px
      }
    
      #socket {
          position: fixed;
          bottom: 0;
          left: 0;
          width: 100%;
          z-index: 1;
      }
    
    #footer-socket-spacer {
        clear: both;
        position: relative;
        width: 100%;
    }
    • This reply was modified 9 years, 1 month ago by Guenni007.
    in reply to: Fixed "Curtain" Footer #691118

    but there has to be in the function an option for window resize – because footer height changes with content. On small screens we got a growing footer height (with socket too- but not so often)

    It has to proof in time (dynamically) the height of socket and footer – how can we do that?
    The code above works if we actualize the window but does not react on window-resize

    • This reply was modified 9 years, 1 month ago by Guenni007.
    in reply to: Avia Post NAV with the same category #691112

    thats why i’m astonished – on my sites it works well ! (WP4.61 Enfold 3.8)

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

    by the way : for that page you use a fixed footer!
    i would not set the z-index to 0 – that is a bit confusing.
    isn’t it this way a bit looking better:

    
    #footer {
        background-color: rgba(87, 98, 112, 0.9);
        bottom: 58px;
        left: 0;
        position: fixed;
        width: 100%;
        z-index: 1;
    }

    how did you do that with the spacer ?

    in reply to: How can I get this result? #690985

    and by the way if this is the site with background image to go away i would like to get rid of that before 480px

    @media only screen and (max-width: 768px) {
    #service {
        background-image: none !important;
    }
    }
    in reply to: How can I get this result? #690983
    .home #av_section_1 .av-special-heading-tag span {
        background: #000 !important;
        color: #fff !important;
        padding: 0 15px;
    }

    the padding is not necessary but i think it looks better.

    in reply to: What is the difference? #690807

    this is a little plugin which could reset the wordpress ( and the database too) to default (like a clean install)
    If you have content – this is gone too

    in reply to: ID for each column in a table #690800

    Edit: ok if you are only changing vor that wp-content/uploads/dynamic-avia 777 is ok ! I did not follow your link and thought you did it for all files /folders so forget the rest here
    But 777 is too much.
    Go on reading how to set the correct file permissions.

    I think for the files itself it is 640 and for the folders 750
    but 644 and 755 seem to be ok too. For wp-config you should have 640 ( on normal Use)
    Sometimes if you install f.e. Caching tools – they want to insert some code to wp-config – this has to be allowed for that moment.
    only my uploads, upgrade and temp folders got a different permission.

    For example the quick css info goes to wp-content/uploads/dynamic-avia
    these files must have write permissions

    BTW sometimes (it depends on your hoster) the file-permissions are ok but the owner-ship is wrong.

    For my hoster f.e. i had to set the owndership to wp user (not ftp) and i have than the possibility to set the ftp-user react like a wp-user.
    Only that setting allows me to have automatic updates of wordpress. etc –

    ________________

    Security is a wide and complex field in wordpress.
    The wp-config.php is a very important file to secure so there are a lot of things you can do

    On apache Server you can use for that the htaccess file f.e.

    
    <files wp-config.php>
    order allow,deny
    deny from all
    </files>
    • This reply was modified 9 years, 1 month ago by Guenni007.
    in reply to: How can I get this result? #690779

    you see my example page above that it works !

    but without a link to your site this is only “divination” – from a screenshot it is nearly impossibel to say what code might help you

    My guess was – that on your screenshot there is a color-section with heading in it!
    There was a second line which should get a different background-color than the first line.

    So to make a selection possible these two lines must have a different source. To get one i inserted a span tag to the second line of the heading.

    • This reply was modified 9 years, 1 month ago by Guenni007.
    in reply to: Fullscreen slider problem #690724

    Aber das ist dann wohl eher das browser problem und nicht enfold zuzuschreiben.

    in reply to: ID for each column in a table #690714

    First of all – my code above was an example because you did not say what to change! btw: my code is not in your source code!

    .forsikring_priser .pricing-table-wrap:nth-child(1) li.avia-heading-row,
    .forsikring_priser .pricing-table-wrap:nth-child(1) li.avia-button-row a {
        background-color: #d04372;
    }
    
    .forsikring_priser .pricing-table-wrap:nth-child(3) li.avia-heading-row,
    .forsikring_priser .pricing-table-wrap:nth-child(3) li.avia-button-row a {
        background-color: #87c7ab;
    }

    for each column 1, 2, 3 see in nth-child(1)

    in reply to: Main Menu Parent Highlight while sub or child is selected #690702

    have a look here: https://kriesi.at/support/topic/mega-menu-top-level-styling-while-menu-is-active/

    for mega-menu this is a bit easier: (but you will not have mega-menu on that template)

    .open-mega-a {
        color: #0976ac !important;
    }

    but for your template i think this could be a good way:

    #avia-menu > li.menu-item.current-menu-item a, 
    #avia-menu > li.menu-item.active-parent-item a {
        background: #097ac0 ;
        padding-left: 10px;
    }
    #avia-menu > li.current-menu-item .avia-menu-text, 
    #avia-menu > li.active-parent-item .avia-menu-text {
        color: #fff !important;
    }
    
    #avia-menu > li.current-menu-item .avia-menu-subtext, 
    #avia-menu > li.active-parent-item .avia-menu-subtext {
        color: #efefef !important;
    }

    because the first level nav list points are allready bold there will be no big difference in selected or not

    • This reply was modified 9 years, 1 month ago by Guenni007.
    #top .scroll-down-link {
        color: #f00 !important
    }

    if you don’t want to change it for all give the section a custom class :

    #top .custom_class .scroll-down-link {
        color: #f00 !important
    }
    in reply to: How to remove a section background image only on smartphones? #690677

    That Image belongs to a color-section and on that demo page this color section got his own id so

    @media only screen and (max-width: 480px) {
    #service {
        background-image: none !important;
    }
    }

    play a bit with the 480px screenwidth
    If there is no ID make one ore give the color-section an own custom class

    • This reply was modified 9 years, 1 month ago by Guenni007.
    in reply to: Is there an element like the one you're using on your homepage? #690674

    No – i think there is no alb element for that but – everything concerning to this is in the source code of kriesies landing page.
    All css and all js – you only have to learn how to extract it – – by reading (search function (circles) will bring you alot of similar solution (and sometimes i believe the original code for those “principles” and “pricipel” are not so complicated)
    For me i respect his (Kriesis) will not to share it.

    in reply to: What is the difference? #690641

    is it a demo import 1/1 after a clean install?

    i can not believe after seeing your about page. there has to be something went wrong with the import.
    You can use wordpress reset ( be carefull – if it is a life site – and not a demo) to go back to a clean install – and reinstall the demo new.
    Wait till demo import stops.

    in reply to: Enfold Frontend still in English #690630

    Bitte schau doch mal hier zum nachlesen: https://kriesi.at/support/topic/enfold-de_de_formal/

    du wirst wahrscheinlich auch “Deutsch Sie” im WordPress eingestellt haben.
    Kriesi (Christian) ist dahingehend bereits informiert. Bei einem der nächsten minor Updates wird es wohl behoben sein.

    Ich half mir in dem ich via ftp im Enfold/lang Ordner die beiden de_DE Dateien umbenannte nach de_DE_formal
    also de_DE_formal.po und de_DE_formal.mo
    So bezeichnet nämlich auch WordPress deutsch seine Formalen Sprachfiles.
    Dann ist auch wieder das Backend deutsch. Und eventuell klapt es dann auch wieder mit Locotranlate.
    Kriesi hat es aber wie gesagt auf dem Plan als kleinen Bug.

    by the way – you have to be vimeo member to get rid of other links at the end – thats bad – because by this youtube is better video hoster than
    thats it: http://webers-testseite.de/ikom/full-slider-with-content/

    Check this forum for posts, you’ll find lots of the same question.

    Never trust a person who says trust me :lol:

    btw: if you like to have a bigger iframe size like in my example above:

    .mfp-iframe-scaler {
        height: 45vw;
        left: 50%;
        position: relative;
        transform: translate(-50%) !important;
        width: 80vw;
    }

    the height comes from the 16:9 ratio 80% of viewport widht results than in a height of 45%
    if you want to optimise it for that iframe you have to set up here a custom class

    • This reply was modified 9 years, 1 month ago by Guenni007.

    the lightbox solution

    you have an image placed and for the link option choose manually insert:
    this was the copied code from youtube site:

    <iframe width="1280" height="720" src="https://www.youtube-nocookie.com/embed/G0k3kHtyoqc?rel=0&showinfo=0" frameborder="0" allowfullscreen></iframe>

    you have to put in that manually link now:

    https://www.youtube-nocookie.com/embed/G0k3kHtyoqc?rel=0&showinfo=0" frameborder="0" allowfullscreen ?iframe=true

    i added for the lightbox option ?iframe=true

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

    • This reply was modified 9 years, 1 month ago by Guenni007.

    goto the youtube video and look to the share button – one button right there is the embed button open it
    now there is ( a bit hidden) another button with “more” – press it now you got the following image:

    there is a list what you can choose on options ( one is not listet – the autoplay function! code: ;autoplay=1 )

    copy the iframe embed code – without the width / height instructions

    this iframe embed code you can place in a code alb element !

    The only thing now is to set up the height/ width of the video
    soon more to come here :lol:

    edit: autoplay does not work in lightbox mode

    • This reply was modified 9 years, 1 month ago by Guenni007.
    in reply to: How can I get this result? #690560

    Results: http://webers-testseite.de/ikom/columns/
    The alb element headline has got his own custom class (here: headline-background )

    .headline-background * {
        letter-spacing: 2px !important;
        line-height: 60px;
    }
    
    .headline-background span {
        background: rgba(255, 255, 255, 0.7);
        box-shadow: 2px 2px 3px #333;
        border-radius: 15px;
        padding: 5px;
    }

    the first rule: everything following that custom class gets the attributes ( so h2 in this case and the span)
    the second rule : only the span content

    PS : i styled it a bit more that you can see how it works – if you only want to have black background with white font-color – you know what to do.

    • This reply was modified 9 years, 1 month ago by Guenni007.
    in reply to: How can I get this result? #690554

    it will be much easier to help if there was an example page – if you don’t like to post the live site link on public than only mods could help you. Or is there a Site on Enfold Demo Pages where the analogon is placed?
    f.e. http://kriesi.at/themes/enfold-wedding/ the heading there

    first of all the source code has to be in this way that you can make a selection between first line and after break the second line.
    Because html works in headings of enfold you can do the following to obtain a two line heading:

    first line<br/>second line but to make it easier to differ this might be a good source for that:

    first line <br/><span>second line</span> this will be enough but to shorten sometimes the code in your quick css it might be good to have here
    for the whole heading a custom class f.e. headline-background

    • This reply was modified 9 years, 1 month ago by Guenni007.
    in reply to: Avia Post NAV with the same category #690424

    hm – isn’t it the same code as mine?

    only the filter name differs
    avia_same_category_filter instead of enfold_customization_same_cat
    and
    $settings instead of $s

    • This reply was modified 9 years, 1 month ago by Guenni007.
Viewing 30 posts - 10,561 through 10,590 (of 11,788 total)