Forum Replies Created

Viewing 30 posts - 10,051 through 10,080 (of 11,892 total)
  • Author
    Posts
  • on one installation i activated the embeded version with a license key. From this moment on i can use the library to install layerslider demos – even the premium ones – but updates are not working- they are not shown in WP dashboard – Updates.

    the thing with that “icon” is that it is not a static one. there are a lot of svg animated pendents to that what kriesi has choosen – f.e.
    https://codepen.io/kyleHenwood/pen/Alayb

    this here seems to be a combination of having strokes and setting some additional classes on click event.

    see here some examples: https://jonsuh.com/hamburgers/

    on avia.js since line 1760 you find those settings

    PPS: on that link above to https://jonsuh.com/hamburgers/ you can see a very similar structure of hamburger styling

    <div class="hamburger hamburger--spin js-hamburger">
            <div class="hamburger-box">
              <div class="hamburger-inner"></div>
            </div>
    </div>

    on enfold the structure is:

    <span class="av-hamburger av-hamburger--spin av-js-hamburger av-inserted-main-menu">
    	<span class="av-hamburger-box">
    		<span class="av-hamburger-inner"></span>
    			<strong>Menu</strong>
    	</span>
    </span>

    only a av- is before classes so maybe a css transfer brings different possibilities.
    so maybe it is easy to replace here with some transfer

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

    or:

    
    #top .main_color .wpcf7-not-valid {
        background: rgba(230, 70, 0, 0.3) !important;
    }

    for you

    Kannst du das hier mal probieren:

    #top .main_color .wpcf7-not-valid {
        background: rgba(255, 255, 120, 0.2) !important;
    }

    can you please show us a link to that page. I have a message above the input fiield in that case.

    in reply to: Last main menu item styling #788496

    is there an example on any demo page of kriesi?

    in reply to: Bug on search icon when using a Wacom Tablet #788467

    my Wacom3 9×12 worked! as expected.

    do you use it with Pc or Mac?

    on Settings (this is mac osx):

    have you anything changed to standard settings?

    in reply to: Download directly a pdf file #788380

    if you like to include other files to do the same:

    <FilesMatch "\.(?i:(pdf|xls))$">
        # Force File Download
        ForceType application/octet-stream
        Header set Content-Disposition attachment
    </FilesMatch>

    you know that from the rule concerning to cors :

    <FilesMatch "\.(ttf|otf|woff)$">
    <IfModule mod_headers.c>
    Header set Access-Control-Allow-Origin "*"
    </IfModule>
    </FilesMatch>
    • This reply was modified 8 years, 8 months ago by Guenni007.
    in reply to: Download directly a pdf file #788368

    try first to set a link with for example:
    you see in the link the download=””

    <a href="https://domain.de/xyz.pdf" download="Aufsatz_ueber_Nettiquette.pdf">Nettiquette</a>

    this will be the html5 method and it works now on Firefox, Safari, Opera, Chrome : https://webers-testseite.de/kokon/this-is-a-post-with-post-type-link/

    Or for a globaly solution: you use this in htaccess file:

    <FilesMatch "\.(?i:pdf)$">
        # Force File Download
        ForceType application/octet-stream
        Header set Content-Disposition attachment
    </FilesMatch>
    • This reply was modified 8 years, 8 months ago by Guenni007.
    in reply to: Child theme for an existing enfold site #787673

    Dear Mods i tried to set here an ol but there are no numbers seen

    1. abc
    2. def
    3. ghi

    there is a css missing like:

    #bbpress-forums ol li {
        list-style: outside none decimal;
    }

    because ol rule does not overwrite li rule

    • This reply was modified 8 years, 8 months ago by Guenni007.
    in reply to: Child theme for an existing enfold site #787672

    But nevertheless you can do that and look if there are on the frontend any changes if not you can leave the child activated – if so you can reactivate your partent theme.

    so what to do-

    • download the child-theme from documentation page here
    • unzip and upload the folder “enfold-child” to your themes folder (adjacent to enfold folder)
    • goto Dashboard – Enfold (this is only for paranoid reasons) – Import/Export and 2nd Button “Export Theme Settings File”
    • goto Dashboard – Appearance and activate the Child-Theme.
    • Goto Dashboard – Enfold-Child – Import/Export and press the button on top “Import Parent Theme Settings” – ( if there is a message that there are no Parent Settings – upload the parent theme settings file via 3rd Button on Import/Export – “Import Theme Settings File” and choose the file you downloaded on step 3
    • have a look if there are changings on your frontend

    click to enlarge the image

    in reply to: Child theme for an existing enfold site #787457

    the Point of your thread will be : “I don’t know which files I have modified”
    All Settings and Changings on Enfold Options Dialog you can import via that Button “Import Parent Theme Settings” on Theme Options / Import/Export.

    But if you have edited functions.php or any other file of your parent-theme – these changings will be not transfered!
    So if you want to use a child-theme you have to know that!

    btw. that is the reason why a use of a child-theme is best. Because you can update the parent theme without loosing those changings on child-theme.
    All Changings will be made on Child-Theme Files

    so here on enfold documentation there is a predefined download child-theme: Link

    first of all – please make you familiar with using a child theme – there are a lot of advantages.
    All changings to that child theme stay even on updating the parent theme was one of those points.

    A Template is an established term in WordPress.

    Templates are the files which control how your WordPress site will be displayed on the Web. These files draw information from your WordPress MySQL database and generate the HTML code which is sent to the web browser.

    A Template often is a strict layout and you only could change colors or fonts etc. via css. The layout structure stayes often the same.

    Enfold uses advanced layout builder – so you can create page/post wide a different layout – no strict template.

    If you have in your mind something like the demos – they only differ in some settings and color-schemes etc. These settings are made with Enfold Options Dialog.
    So you can do it via Child-Theme yourself and a bit of code-snippets sometimes.

    To your other question : there are a lot of possiblities to make your own widget area. And Enfold accomadets your whishes.
    It is very simple to register an own widget area. And there was a widget area element on content elements listed.

    For placing a site-wide widget area – we have to know something more precise input of you

    in reply to: Media Queries don't work #786336

    And a nice link for you kharsoul might be: Link

    • This reply was modified 8 years, 8 months ago by Guenni007.
    in reply to: Download directly a pdf file #786328

    here is something i found on this thematic:

    You can’t do this with HTML.
    It’s a server-based solution. You have to stream the file so that the browser than triggers the save dialog.

    I’d advise not doing this. How a user interacts with a PDF should be left up to the user.

    And i do agree to that on security reasons. (pdf bomb)

    PS: on html5 now it seems to be able to do that . But on the security reasons i stay on my oppinion that it is a “no go” –
    Link : https://developers.google.com/web/updates/2011/08/Downloading-resources-in-HTML5-a-download

    but you can do it with zip files – than the user has the opportunity to have a first look to the downloaded zip file (Antivirus etc.)

    • This reply was modified 8 years, 8 months ago by Guenni007.
    in reply to: Iframe not responsive well on mobile devices. #786317

    Well is this really a question to enfold support? Because the iframe is not an advanced layout builder element. But on googling your question f.e. via: “making iframe responsive” there are a lot of solutions – even pure css ones.

    the thing is to use a surrounding container and to define the hight via a padding-bottom of this container.
    see here: Link

    hey Ismael i tried to achive this “the grid row is out of main” – i can not reconstruct that by only using alb. So how can this be?

    in reply to: Sticky Header #786301

    by the way – if you have a big site and many pages to come – you can set those layout default values by adding some snippets to functions.php child-theme:

    add_action( 'after_setup_theme', 'ava_enfold_builder_layout_mod' );
    function ava_enfold_builder_layout_mod(){
    	add_filter('avf_builder_elements', 'avf_enfold_builder_layout_settings_mod');
    }
    
    function avf_enfold_builder_layout_settings_mod($elements)
    {
    	$counter = 0;
        foreach($elements as $element)
        {
    		// Layout > Header visibility and transparency
    		if($element['id'] == 'header_transparency')  {
    			/**
    			 * Available Options
    			 * No transparency =
    			 * Transparent Header = 'header_transparent'
    			 * Transparent Header with border = 'header_transparent header_with_border'
    			 * Transparent & Glassy Header = 'header_transparent header_glassy '
    			 * Header is invisible and appears once the users scrolls down = 'header_transparent header_scrolldown '
    			 * Hide Header on this page = 'header_transparent header_hidden '
    			**/
                $elements[$counter]['std'] = 'header_transparent header_scrolldown ';
            }
            $counter++;
        }
    	return $elements;
    }
    in reply to: Sticky Header #786296

    i think you are talking not about a bug but about one features of enfold.
    the header behavior can be set to that what you described. Did you install your page over a demo import. Because on default this is not the standard behavior on headers.
    But on each page/post – you can set this feature – look to the right side of your Editor Page there are different Input Fields. The one we are interesting in is layout: on bottom you find the features

    in reply to: LOGO SIZE #786291

    By the way a little off topic: IF YOU ARE WRITING IN THIS WAY – it means commonly in internet foren and boards that you are shouting loud and this is seen as rude and considered impolite; – but i believe that you are not wanting to give that impression with your Thread Title
    For headings and sloagans this is a common exception

    keine ID die Möglichkeit eine Custom Class zu vergeben siehe bitte hier: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
    und die Klasse müssen alle Columns die es betreffen soll erhalten (deshalb wäre eine ID auch falsch)

    Du kannst das in eine Color-Section setzen.

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

    Lol : Rechtschreibfehler dürfen behalten werden!

    Also die Columns so ( zum Vergrößern klicken):

    und der Content zwei Elemente ein Button und ein Text (nicht wie bei dir im Textfeld den Button Platziert)

    in reply to: Full width footer #784540

    There must be something that deletes closing tags etc.
    My presumption was that on editing the translation there is something going wrong. There are a lot of contradictions. The whole sitestructure is not as it should be – so just wait what happens after Yigit has done the changes.

    how does a layerslider (invisible but there) come above wrap-all container ? – this must be a manual influence – who ever did that

    by the way did you ever try to use a different permalink for translated pages? WPML gives you the oportunity to change from domain/lang/ to something like domain/site?lang
    what happens than – maybe there is some incompatiblity to your optimizer on that – because your spanish site do the same thing like your english on start page.

    • This reply was modified 8 years, 8 months ago by Guenni007.
    in reply to: Full width footer #784002

    my advice is – erase the page in english. open the page in original language and duplicate the page by using WPML window on top right position
    click the image to enlarge:

    then go and translate your content for each alb element.
    If you don’t like the grid-row element for the english translation – erase it via advanced layout builder (not via debug window)

    in reply to: SPECIAL HEADING CUSTOM – CSS CLASS #783997

    click to enlarge the firebug window of your source code:

    you see on the right side the code you inserted. All strikethrough rules are overwritten by some other rules with more rights (more specific or other reasons. If you like to have it than set the rule to !important like:

    .txtsh .av-special-heading-tag {
        font-family: "PT Sans","HelveticaNeue","Helvetica Neue",Helvetica,Arial,sans-serif;
        font-size: 17px !important;
        font-style: italic;
        font-weight: bold;
        line-height: 1.5em;
        margin-bottom: 8px;
        margin-top: 43px !important;
        padding-right: 6px !important;
        text-align: left !important;
    }
    • This reply was modified 8 years, 8 months ago by Guenni007.
    in reply to: SPECIAL HEADING CUSTOM – CSS CLASS #783981

    it is because your custom class is one layer above the h3 so try to set the rules with:

    .txtsh .av-special-heading-tag  {
    here comes your code
    }

    somethings have to be set to !important

    in reply to: Full width footer #783945

    why are the scripts not before body tag closes on english version but they are in main container:
    (by default they should be out of wrap-all container!

    click to enlarge:

    Something like this could happen if you are in debug mode and try to edit or delete something within that debug code.
    By dooing this there are a lot of possibilities to erase something incomplete ( closing tags etc.)

Viewing 30 posts - 10,051 through 10,080 (of 11,892 total)