Forum Replies Created

Viewing 30 posts - 9,691 through 9,720 (of 11,187 total)
  • Author
    Posts
  • in reply to: How can I Increase the width of Posts #737189

    if there is no sidebar – how can there be an effect of changing that ratio?

    What do you like to have – a smaller or a wider space for the content in blog?
    Is there any link for us to understand your request better?

    in reply to: Lightbox Images Loading Twice #737187

    Maybe it is not a lightbox- but a gallery-plugin. A lot of them comes with their own lightbox version.

    in reply to: video background not playing #737000

    By the way – does a ssl certificated Site still say its safe if a http – embeded Video is playing?

    Edit:
    it seems to stay secure because the http and the https link – both lead to the same video link – and the resulting link is a https link.

    • This reply was modified 8 years, 1 month ago by Guenni007.
    in reply to: please help in german ! Anker / Sprungmarken bei Textlinks #736856

    du hattest einen Shrinking header. Und der war bei Resthöhe 88px- du solltest das mit der Header Höhe nicht setzen. wie gesagt die Resthöehe des Headers nach dem Scrollen war nicht berücksichtigt worden. Dadurch geht wenn die Sprungmarke angesteuert wird diese Höhe flöten. (diese 88px befinden sich unterhalb des Headers. wenn du also in die Color-Section oben als erstes einen Seperator 90px (whitespace) einfügst hast du den content knapp unterhalb des Headers.

    you can see it here what i mean:

    https://webers-testseite.de/ikom/sprungmarke/#sprungmarke1
    https://webers-testseite.de/ikom/sprungmarke/#sprungmarke2

    • This reply was modified 8 years, 1 month ago by Guenni007.
    in reply to: please help in german ! Anker / Sprungmarken bei Textlinks #736305

    hängt wohl ein wenig von dem gewählten Header ab.
    Leider wird bei solchen Sprungmarken die Header Höhe selten beachtet. Die 90px fehlen der Sprungmarke!
    Als quick and dirty Tip würde ich dir jetzt empfehlen oberhalb des Contents diese 90px in Form eines Seperator/Whitespace anzulegen.

    Oder beim Neuanlegen der color-section direkt mehr Padding zu geben.

    Eigentlich sollte es den Developern möglich sein, den Wert der ohnehin berechnet wird (scroll-offset) hier mit in die Position mit einfließen zu lassen!
    Ist mir nur noch nie so aufgefallen, weil ich meist ein normales Padding in der Color-Section zulasse.

    • This reply was modified 8 years, 1 month ago by Guenni007.
    in reply to: CSS Font Face "Unexpected CSS Token" Error #735396

    maybe this is concerning to the WordPress 4.7.1 “bug” and svg files .
    They changed in wp-includes/functions.php some functions – and the mime check was touched in a manor that svg files are not accepted as a mime type. Perhaps this collides with your :

    url(‘wp-content/fonts/AvenirLTStd-Book.svg#svgFontName’) format(‘svg’); /* Legacy iOS */

    in reply to: JPEG Upload Error "http error" After switching to SSL #734046

    sometimes – after switching from http to https it helps – when you set in to your wp-config-php the absolute path to your wp-content directory in this manner:

    define( 'WP_CONTENT_URL', 'https://url/wp-content' );

    you must replace the url with your domain

    in reply to: please help in german ! Anker / Sprungmarken bei Textlinks #734032

    wenn du einen Anker gesetzt hast z.B “Wohnnot” dann ist der link dort hin:

    http://su-enna.de/alleinerziehende-arme-starke-alltagshelden/#wohnnot

    wenn du also im Menu diesen Anker annavigieren möchtest musst du zumindest auch die Seite auf welcher der Anker erscheint mit nennen (absolut muss also nicht sein, aber wenigstens die Seite). also:

    einen Individual Link ins Menu setzen und als Link das untere einsetzen.
    /alleinerziehende-arme-starke-alltagshelden/#wohnnot

    _______________

    PPS: es gibt so etwas wie eine Nettiquette. Ich als nicht Mod darf das mal sagen: Diese “Mein Problem ist das Wichtigste – Mentalität” finde ich persönlich gräßlich.
    Wenn Du auch nur ansatzweise mal einen anderen Support erlebt hast, dann solltest du wissen, dass sowohl die Kompetenz als auch die Geschwindigkeit der Hilfestellung hier an Board exorbitant ist.

    in reply to: Display menu as icon not working #733765

    ok –

    ach noch eines – beim Impressum solltest du noch was nachbessern.
    Selbst Einzelunternehmen müssen da an Kontaktinfos mehr liefern. Anbieterkennzeichung; Umsatzsteuer ID falls vorhanden DE, … etc. pp.
    Bei Facebook und Instagram Links solltest du auch noch sicherheitshalber in der Datenschutzerklärung was hinzufügen.
    Ganz ok ist zB der Impressums Generator von eRecht24.de

    in reply to: How to Add social media icon on Fullscreen Slider? #733749

    hm last solution does work on all browsers – but on Ipad the buttons are very big . And the last is a bit shifted – i will make a research for it.
    And hope to get a solution for it.

    in reply to: Display menu as icon not working #733748

    Yes – thats very often that users forgot to do. If there is no such declaration the Hamburger Menu does not work.
    But you do that – so there must be a different reason for it.

    in reply to: Display menu as icon not working #733745

    go to Dashboard / Menu / and declare a Menu as Enfold Main Menu ! (Mark it at the bottom of the menu settings dialog)
    If you got the standard Menu of WordPress it will not work

    in reply to: How to Add social media icon on Fullscreen Slider? #733720

    so here is a solution for more than two buttons:

    ALB:
    Fullscreenslider with custom class (in my case: socialbuttons3)
    downunder a colorsection with a 1/1 container (with -400px on: “Custom top and bottom margin” ) and in it a text-block !
    You now can place one image (all floating left) and again and again in the text-block. Set up your link Options and target Option to the Images

    The Text-Block got a custom class: centerbutton

    #fullscreen_slider_0.socialbuttons3 {
        z-index: 0;
    }
    
    .avia_textblock.centerbutton p {
        display: inline-block !important;
        left: 50%;
        position: relative;
        transform: translateX(-50%);
    }
    
    .avia_textblock.centerbutton a {
        display: inline !important;
        margin: 15px !important;
        opacity: 0.9;
        width: 120px;
    }
    
    .avia_textblock.centerbutton a:hover {
        transform: scale(1.1);
        opacity: 1;
        transition: all 0.4s ease-in-out;
    }
    
    .avia_textblock.centerbutton .image-overlay {
        display: none !important;
    }

    Result: https://webers-testseite.de/ikom/full-slider-with-content/

    • This reply was modified 8 years, 1 month ago by Guenni007.
    in reply to: How to Add social media icon on Fullscreen Slider? #733711

    by the way if you have more than these two buttons – i will do that too with a fullscreenslider on top.
    Underneath you put a color section – with the buttons.
    the trick is not to make the z-index higher to the buttons – but to lower it on the slider:

    see here : https://webers-testseite.de/ikom/full-slider-with-content/
    there might be a bit more css to solve – because you have to find a solution on small screens.

    The z-index for slider (i only set it for that page – or you give the fullscreen-slider a customclass to select it):

    .page-id-3220 #fullscreen_slider_0 {
        z-index: 0;
    }

    i’m looking for you to a nice solution soon

    in reply to: How to Add social media icon on Fullscreen Slider? #733706

    Custom Class on allmost all ALB Elements: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/

    Yes i understand – but it is with enfold normal settings only a two button solution!
    this is only the normal two buttons which can be choosed at slider settings. !
    The text of those buttons was shifted out of viewport by text-indent (but this is nice because it can be red bei bots – seo advantage)

    you see on the bottom of the normal fullscreen slider that i set up a custom class:
    (klick on the image to enlarge)

    fullscreenslider

    than look to image/caption options of the sliderimage – you got the choice to have two buttons there !

    Caption of Slider Image

    the rest is css in quick css and to look for a nice Button

    • This reply was modified 8 years, 1 month ago by Guenni007.
    in reply to: How to Add social media icon on Fullscreen Slider? #733096

    or you place a button on the slider and do the following code to it:
    i gave the fullscreen slider the class : socialbutton for better specified selection

    .socialbutton .avia-slideshow-button {
        background: rgba(0, 0, 0, 0) url("///wp-content/uploads/add-social-media-buttons.png") no-repeat scroll 0 0 / cover !important;
        border: 2px solid #fff !important;
        border-radius: 50% !important;
        height: 100px;
        text-indent: -5000px;
        width: 100px
    }

    see here: https://webers-testseite.de/ikom/fullscreen-slider/

    or as two buttons ( with slider class: socialbuttons2 ):

    .socialbuttons2 .avia-slideshow-button:nth-child(odd)  {
        background: rgba(0, 0, 0, 0) url("/ikom/wp-content/uploads/add-social-media-buttons.png") no-repeat scroll center center / 100% 100% !important;
        border: 2px solid #fff !important;
        border-radius: 150% !important;
        font-size: 1px;
        height: 100px !important;
        text-indent: -5000px;
        width: 100px !important;
    }
    
    .socialbuttons2 .avia-slideshow-button:nth-child(even) {
        background: rgba(0, 0, 0, 0) url("/ikom/wp-content/uploads/twitter.png") no-repeat scroll center center / 100% 100% !important;
        border: 2px solid #fff !important;
        border-radius: 150% !important;
        font-size: 1px;
        height: 100px !important;
        text-indent: -5000px;
        width: 100px !important;
    }
    
    .avia-multi-slideshow-button {
        min-width: 100px;
    }
    • This reply was modified 8 years, 1 month ago by Guenni007.
    in reply to: Gallerie zentrieren #732738

    für das Responsive Verhalten, ist es glaube ich besser du nimmst die 1/3 columns ohne zwischenräume – musst dann umrechnen – Zielwert in der mitte bleibt. – Die Abstände verringern sich wohl bei schmalen Screens !

    .av_one_third.outspace {
        width: 28.5% !important;
    }
    
    .av_one_third.midspace {
        width: 42.8% !important;
    }
    in reply to: Gallerie zentrieren #732732

    Im Grunde ein wenig rechnen. ich nahm jetzt die 1/3 columns mit zwischenraum. Der ist bei Enfold immer 6% – rest ist rechnen und den entsprechenden Containern dann die Breiten zuweisen:

    .av_one_third.outspace {
        width: 22.5% !important;
    }
    
    .av_one_third.midspace {
        width: 43% !important;
    }

    damit es nicht zu genau ist die werte immer ein wenig abrunden. Denn manch ein browser rechnet zB Rahmenbreiten out of box oder in the box.

    in reply to: Gallerie zentrieren #732714

    look here : https://webers-testseite.de/elegant/735-2/

    ist es das was dir vorschwebt?

    in reply to: Gallerie zentrieren #732710

    Es wäre um vieles leichter, mit der Seite als solches die Ratschläge zu erteilen.
    Diese Beschreibungen sind ja ganz nett, aber um speziellen Code zu entwickeln ist es geradezu unablässing die Seite zu sehen.
    Wenn du das nicht öffentlich machen willst – warum auch immer musst Du es im Privaten Bereich des Threads posten und auf einen Mod warten.

    in reply to: center images #732708

    is there a link where we can see the issue?

    in reply to: changing burger icon menu #732703

    have you declared a menu to be the enfold main menu on Menu Options dialog?

    in reply to: Is it possible to move copyright footer under navigation #732658

    you than can place any widget to that widget area ; if you only want to have here copyright info – than a text widget will do the job.

    the rest is for quick css – by default the padding left of list points of navigation is 13% so i do it here for the text widget too:

    #text-11.widget_text .textwidget {
        color: #fff;
        font-size: 11px;
        margin-left: 13%;
    }

    the only thing is that on your installation this is #text-11 to be replaced by your id

    in reply to: Is it possible to move copyright footer under navigation #732653

    in reply to: Is it possible to move copyright footer under navigation #732642

    hm – TiVo and design your website. :wink

    Please get familiar with working on child-themes. It is for working with codes snippets the best Solution – because updating the parent theme does not influence those changings!
    Look here on enfold documentation:
    Download a preset Child-Theme : http://kriesi.at/documentation/enfold/downloads/
    Infos on how to: http://kriesi.at/documentation/enfold/using-a-child-theme/. with good instructions.

    the great advantage of child-theme functions.php ( if you download the preset- there is allready an empty one) is that it does not replace the parent-theme functions.php – it can add things to it.
    ( So if you got f.e. a copy of header.php file in your child theme folder it will totaly substitute the parent-theme file )

    On Enfold Documentation there are a lot of snippets which can help you to make some important changes. And a lot of hints and advices here on Support Forum do use this method.

    _________________

    This code snippet here:

    add_action( 'ava_after_main_menu', 'enfold_customization_header_widget_area' );
    function enfold_customization_header_widget_area() {
    	dynamic_sidebar( 'header' );
    }

    comes to child-theme functions.php file. (you can make the changings via Dashboard/Appearance/Editor
    on left side there are a list of files in child-theme folder

    To input some broken codes here into functions.php can have the result that you only see a white page – than you only have the possibility to redo those entries by ftp down/upload the working file.

    But if you do copy paste carefully the code it will work in most instances

    So the code above registeres a widget area on a certain place (here i called it header)
    if you than goto widgets and create the new widget (name: header) everything you put in that widget area goes to that area of enfold.

    Enfold got a lot of those possibilities to “hook” ( they often marked like: do_action('xxxxxxxxx') ) where we can insert some code
    in this case it is the helper-main-menu.php because the place of your desired area was created here – i looked into that php.

    in reply to: Center 1/5 Avia Column #732634

    you see on that demo page that the 1/3 solution in front works to (if you set it to 26% its perfect)

    By the way – on new enfold there is for each column the possibility to set a mobile behavior in options dialog.

    in reply to: Center 1/5 Avia Column #732628

    and it has to be 2 1/5 ! Just a silly question why not 2 1/4
    (it is easier to handle)

    you can manage the width than via custom class see here : https://webers-testseite.de/ikom/shadow/

    i set up 4 1/4th columns and give each a custom class (the columns itself) you see the class inside as heading.
    and than i setup a custom width for them ( just a bit maths)

    div .av_one_fourth.innen {
    width: 15% !important;
    }
    
    div .av_one_fourth.aussen {
    width: 26% !important;
    }

    the space between is set by enfold to 6%. so on 3 spaces you have to manage the rest to 82% (or for a pair of “innen” and “aussen” 41%) (26+15)
    the normal width for a fifth column is 15.2%. so nearby.

    The only thing is you have to make some rules again for responsive case

    ( on that test page my mobile starts at 990px)

    @media only screen and (max-width: 990px) {
    div .av_one_fourth.innen {
        width: 100% !important;
    }
    div .av_one_fourth.aussen {
        display: none !important;
    }
    }
    • This reply was modified 8 years, 1 month ago by Guenni007.
    in reply to: Background video won't loop in Mac Safari #732362

    And by the way – i uploaded your video to youtube – normal without beeing a special member – it works
    and if you input the code in this way: https://videourl?rel=0&autoplay=1&loop=1&autopause=0
    it works in safari.

    So thats all from me – i will now delete the youtube upload ! thanks for your patient listening!
    And i delete the selfhosted upload now.

    Solution for you might be :
    buy or wait til enfold updates Layerslider
    upload your video free to youtube – very simple and embed the video with settings above.

    • This reply was modified 8 years, 1 month ago by Guenni007.
    in reply to: Background video won't loop in Mac Safari #732025

    well i got the Layerslider Vers. 6 – and on that (hope Enfold would soon update that part) it is possible to declare a video as Slider Background !

    Look here the selfhosted video of your vimeo file. – I will delete it after you have seen it on Safari looping !
    i will try now to look if a vimeo link will do the job too.

    https://webers-testseite.de/ikom/video/

    Edit: it does not work with vimeo hosted file! on that solution
    And great advantage is that the slider is responsive !

    • This reply was modified 8 years, 1 month ago by Guenni007.
    in reply to: Sorry, another Enfold Google Maps Porblme #731644

    do you have a third party maps plugin working?
    for detailed map i use Chris Richardsons Map Press Pro. but both are loading there own api on different places.
    Some Event Plugins comes with Event Place and an own loading of google map api.
    so i think first of all try to deactivate all plugins an look if it works.

    on google maps api registration – the inserted urls lost there asterix after the url. ( *abc.com/* ) after saving.
    on input field you have to input the asterix and after it a spacebar ! this will avoid deleting the asterix.

    Allmost every installation of mine works well – but sometimes i had to input urls which are property prooved from google
    i don’t know why – but sometimes it helps to get it run:

    • This reply was modified 8 years, 1 month ago by Guenni007.
Viewing 30 posts - 9,691 through 9,720 (of 11,187 total)