Forum Replies Created

Viewing 30 posts - 11,221 through 11,250 (of 11,580 total)
  • Author
    Posts
  • in reply to: I cannot find the last version of Enfold in Envato #470697

    this is sometimes a shame that in “all files & documentation” download and “installable wordpress file only” there are different Version numbers for a little time.
    I got the message too about 3.2.2 but downloading the whole package from Envato only the 3.2 is in there. In the installable wordpress theme the 3.2.2 is present.
    I like to do my updates manually too, so for that i download only the installable package.

    in reply to: Menu size #470694

    i think the orignal set of that is in:

    .av-main-nav > li > a {
        display: block;
        font-size: 13px;
        font-weight: 600;
        padding: 0 13px;
        text-decoration: none;
        transition: background-color 0.4s ease-in-out 0s, color 0.4s ease-in-out 0s;
    }

    so if you goto quick css and change padding i guess this is what you want:

    .av-main-nav > li > a {
        padding: 0 30px;
    }
    in reply to: Missing images and icons after manual WP4.2.2 update #470690

    well the images are there as you said above – and if i change the set opacity from 0 to 1 on developer tools i can see them all.
    But this is not the solution because the opacity should change from 0.9 to 1 by hovering i guess.

    
    .js_active .grid-image {
        opacity: 1;
    }
    in reply to: Text mit Farbe hinterlegen #470572

    Es wäre so schön, dass am Objekt der Begierde gleich zu testen!
    Ein Link dahin – und wenn du es nicht öffentlich machen willst markiere die Nachricht als Privat, macht es viel leichter zu helfen.

    in reply to: Missing images and icons after manual WP4.2.2 update #470371

    manual means you uploaded wordpress via ftp?
    how do you handle the wp-content folder – by uploading via ftp?

    After uploading – do you login into the wordpress installation again? because first start will update the database of WordPress than.
    btw you can force a database update by: url/wp-admin/upgrade.php

    in reply to: Adding a button to Layerslider #470367

    oh sorry i see this is not the layerslider it is the fullwidth slider on that demo – it has the option to set two link buttons implemented.

    On Caption of the fullwidth slider there is the option: “Apply a link or buttons to the slide?”
    there you can set “attach two buttons”

    http://webers-testseite.de/enf01/?page_id=41

    and btw. why don’t you link the site you mentioned?

    http://kriesi.at/themes/enfold/homepage/home-v9-videos-and-parallax/

    • This reply was modified 10 years, 1 month ago by Guenni007.
    in reply to: Adding a button to Layerslider #470338

    shortcodes i guess not but you can use a new layer ( text or image) and on layerslider options dialog the layer got : content, transition, link, styles and attributes

    so you have everything to style the button

    for link you set up the link to the aim and if you dont want to style the text each time you can give this layer via attributes/classes a class and style the button with quick.css – even the hover states!

    look here – quick and dirty
    http://webers-testseite.de/enf01/?page_id=39

    in reply to: adding on Google Maps a select box for MapTypeID #470134

    Well this is for a featured request best. I have map press pro for a long time and it works well in my way. But it might be a nice option to stand appart from competition to other framework wordpress themes!

    so can be closed now

    in reply to: adding on Google Maps a select box for MapTypeID #467931

    this is the point (as i mentioned in the E-Mail to you) i dont know how to change shortcode.js that the selected “View” is set for MapTypeID

    in reply to: Slow loading slider #467274

    Well what image processing program do you have?
    here you can see your pictures with 200kb and i think there is a marginal quality loss
    http://webers-testseite.de/enf02/fullwidth-slider/

    the image dimensions are one aspect of file size. The other is the compression level. Very often it is better to take a big compression at big images than to take a small picture with less compression.

    have a look here: http://kriesi.at/archives/4-key-wordpress-image-optimization-tips

    A huge JPEG (inches, not kilobytes) saved at a high compression rate can look better than a smaller image at reduced compression when re-sized for your page.

    this is a nice freeware tool if you work behind MacOSX : https://imageoptim.com/

    in reply to: Slow loading slider #467101

    here is an example for a fullscreen slider
    you only see a difference at high contrasts (rider with lance – jpg artefact) but even the 320kb image is good enough for a fast slide.

    http://webers-testseite.de/enf02/vollbildslider/

    in reply to: Slow loading slider #467079

    @shannab – you have images above 2MB Dataamount ! one is 3.5MB
    recalculate those images . Take jpg and progressive option for them.
    Do not take the highest quality option – high or middle is enough ! I guess that 2000 px width will be enough !
    espacially because some are not so sharp (a bit blured even)

    this will help loading time

    edit : oh Elliot mentioned it allready – so try to shrink your images without alterning the dimensions

    • This reply was modified 10 years, 1 month ago by Guenni007.
    in reply to: Slow loading slider #467067

    Images are ok but you havn’t activated gzip compression on your hoster.
    It depends on the server from hoster side how you can achieve this – but this will save a lot of server response time!

    i think you are sitting behind an apache server so try it with htaccess activation

    76.1% bandwidth could be saved

    some of those caching plugins mentioned above will do that too – and sometimes this is the biggest effect of them :lol:

    • This reply was modified 10 years, 1 month ago by Guenni007.
    in reply to: Activating an additional Google Font #466529

    thanks Josue – can be closed now

    in reply to: Activating an additional Google Font #466355

    so what would you use to activate the font?
    the link option could work ?

    is this the correct way:

    https://kriesi.at/support/topic/add-custom-font-which-arent-listed-as-official-google-fonts/#post-406903

    in reply to: Activating an additional Google Font #466350

    to use it with enfold i managed it this way (link above)

    add_filter( 'avf_google_heading_font', 'avia_add_heading_font');
    function avia_add_heading_font($fonts)
    {
    $fonts['PT Sans Narrow'] = 'PT Sans Narrow:400,700';
    $fonts['PT Sans'] = 'PT Sans:400,700,400italic,700italic';
    return $fonts;
    }
    
    add_filter( 'avf_google_content_font', 'avia_add_content_font');
    function avia_add_content_font($fonts)
    {
    
    $fonts['PT Sans'] = 'PT Sans:400,700,400italic,700italic';
    $fonts['PT Sans Narrow'] = 'PT Sans Narrow:400,700';
    return $fonts;
    }

    But the font is not active till any option in Enfold is defined by with this font.
    So i often give via advanced styling the h6 that font.

    After that i can use the font via quick css too – but without doing the h6 “trick” settings in quick css have no effect.

    in reply to: Need to change font color for single menu #465216

    first of all the quick css must work

    but the second method is quiet simple but that is the reason why i mentioned the button on WordPress Window top right:

    • This reply was modified 10 years, 1 month ago by Guenni007.
    in reply to: make mobile version more user friendly? #465051

    and what do you want to make with your long navigation and a big logo with long slogan ?
    underneath the 1650px they will overlap

    do you realy read all the instructions or is it my bad english that sometimes some instructions are lost ?

    this code here:

    .responsive #top #wrap_all #header_main .container {
    float:none;
    max-width:100%;
    padding-left:0;
    padding-right:0;
    width:100%;
    margin:0 auto
    }

    has to be inserted instead of :

    .responsive #top #wrap_all .container {
    float:none;
    max-width:100%;
    padding-left:0;
    padding-right:0;
    width:100%;
    margin:0 auto
    }

    you see the difference : now only the container after #header_main is selected

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

    yes – but this is the problem for other users – that they have no learning input and those who want to help can’t do because from a screenshot it is impossible.

    I understand that some don’t want to post a direkt link – but than you still have to wait for support from customer support and post the link as private

    in reply to: Kontaktformular sendet falschen Betreff an Empfänger #464891

    Bitte lösche mal bitte meine Registrierung :lol:

    ich habe noch keine E-Mail erhalten !

    ich hatte mal gaaaaaaanz früher ein Problem, das Kontaktformulare nicht versendet wurden.
    Da lag das am Provider. Der wollte bei sich eine Primäre E-Mail Adresse hinterlegt haben (Hosteurope) und zwar nicht für die Kontaktaufnahme im Briefwechsel sondern unter den script Einstellungen:

    Hier ändern Sie die E-Mail-Adresse, die von Ihren Skripten als Absender verwendet wird,
    wenn keine andere ausgewählt ist. Bitte beachten Sie, dass einige Skripte nicht korrekt funktionieren,
    wenn hier keine korrekte Adresse ausgewählt ist.

    ohne diese Definition ging garnichts. Eventuell ist das auch hier so.

    it will be easier to give you an advice if we can see the real site.

    A tip from me:
    im using on Firefox for a long time firebug – nowadays a lot of browsers have this kind of developer tool integrated.
    I still use firebug but it might be done by the others too.

    f.e. if i right click on your author name and choose firebug the following infowindow appears:
    If i want to change color than the code is on the right side

    #top .main_color .bbp-author-name {
        color: #f00;
    }

    this is what i would do if i had to change something via quick css.
    Finding the specific selectors is simple – and the best is you can edit online the code at the right side whithout changing something on your online code !

    in reply to: Kontaktformular sendet falschen Betreff an Empfänger #464872

    hm – momentan bekomme ich noch gar keine E-Mail

    ?

    ist jetzt gut 3min her – meine kontaktformulare bekomme ich immer quasi sofort ausgeliefert.

    in reply to: Kontaktformular sendet falschen Betreff an Empfänger #464862

    Hallo Johannes – hast du Inhalt im Autoresponder ?

    Autoresponder Text
    Geben Sie eine Nachricht ein, welche an die Benutzer E-Mail-Adresse gesendet wird, wenn das Formular abgesendet wurde.

    Bleibt dieser Bereich leer, wird keine automatische Antwort versendet.

    beim Testen mit der eigenen E-Mail erhält man dann natürlich 2 E-Mails

    in reply to: Need to change font color for single menu #464836

    well if you can investigate your menu-item number here is the code:

    #menu-item-4424 .avia-menu-text {
        color: #900 !important;
    }

    but if the menu changes (f.e. an additional menu item is set this could be changed)

    you can do it via dashboard go to menu and have a look to the top of the window ( there is an option button) please click it.
    now you have the choice to blend in a css class setting by checking the box

    now you have the opportunity to give each menu point a different custom class
    f.e. red
    now you can go to quick css and :

    .red {
        color: #900 !important;
    }

    in reply to: make mobile version more user friendly? #464800

    i found a very similar font at google :

    https://www.google.com/fonts/specimen/Architects+Daughter

    have a look even on my test page

    in reply to: make mobile version more user friendly? #464788

    yes its everything ok but your menu is a “little” wider than that on my example page

    you have to change the media query option :

    @media only screen and (max-width: 1150px)  {
    #top #header_main > .container,#top #header_mai     
    etc pp
    

    to the max-width 1650px (this depends on how wide is your navigation and how big is your slogan – so play with it)

    and don’t forget to make that one setting more specific to the header else the whole site content is at 100%

    https://kriesi.at/support/topic/make-mobile-version-more-user-friendly/#post-464661

    webers-testseite.de/enf01

    after that you can style the menu which moves beneath the logo

    • This reply was modified 10 years, 1 month ago by Guenni007.
    in reply to: make mobile version more user friendly? #464706

    first of all i mentioned that logo left menu right.
    otherwise we could save a lot of time because that is more simple than the other way.

    in reply to: make mobile version more user friendly? #464661

    and sorry i should have been more specific here :

    .responsive #top #wrap_all #header_main .container {
    float:none;
    max-width:100%;
    padding-left:0;
    padding-right:0;
    width:100%;
    margin:0 auto
    }

    because otherwise all the other containers do the same width with 100%

    • This reply was modified 10 years, 1 month ago by Guenni007.
    in reply to: make mobile version more user friendly? #464658

    this seem to be not the header logo left menu right option !

    And you have to look wheather your existing quick css code did not get in to conflict with something

    it seem that you have still in it the option on smaller screens with opacity zero

    .responsive #top .logo-title {
    opacity: 0;
    }`

    • This reply was modified 10 years, 1 month ago by Guenni007.
    in reply to: make mobile version more user friendly? #464558

    well first of all i used this logo for you:

    and than i put in child-theme functions.php the following:

    add_filter('avf_logo_subtext', 'kriesi_logo_addition');
    function kriesi_logo_addition($sub) {
    	$sub .= "<span class='logo-title'>&ldquo;…the natural route to a healthy complexion <br /> and a younger-looking you…&rdquo;</span>";
    	return $sub;
    }

    I used a custom header hight of 170px and the non shrinking header. This makes no sense for a slogan of that length! I did it with the non sticky header – because for Logo and Slogan and Normal Navigation i found no way to set up the data-scroll-offset for “main” And take the option : “Let logo and menu position adapt to browser window”

    Here you can see the result: Guennis Testseite

    this is the quick css :

    #top .logo,#top .logo a {
    overflow:visible
    }
    
    #top .logo img {
    float:left
    }
    
    #top .subtext {
    float:left;
    font-size:32px;
    font-weight:300;
    color:#7f0afc;
    position:relative;
    font-family:"Dancing Script"
    }
    
    #top .logo-title {
    position:absolute;
    line-height:normal;
    text-align:center;
    left:15px;
    opacity:1;
    top:30px;
    transition:opacity .4s ease-out 0;
    white-space:nowrap
    }
    
    #header {
    display:block;
    visibility:visible;
    position:relative;
    right:0;
    left:0;
    top:0;
    transition:all .4s ease-in-out 0;
    width:100%;
    padding:0
    }
    
    .header_color .inner-container::after {
    clear:both;
    content:"";
    display:table
    }
    
    .header_color .inner-container {
    padding-bottom:20px;
    padding-top:15px;
    position:relative;
    transition:all .4s ease-in-out 0;
    width:100%;
    margin:0 auto
    }
    
    .header_color .logo,.header_color .main_menu {
    display:inline-block;
    text-align:left;
    vertical-align:middle;
    height:auto;
    transition: all 0.5s ease-in-out 0s;
    }
    
    .header_color .logo {
    margin-bottom:0
    }
    
    .logo img {
    max-height:150px!important;
    margin:0 auto
    }
    
    .main_menu {
    margin-top:-85px;
    position:absolute;
    right:30px;
    top:50%;
    transition:all .4s ease-in-out 0
    }
    
    .responsive #top #wrap_all .container {
    float:none;
    max-width:100%;
    padding-left:0;
    padding-right:0;
    width:100%;
    margin:0 auto
    }
    
    #advanced_menu_toggle,#advanced_menu_hide {
    right:20px;
    top:20px;
    margin:0;
    padding:0;
    color: #7f0afc;
    }
    
    #advanced_menu_toggle:hover, #advanced_menu_hide:hover {
    background-color: #7f0afc !important;
    color: #fff !important;
    }
    
    .responsive .logo img {
    margin:0 auto
    }
    
    @media only screen and (max-width: 1150px)  {
    #top #header_main > .container,#top #header_main > .container .main_menu ul:first-child > li > a {
    height:auto!important;
    line-height:auto!important
    }
    
    #header_main .container {
    visibility:visible
    }
    
    .av-main-nav li > a {
    height:auto!important;
    line-height:inherit!important
    }
    
    .header_color .logo,.header_color .main_menu {
    display:block;
    position:relative;
    text-align:center;
    width:100%;
    margin:0 auto 10px;
    padding:0
    }
    
    .logo,.logo a {
    display:inline-block;
    height:100%;
    position:relative;
    width:100%
    }
    
    #top .logo img {
        float: none;
        height: 200px;
        margin: 0 auto;
        max-height: 250px !important;
    }
    
    .header_color .main_menu {
    position:relative;
    top:21px;
    right:inherit;
    margin:0 auto 30px!important
    }
    
    #top .subtext {
        font-size: 38px;
    }
    
    .av-main-nav-wrap {
    float:left;
    left:50%;
    position:relative
    }
    
    .av-main-nav-wrap ul {
    padding-top:15px;
    position:relative;
    right:50%
    }
    
    #top .subtext,#top .logo-title {
    width:100%;
    left:0;
    top:0
    }
    }
    
    @media only screen and (max-width: 770px)  {
    .header_color .inner-container {
    padding-bottom:30px;
    padding-top:0
    }
    
    .responsive #top .logo {
    display:table;
    float:none;
    height:auto!important;
    width:100%
    }
    
    .responsive #top .logo img {
    float:none;
    display:inline-block
    }
    
    #top .subtext {
    float:none;
    display:block;
    font-size:28px;
    text-align:center;
    top:-70px
    }
    
    #top .logo-title {
    left:0;
    line-height:normal;
    position:absolute;
    text-align:center;
    white-space:normal;
    width:100%;
    right:50%
    }
    }
Viewing 30 posts - 11,221 through 11,250 (of 11,580 total)