Forum Replies Created

Viewing 30 posts - 9,331 through 9,360 (of 11,187 total)
  • Author
    Posts
  • in reply to: Change Google font on mobile menü #791302

    please post your css code for the non-mobile menu

    in reply to: 8 column grid row #791096

    ha – seems to be very uncommon and not easy to handle.
    it is set in avia-builder.js about line 1720 on.
    think of all cellSizeVariations you can have on 8 columns

    i think it will be easier to have a table with 8col one row and make some fittings to it- than to edit the shortcode of grid row

    in reply to: Backend auf deutsch funktioniert nicht #790365

    hast du die aktuelle Enfold Version ?
    Weil es mal einen Fall gab mit einer Version, wo bei Anwahl im Dashboard von Deutsch “Sie” das Backend von Enfold auf Englisch war.
    Das ist aber seit dem Enfold auch die formal Versionen nun nicht mehr in einem eigenen Unterordner hat nicht mehr aufgetreten.
    Bei dir ist aber auch das gesamte Dashboard englisch.

    Nur damit wir nicht aneinander vorbei reden. WordPress hat wie gesagt eigene language files in /wp-content/languages/
    damit sind nicht die lang files von Enfold gemeint /wp-content/themes/enfold/lang/

    you see above – the right code on &sub .= it must be the double ones – on top at add_filter the single ones (but simple do a copy/paste)

    here a common mistake:

    add_filter('avf_logo_subtext', 'kriesi_logo_addition');
    function kriesi_logo_addition($sub) {
    $sub .= "<h1>Company Name</h1>";
    return $sub;
    }

    the use of quotation marks (single and double) – be careful by this
    and – but could be because you are not using the code tool on top the single marks are not the streight ones a bit of curly special Charakter

    and please show us the inserted code – sometimes there is only a semicolon missing or some closing brackets

    by the way : changings on parent theme functions.php it is important where you inserted the new code !

    well i’m a participant as you – so be carefull whom you do give the login datas.
    I did that allready – but it is best to wait for a mod – because than you can give the login datas via private content field.

    for the ftp change – if you got ftp access – goto your installation and navigate to /wp-content/themes/enfold or if you are using child-theme
    /wp-content/themes/enfold-child
    download the functions.php – open it with a good text editior ( f.e. : notepad++ for pc or sublime-text for mac) redo your changings.

    if you don’t remind your changings – you can upload an untouched version of functions.php (on parent theme a copy of the enfold one, on child-theme it is from the beginning a nearly empty one:

    <?php
    
    

    From that point you should have a working theme again.

    what code did you insert?
    Did you insert it to parent or child theme?

    give us please an example

    and to get rid of black screen – remove changes via ftp

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

    you mean your one liner : AddType application/octet-stream .pdf
    if it works – ok.
    but some browsers have some trouble with .PDF or the IE does something else you are intend to do.
    I think the code will work browser independent:

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

    to be more precise it should be:

    <FilesMatch "\.(?i:pdf)$">
    <IfModule mod_headers.c>
        ForceType application/octet-stream
        Header set Content-Disposition attachment
    </IfModule>
    </FilesMatch>

    but test yourself
    btw: the ?i: is for beeing independent from upper/lowercase combinations.

    • This reply was modified 7 years, 9 months ago by Guenni007.
    in reply to: Backend auf deutsch funktioniert nicht #790056

    wie gesagt, ich glaube wenn du nicht die explizit deutsche Version installiert hast, fehlen die lang files. Aber das könntest du nachinstallieren.
    Oder einfach eine deutsche drüber installieren.
    Sehe gerade, dass die Langfiles einzeln nicht mehr angeboten werden – musst also die komplette WordPress installation laden.
    Anleitung: Link

    das mit dem define('WPLANG', 'de_DE'); ist ab Version 4 obsolete. Das wird jetzt im Dashboard umgestellt.

    in reply to: W3C HTML checker errors #789863

    yes sorry that was my misunderstanding.
    I thought it was one of those Ex-Rules from strict html4 times. Like no block-level element in anchors.
    Today we are at html5 – and yes now it is common use to wrap some h, p or div in one a element.
    it works – and rendering is safe.

    _________
    a handmade site is unbeatable in that and performance reasons – but nevertheless i do not want to go back!
    Allthough this oldschool site is responsive – html valide and css3 conform.
    from that point the old times are ok Look here https://guenterweber.com/oldschool/
    and gtmetrix values like this : https://gtmetrix.com/reports/guenterweber.com/XJVD4Xo5 are never seen on WP Sites
    https://developers.google.com/speed/pagespeed/insights/?hl=de&url=guenterweber.com%2Foldschool%2F&tab=desktop

    in reply to: font rendering problems in safari and firefox (mac) #789565

    try this too combining Yigits rule:

    html {  
        -webkit-font-smoothing: antialiased;
    }

    or as Basilis changing:

    * {  
        -webkit-font-smoothing: antialiased;
    }

    see thread here : https://kriesi.at/support/topic/different-font-weight-in-menu-navigation/?bbp_reply_to=717694&_wpnonce=9354f7d078#new-post

    and look to the warning:

    Use Wisely
    For these last two hacks, each character re-rendered will require extra resources so it’s best NOT to use these to render large swaths of copy. Use these on headers and global elements where you will have the most impact, but for the main copy use ‘serif’ or ‘sans-serif’ and let the browser decide.

    so perhaps you will only do for navigation or important headlines

    • This reply was modified 7 years, 9 months ago by Guenni007.
    in reply to: Uploading own fonts #789515

    have you tried to implement it with standard 400 ?
    because google did not allow to get rid of that marked 400er field. Maybe it is necessary:

    add_filter( 'avf_google_heading_font',  'avia_add_heading_font');
    function avia_add_heading_font($fonts)
    {
    $fonts['Quicksand'] = 'Quicksand:300,400,700';
    return $fonts;
    }
    
    add_filter( 'avf_google_content_font',  'avia_add_content_font');
    function avia_add_content_font($fonts)
    {
    $fonts['Quicksand'] = 'Quicksand:300,400,700';
    return $fonts;
    }


    @Victoria
    : yes it seem to be right – but this was the way in documentation for activating for headings and for textfields.
    btw: the bold is implemented in the 700 – isn’t it – so there might be a mismatch if you are defining a quicksand bold for 300, 700
    and a quicksand too for 300, 700

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

    sorry for my little off topic but your question reminds me to a film sequence of Peter Seller as Inspector Clouseau – the lightswitch question.
    Just a bit of humor now: https://www.youtube.com/watch?v=eu8erlaxLAg

    so now to something completely different:
    on dashboard – general styling – footer (tab) – be careful the footer is that segment with the widgets in it. The bottom of your site is the “socket” – as you can see in the image above those tabs

    in reply to: W3C HTML checker errors #789494

    well alot of your error codes concerns to structured data – something which seems not to be regarded by that html test tool on w3c.
    Long time a lot of wai aria roles aren’t regarded by w3c – so you have to read this with modern eyes!

    look for example on structured data test tool by goolge: https://search.google.com/structured-data/testing-tool?hl=de#url=https%3A%2F%2Fe-3.de
    no errors – no warnings on your site.

    the other errors are some meta properties . Get familiar with those things too.

    something like: “The itemtype attribute must not be specified on elements that do not have an itemscope attribute specified”

    Must not be – for me sounds like could be but must not be ( so an error is harsh – a warning seems to be enough) etc.

    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 7 years, 9 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 7 years, 9 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 7 years, 9 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 7 years, 9 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

Viewing 30 posts - 9,331 through 9,360 (of 11,187 total)