Forum Replies Created

Viewing 30 posts - 9,541 through 9,570 (of 10,892 total)
  • Author
    Posts
  • and once again: if you have a non shrinking header – you know your header hight ! from Enfold Dialog
    if you choose small i guess it is 50px – for big …. look yourself. this comes to scroll-offset on main!

    so if you have a color section with fixed positioning add a custom class – maybe topfixed or something like this:

    .responsive #top .avia-section.topfixed {
        background-position: center 50px !important;
    }

    or left or right. etc. the 50px (look to the bride theme) on css you find the background-position : center top but without regarding the header hight.

    on responsive case the sticky header is lost – and scrolls away – so background position has to get the top (0px value) !!!

    @media only screen and (max-width: 768px) {
    .responsive #top .avia-section.topfixed {
        background-position: center 0 !important;
    }
    }
    • This reply was modified 8 years ago by Guenni007.

    if you have a shrinking header there is an old thread of mine because sometimes it is not so important that the scroll-offset is missing.
    But sometimes it is.

    https://kriesi.at/support/topic/color-section-on-top-fixed-background-attachment-positioning/

    and a not so perfect solution for desktop browsers. This is a problem with header and shrinking header height. The scroll offset seems to be not considered of the positioning.

    see here the fix (for desktop browsers – not for mobile): http://webers-testseite.de/kaetz/leistungen/

    edit : look to the page above with your mobile ! i placed that “bride” image near the bottom.
    and if you look to it in landscape mode you see that the image is cropped at the bottom !

    • This reply was modified 8 years ago by Guenni007.

    but this is not a matter of responsiveness it is a trouble with fixed positioning. And that seems to be a global Problem of all Mobile Browsers.

    https://coderwall.com/p/kivwgg/position-fixed-on-mobile

    maybe there are some javascript solutions http://bradfrost.com/blog/mobile/fixed-position/#js-solutions but definitly there is no one and only good fix of that.

    • This reply was modified 8 years ago by Guenni007.

    so – did you realy read what i wrote – that is the question !

    please go and look again.
    I tested something for you .
    it seems to work on my old iphone 4s – so i could not believe that it won’t work on actual mobile phones

    by the way on very small screens you have to think about the min-height option of 100px.
    So you have to get rid of that too if the height of the shrinking header will get less than 100px.

    the rule from enfold:

    .avia-section {
        clear: both;
        float: left;
        min-height: 100px;
        position: static;
        width: 100%;
    }

    well if you look here http://webers-testseite.de/ikom/circles/
    on top there is a responsive background-image in a color section. !

    The thing is how to set up that color-section.
    Choose “no minimum height and on tab 2 choose “scale to fit”. (this is not so important because image-background size will be calculated later – but you will have to know the class for the color section)

    Than you have to know the aspect-ratio of your background image !

    f.e. your background image has a 4:1 ratio. (1200px : 300px)
    on quick css i than set up the height from the color-section by:

    .page-id-2981 .avia-full-contain {
        background-size: 100vw auto;
        height: calc(25vw);
    }

    that is the trick ! the css width is set to 100vw and height to auto
    the height of the container is in dependency to image aspect ratio. !

    but never the less you will than have to think about the content in it ( f.e. h2 headings on my example)
    and than we are again on media querries to adapt it to shrinking color sections

    the page order means if you are on dashboard page list the order of the pages there. Pages on top and down.
    The Page ID and order here is determined by creating time. – But i believe you can set a page order by quickedit option on that list.

    But my advice is to install that little plugin “intuitive custom postorder”
    Installed and activated you can go to options dialog of that plugin and set the influence of that plugin to pages, posts, portfolios, categories etc.

    after that you can drag&drop (nearby the mark field there will be than a up and down sign on hovering that place) in that pages list pages up and down creating your own order

    look here: https://wordpress.org/plugins/intuitive-custom-post-order/screenshots/

    in reply to: Portfolio Item not alligned #712615

    yes that is what i said

    well you got different original sizes of your images
    the height is 430px but i see 1200, 1440 and 1500 px width.

    but i try to help you without image resize

    in reply to: Portfolio Item not alligned #712605

    isn’t there a choice on grid layout for : portfolio grid image size ?
    try to take a panorama size – these images are cropped than – use f.e. “entry without sidebar”. because if you use the 1500x430px and your image does not have that width it could not be cropped to the same size.
    I think if you use a smaller source image size where all of your images are bigger than it will work too here

    so if the image is smaller ( f.e. 1440px x 430px ) it will be enlarged to (1500px x 448px)
    if it is 1200px x 430px it will enlarged to 1500px x 537px

    in reply to: Portfolio Item not alligned #712585

    well you got different original sizes of your images
    the height is 430px but i see 1200, 1440 and 1500 px width.

    and you are using the grid portfolio layout. So there is a grid with fixed dimensions.
    try the Masonry – you can choose portfolio entry as well and than take under size settings the perfect grid option.
    If you put the masonry not in a container it is 100% screenwidth too!

    • This reply was modified 8 years ago by Guenni007.

    well i know one method by having a header.php copy in the child-theme folder
    Open that copy and look for: (it is in line 9 on actual enfold header.php)

    
    $av_lightbox= avia_get_option('lightbox_active') != "disabled" ? 'av-default-lightbox' : 'av-custom-lightbox';
    

    and replace it by :

    
    $av_lightbox= avia_get_option('lightbox_active') != "disabled" && !is_page(990) ? 'av-default-lightbox' : 'av-custom-lightbox';
    

    perhaps there was a hook method – to do this.

    and you see that there is no alignment now because icons are different width – give the container a fix width:

    #av_gmap_1 .av_font_icon {
        color: #9c27b0 !important;
        opacity: 1 !important;
        width: 36px !important;
    }

    thats it

    if you want it a bit bigger those icons:

    #av_gmap_1 .av-icon-char::before {
        font-size: 24px;
        position: relative;
        top: 2px;
    }

    edit: or better place the icons with vertical align:

    #av_gmap_1 .av-icon-char::before {
        font-size: 24px;
        position: relative;
        vertical-align: middle;
    }
    • This reply was modified 8 years ago by Guenni007.

    yes i understand that but otherwise you have to wait til a mod is on your thread:

    i don’t understand how you create this bubble info – because there are some color style informations on each and an opacity set.
    you can change it all by :

    #av_gmap_1 .av_font_icon {
        color: #900 !important;
        opacity: 1 !important;
    }

    but i guess it is the opacity info which you want to get rid off – so only change that part of code

    if you want a specific color for each tell us.

    • This reply was modified 8 years ago by Guenni007.

    it would be much easier to help you with a link.
    How did you place the fontello icon in that google map?

    in reply to: Using a font icon in templates #711362

    zwei deutsche die sich englisch unterhalten :lol:

    – ja das hatte ich ja ganz am Anfang für dich auch so gesetzt. Dann dachte ich das Pumpen wäre besser – in Kombination sieht es gut aus und ist in der Größe auch nicht so aufdringlich.

    Wäre das nicht auch ne gute idee für dich. Auf der Testseite habe ich das Hamburger Menu für die gesamte Seite – also auch auf Mobile gesetzt und ich überdecke nicht die ganze Seite mit dem Menu sondern nur einen Teil (wobei man natürlich die Wahl hat wie das abgedeckt wird (dunkel – hell oder farbig etc. ):

    http://webers-testseite.de/elegant

    PPS: Mein Hoster hat momentan Probleme, deshalb könnten manche Seiten von mir momentan nicht erreichbar sein.

    PPPS: :wink: du darfst mir aber gerne mal einen Tip geben worauf ich beim Umsteigen auf https achten muss. !Danke
    E-Mail siehst du ja bei anklicken meines Avatares.

    • This reply was modified 8 years ago by Guenni007.
    in reply to: Using a font icon in templates #711049

    you can animate alot with those keyframes … colors, scale , rotation etc. pp

    in reply to: Using a font icon in templates #711046

    see here:

    http://lea.verou.me/2012/12/animations-with-one-keyframe/

    my code for the example page:

    @keyframes pound {
    	from, to { transform: none; }
    	50% { transform: scale(1.4); }
    }
    
    .heart::before {
        content: "\e806 ";
        font-family: entypo-fontello;
        font-size: 14px;
        position: relative;
        top: 2px;
        animation: pound .7s infinite alternate;
        display: inline-block
        }

    by the way on css you have to substitue the u in ue806 with that backslash – you find it by alt+shift+7

    in reply to: Using a font icon in templates #711038

    a quick and dirty way is to place the text in this way:

    made with <span class="heart">in</span> Germany

    and place the heart with .heart:before

    you can see that on webers-testseite.de/ikom in the socket
    code:

    .heart::before {
        content: "\e806 ";
        font-family: entypo-fontello;
        font-size: 14px;
        position: relative;
        top: 2px;
    }
    in reply to: maximum content width #710629

    hm i got this issue the first time of many installs now to.
    I defintly found the grid.css line but in former times this container rule is overwritten by enfold options dialog ! entry.
    I got now one installation where the grid.css rule seem to work like an important rule ??? what could it be.

    i can see the entries in my enfold-child.css at the bottom of it :

        .container {
            width: 100%;
        }
        .container .av-content-small.units {
            width: 70%;
        }
        .responsive .boxed#top,
        .responsive.html_boxed.html_header_sticky #header,
        .responsive.html_boxed.html_header_transparency #header {
            width: 1510px;
            max-width: 90%;
        }
        .responsive .container {
            max-width: 1510px;
        }
        #top #wrap_all .all_colors h1,
        #top #wrap_all .all_colors h2,
        #top #wrap_all .all_colors h3,
        #top #wrap_all .all_colors h4,
        #top #wrap_all .all_colors h5,
        #top #wrap_all .all_colors h6 {
            color: #425719;
            font-weight: normal;
        }

    but it has no influence on it.

    Edit: :lol a noob error. i didn’t close a media querrie rule at the end ! :yoo the missing second closing brace

    • This reply was modified 8 years ago by Guenni007.
    in reply to: Site Speed #710002

    on bwp minify don’t forget to set up the “Cache age” this is often mentioned by gtmetrix that the minified css f.e. got a too near expires header. etc.

    in reply to: Site Speed #710001

    btw. i do not allways install wp-supercache. Sometimes it is a more and bigger benefit to have a good htaccess file on wordpress installation.

    If your server supports gzip and or mod_deflate i have often

    ( don’t forget to include the original entries in your existing htaccess file – something like this:)

    `# BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ – [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    # END WordPress`

    here is a standard htaccess file i often use (even to get better results on those testing pages :lol: )

    in addition to your existing entries !!! :

    # Deny from
    <files wp-config.php>
    order allow,deny
    deny from all
    </files>
    
     
    # Directory Browsing
    Options All -Indexes
    
    # Keep-Alive
    <ifModule mod_headers.c>
       Header set Connection keep-alive
    </ifModule>
     
    # Gzip
    <IfModule mod_mime.c>
        AddType application/javascript          js
        AddType application/vnd.ms-fontobject   eot
        AddType application/x-font-ttf          ttf ttc
        AddType font/opentype                   otf
        AddType application/x-font-woff         woff
        AddType application/x-woff              woff
        AddType image/svg+xml                   svg svgz 
        AddEncoding gzip                        svgz
    </Ifmodule>
     
    # GZip Kompression
    <IfModule mod_gzip.c>
     mod_gzip_on       Yes
     mod_gzip_dechunk  Yes
     mod_gzip_item_include file      \.(html?|txt|css|js|svg|php|pl)$
     mod_gzip_item_include handler   ^cgi-script$
     mod_gzip_item_include mime      ^text/.*
     mod_gzip_item_include mime      ^application/x-javascript.*
     mod_gzip_item_exclude mime      ^image/.*
     mod_gzip_item_exclude rspheader ^Content-Encoding:.*gzip.*
    </IfModule>
    
     
    # Browsercache
    <IfModule mod_expires.c>
     ExpiresActive On
     ExpiresDefault "access plus 1 month"
     ExpiresByType text/css "access plus 1 month"
     ExpiresByType text/javascript "access plus 1 month"
     ExpiresByType text/html "access plus 1 month"
     ExpiresByType application/javascript "access plus 1 month"
     ExpiresByType application/x-javascript "access plus 1 month"
     ExpiresByType application/x-font-ttf "access plus 1 month"
     ExpiresByType application/x-font-woff "access plus 1 month"
     ExpiresByType application/x-woff "access plus 1 month"
     ExpiresByType application/xhtml-xml "access plus 600 seconds"
     ExpiresByType image/gif "access plus 1 month"
     ExpiresByType image/jpeg "access plus 1 month"
     ExpiresByType image/svg+xml "access plus 1 year"
     ExpiresByType image/svg "access plus 1 year“
     ExpiresByType image/png "access plus 1 month"
     ExpiresByType image/x-icon "access plus 1 month"
    </IfModule>
    
     
    # Deflate by FileType
    <IfModule mod_deflate.c>
     AddOutputFilterByType DEFLATE text/plain
     AddOutputFilterByType DEFLATE text/html
     AddOutputFilterByType DEFLATE text/xml
     AddOutputFilterByType DEFLATE text/css
     AddOutputFilterByType DEFLATE text/javascript
     AddOutputFilterByType DEFLATE image/svg+xml
     AddOutputFilterByType DEFLATE application/javascript
     AddOutputFilterByType DEFLATE application/xml
     AddOutputFilterByType DEFLATE application/xhtml+xml
     AddOutputFilterByType DEFLATE application/rss+xml
     AddOutputFilterByType DEFLATE application/atom_xml
     AddOutputFilterByType DEFLATE application/x-woff
     AddOutputFilterByType DEFLATE application/x-font-ttf
     AddOutputFilterByType DEFLATE application/x-font-woff
     AddOutputFilterByType DEFLATE application/javascript
     AddOutputFilterByType DEFLATE application/x-javascript
     AddOutputFilterByType DEFLATE application/x-shockwave-flash
    </IfModule>
     
    # ETag
    Header unset ETag
    FileETag None
    
    <FilesMatch "\.(ttf|otf|woff)$">
    <IfModule mod_headers.c>
    Header set Access-Control-Allow-Origin "*"
    </IfModule>
    </FilesMatch>
    in reply to: Site Speed #710000

    the footer has a gif file as background – no reason for that because there is no transparency at all.
    the gif got over 500kb. the jpg 63kb !

    klick on the images to see a bigger size

    in reply to: Site Speed #709999

    btw. proof your images.
    You got wonderful images but on internet sometimes it is better to have small sizes of images.
    on three images i can obtain big loss of space but with less loss of quality and use please with a higher compression level and progressiv instead of optimized
    Chairs-around-outdoor-burning-fire-pit–1500×999.jpg : 173kb versus 500kb
    Los-Altos-Hills-Guesthouse-Main-House-Pool-Firepit-at-Dusk-1500×991.jpg : 152kb. versus. 434kb
    Modern-patio-next-to-swimming-pool-1500×999.jpg : 198kb. versus. 529kb

    see here : only in the sky you see a bit more jpg artefacts

    And keep in mind that this is a slideshow so these quality differences will not be easy to see in a few seconds.

    btw i only do a new save with more compression and in progressiv mode thats all – the dimensions are exactly the same

    in reply to: Fullscreen Login Page #709800

    you can use f.e. the plugin maintenance creates a nice Pluginpage ( you can upload your own background-image.) If you don’t like that logged-in users do something with your site you have to set them as Abonnent only!

    Links erased now
    i don’t want to have the site above offline for a long time ! even if it is only a playground for me.
    So have a look to that little plugin – Link is behind maintenance word !

    • This reply was modified 8 years ago by Guenni007.

    do not forget to generate a mo file too. You have to upload both!

    or if you want to hold that hint : tranlate it in your language files

    edit: :lol
    the original Text in english is: You might want to consider some of our suggestions to get better results:

    and is translated in the turkish lang files to the german translation ! ???
    _____________________

    PS : that was the reason why i answered in english and german as well. – Sorry.
    Normaly the untranslated files leave as they are – in english

    i dont know where this comes from – but the fast an quick and dirty way was:

    .search_not_found > p {
        display: none;
    }

    so in total the rule was:

    .search_not_found h3, .search_not_found > p,
    .search_not_found .widget.avia_combo_widget {
        display: none;
    }

    how do you obtain the multilingual site? A plugin?
    Because this “If you are not happy with the results below please do another search” should be turkish too! if you use a good language switcher !

    in reply to: insert a logo at every bottom page #708868

    well if you work with a child theme do the following in the child theme functions.php :

    add_action('get_footer', 'add_div_before_footer');
    function add_div_before_footer(){
    	?>
    	<div class="container_wrap" id="extracontainer">
    		<div class="container">
                         Content
    		</div>
    	</div>
    	<?php
    }

    the id is for styling your container than. The Content is what you like to position there ( Images or something else)

    if you like to place some content which you built with the advanced layout builder – activate the debug mode – copy that code and place it inbetween instead of “Content”.

Viewing 30 posts - 9,541 through 9,570 (of 10,892 total)