Viewing 30 results - 96,001 through 96,030 (of 106,500 total)
  • Author
    Search Results
  • #230079

    Hey Benjaminlivingthebrand!

    Can you post the link to your website and point out the sections where flickering happens? On which browsers and OS have you tested your website?

    Regards,
    Yigit

    #230074

    Hi!

    Which images exactly? If featured images, please add following code to Quick CSS in Enfold theme options under Styling tab

    @media only screen and (max-width: 767px) {
    .responsive .big-preview { 
    display: none; }}

    Regards,
    Yigit

    #230060

    Hi Ismael,

    thanks for your support, very good.

    I have the last one question, how is the CSS class for the image, that I can hide it (the image) in responsive layout?

    Thanks a lot.

    #230058

    Hello,
    thank you very much now I know to configure the Home slider its in Avanced template editor/ multimedia element/ layer avanced slider
    I want to create a new div with 100%
    attached image

    I want to have a layer full width of the browser.
    In this example I want to show google map in full width.

    attached image

    It’s just an example I want to create layers and add background images.

    I hope you understand me now
    thanks for your time

    #230057

    Hi,

    I recently almost finished my website but now my website kind of flickers on different browsers.
    In most cases the images move from left to right, and in some cases the text changes from width.

    Can you help me with this?

    #230040

    In reply to: Pinterest

    Thanks Josue,

    The code works but the concept by Pinterest just doesn’t work very well. The pinit button is showing up in the wrong places and don’t work when it does show up. But thank you for pointing me in the right direction. I just don’t think Pinterest has figured this out. There is a way to go through and tag images you don’t want this to show up on, but that still wouldn’t solve all the problems. I’ll come back to it when I begin my photography site.

    Best, Jas

    #230030
    ftt123
    Participant

    How to insert at the end of the post “you may also like…”
    http://kriesi.at/themes/enfold/2013/10/21/postformat-gallery-multiple-images-with-different-sizes/
    thanks!

    #230028
    xpoveda
    Participant

    Hi,

    My customer wants this css change.

    http://img854.imageshack.us/img854/2080/7ssl.png

    Can you help me?

    Thanks so much!!

    Xavier.

    #230009

    Josue,

    Scroll down and you will see a slider with the two pictures of the women. I want to achieve the same thing on the new site.

    Also, the images that I used on the new site (codelessme.com/weightlossrebels) are the same as the ones found on weightlossrebels.com yet the images are pixelated due to being stretched to fit the column. I selected original height and original width as the slider dimensions, but that clearly isn’t happening.

    #229993

    Hello,

    Please try to deactivate all third party plugins to see if it gets fixed.

    Regards,
    Josue

    #229990

    Hi David!

    In this website the background does fill the entire area too.

    The only difference i’m seeing is the menu position.

    Regards,
    Josue

    Hi Devin,

    Thanks for your feedback.
    If I choose “Define custom link” and then add the exact url to the image using the url inside WordPress of the image I want to show in the lightbox, is the result the same as the Masonry Gallery of the demo http://kriesi.at/themes/enfold/shortcodes/masonry-gallery/, i.e. you can move to different images of the portfolio using the left and right arrows inside the lightbox?

    For what concern the lightbox dimensions, do you mean that a “portrait” image will be displayed with the same height of a “landscape” image? In that way, the portrait image is displayed as a small image and a landscape image is instead displayed as a big image, independently of the real dimension of the images.

    Kind regards,
    Giovanni

    #229979

    In reply to: Slider Dimensions

    Hey Josh3Roush!

    Kriesi sets the fullwidth image size to 1500 x 430px by default and this size is also used for the images on the demo page. You can change the dimensions in functions.php though – search for:

    
    $avia_config['imgSize']['featured'] 		 	= array('width'=>1500, 'height'=>430 );						// images for fullsize pages and fullsize slider
    

    and replace 1500 and 430 with your custom values if necessary.

    Cheers!
    Peter

    #229967
    This reply has been marked as private.
    #229964

    Hey!

    It seems like the font file doesn’t load properly. I guess the mime type of the file is not correct and thus firefox doesn’t load the woff/ttf file as font but as data file. Try to add this code to the htaccess and cear the browser cache:

    
    <IfModule mod_mime.c>
      # Audio
        AddType audio/mp4                                   m4a f4a f4b
        AddType audio/ogg                                   oga ogg opus
    
      # Video
        AddType video/mp4                                   f4v f4p m4v mp4
        AddType video/ogg                                   ogv
        AddType video/webm                                  webm
        AddType video/x-flv                                 flv
    
      # Web fonts
        AddType application/font-woff                       woff
        AddType application/vnd.ms-fontobject               eot
    
        # Browsers usually ignore the font MIME types and simply sniff the bytes
        # to figure out the font type.
        # http://mimesniff.spec.whatwg.org/#matching-a-font-type-pattern
    
        # Chrome however, shows a warning if any other MIME types are used for
        # the following fonts.
    
        AddType application/x-font-ttf                      ttc ttf
        AddType font/opentype                               otf
    
        # Make SVGZ fonts work on the iPad.
        # https://twitter.com/FontSquirrel/status/14855840545
        AddType     image/svg+xml                           svgz
        AddEncoding gzip                                    svgz
    </IfModule>
    

    The code is taken from: https://github.com/h5bp/html5-boilerplate/blob/master/.htaccess
    You can also try to re-install the latest version of the theme – then you can be sure that the font files are not corrupt/broken. Use ftp: https://vimeo.com/channels/aviathemes/67209750 to update the files.

    Regards,
    Peter

    #229961

    Hey!

    It seems like the font file doesn’t load properly. I guess the mime type of the file is not correct and thus firefox doesn’t load the woff/ttf file as font but as data file. Try to add this code to the htaccess and cear the browser cache:

    
    <IfModule mod_mime.c>
      # Audio
        AddType audio/mp4                                   m4a f4a f4b
        AddType audio/ogg                                   oga ogg opus
    
      # Video
        AddType video/mp4                                   f4v f4p m4v mp4
        AddType video/ogg                                   ogv
        AddType video/webm                                  webm
        AddType video/x-flv                                 flv
    
      # Web fonts
        AddType application/font-woff                       woff
        AddType application/vnd.ms-fontobject               eot
    
        # Browsers usually ignore the font MIME types and simply sniff the bytes
        # to figure out the font type.
        # http://mimesniff.spec.whatwg.org/#matching-a-font-type-pattern
    
        # Chrome however, shows a warning if any other MIME types are used for
        # the following fonts.
    
        AddType application/x-font-ttf                      ttc ttf
        AddType font/opentype                               otf
    
        # Make SVGZ fonts work on the iPad.
        # https://twitter.com/FontSquirrel/status/14855840545
        AddType     image/svg+xml                           svgz
        AddEncoding gzip                                    svgz
    </IfModule>
    

    The code is taken from: https://github.com/h5bp/html5-boilerplate/blob/master/.htaccess
    You can also try to re-install the latest version of the theme – then you can be sure that the font files are not corrupt/broken. Use ftp: https://vimeo.com/channels/aviathemes/67209750 to update the files.

    Regards,
    Peter

    Hey Yigit
    Thanks for your quick answer. This fix nearly fits in Firefox but in Chrome and Safari there are still 42px margin-bottom. Any ideas?
    I think my idea, having a transparent graphic “sitting” on the following section, might be interesting vor others, too.
    Kind regards,
    Henning

    #229934

    Hi Rusty!

    Can you please post a screenshot of the issue? I’ll ask Kriesi and Devin to check it. Meanwhile, please try to add this on your custom.css or Quick CSS:

    @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) { 
        img, a img {
        max-width: 100%;
       }
    }
    

    Nice website. :)

    Regards,
    Ismael

    #229925

    Hey Miguel!

    Try adding this code to the Quick CSS:

    .single .entry-content .avia_image {
        margin-bottom: 50px;
    }

    Cheers! 
    Josue

    #229896

    Hey!

    Try uploading the image again (via Media > Add new), maybe it wasn’t properly uploaded.

    Please note that this forum is for theme support, WordPress/server issues are out of the scope of the support we can offer.

    Cheers!
    Josue

    #229895

    Thanks. I found it, but it doesn’t work. When you click on the edit button and the edit screen displays, the image doesn’t display. There is the broken image icon. I’ve tried resizing the image and it gives an error message this can’t be done. ?

    #229890
    JadynWelch01
    Participant

    I am trying to figure out how to extend the transparency overlay across 100% of the image in my fullscreen slider. I’d also like to increase the font size of the caption text “SHADE FROM THE OUTSIDE IN”. Any assistance would be much appreciated!

    Website url is http://deluxeawning.net/ and it’s the first feature on the page that I’m referring to. Thanks!

    Jadyn

    #229887

    Hi Kim!

    Refer to this topic:
    http://en.support.wordpress.com/images/image-editing/

    Best regards,
    Josue

    Hi!

    It’s the image dimensions, the roll over won’t appear if the image height is less or equal than 100px.

    Regards,
    Josue

    #229877

    Hey D5WDesignGroup!

    The images will act however you set it in the option for “Background Repeat”. It will not automatically scale to always show the whole image but instead it will fit so that the background is always tiled, covered etc.

    Cheers!
    Devin

    #229873

    http://www.fitochem.com . Pelase check the home page, the section TESTIMONIOS, is not working, this page http://fitochem.com/division-pecuaria/ there are 2 bars down in the left that are not working. I have also changed the animations in my images and erase my easy sliders. Do you want access to dashboard?

    #229872

    Hi!

    You can link to the image and host it on somewhere like dropbox or imgur. Note that the automatic sidebar navigation is created based on the page hierarchy you define on your pages. If you want a custom menu then you can add it to your sidebar in the WordPress widgets manager in Appearances>Widgets.

    Regards,
    Devin

    Hey jeangiovanni!

    You can choose to manually tag your portfolio items with “landscape” or “portrait” to get them to output at that ratio. Otherwise there is no setting to change how the script outputs the images (besides what is already listed there).

    On each individual portfolio item you will need to go to the “Additional Portfolio Settings” section under the visual editor. Choose “Define custom link” and then add the exact url to the image you want to show in the lightbox.

    The lightbox size is not something that can be changed on the fly however and will output the image you define in the link to fit the screen.

    Best regards,
    Devin

    #229866

    Hi!

    Can we see the site and page live? The animation is a css effect and shouldn’t have any effect on the image showing/not showing.

    Cheers!
    Devin

    #229862
    D5WDesignGroup
    Participant

    When adding images in the Color Sections, the images do not resize when the browser window is reduced.

Viewing 30 results - 96,001 through 96,030 (of 106,500 total)