Viewing 30 results - 103,531 through 103,560 (of 106,398 total)
  • Author
    Search Results
  • #136108

    Sorry it wasn’t quite the solution you were looking for.

    Let us know if you have any other questions or issues.

    Regards,

    Devin

    #136173

    Hi blueunderground,

    I’m not sure what you mean. Are you trying to get a specific image that fits exactly into the header background?

    If so that will take quite a bit of css tweaking to get right and make sure it works on all browsers and then responds to the re-sizing on scroll as well as the responsive changes.

    Regards,

    Devin

    #131522

    You can send the information to my email at DevinVinson (at) gmail.com. Make sure to include a link to this topic so that my spam filter doesn’t grab it :)

    Try adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:

    .avia-content-slider .slide-image, .avia-content-slider .slide-image img {
    border-radius: 0px;
    }

    Its small enough where I just hadn’t noticed it before but that should remove the border radius.

    Regards,

    Devin

    #136046

    Glad you got it working :)

    Let us know if you have any other questions or issues.

    Regards,

    Devin

    Yes. Please look at the featured images for the blog posts shown at the bottom of the home page, and for the featured images at the top of each post on the blog page, for this site:

    uufreethinker.com

    To my eye, these images are slightly rounded (not perfectly sharp corners).

    The site is still under construction, but I will temporarily activate it so that you can look at it.

    Thanks,

    John

    #28121
    chronospd
    Participant

    1. On one of my laptops Win 8 screen res 1366×768 (with touch screen capabilities) the header does not reduce in size when you start scrolling down the page. (if headers set to fixed with social icons)

    (does the same on ipad 2) (acts the same on your sample, it’s not my installation)

    2. Also like on ipad, on that laptop the roll over effects (image overlay) don’t work when I hover the mouse over. These are controlled by:

    .image-overlay .image-overlay-inside::before

    .image-overlay.overlay-type-extern .image-overlay-inside::before

    I’m ok with disabling overlay for ipads and phones, but I would like to have them enabled for my laptop. How to I target the laptop in the css?

    (acts the same on your sample, it’s not my installation)

    3. Easy Slider Left and Right Navigation arrows/buttons: On desktops they appear when you hover your mouse over the slider.

    On mobile they show by default. The problem is that on ipads, when you have 4 columns with easy sliders, they are small in size and the arrows cover almost the entire slide. They are not responsive.

    How to I target their size (a smaller size) for ipads? They are fine on phones as the 4 columns show as one column and the easy slider is bigger.

    4. I designed one page with the Avia layout builder. Let’s say that I want to copy an entire section from that page to another page exactly as it is, with all the contents inside, how do I do that?

    Let’s say I have a full column, then 4 smaller columns inside with content, I want to copy the parent full column with the other 4 and content inside to a new page.

    If I switch from avia layout builder to the Default Editor I see nothing in the content section (visual or text view).

    Is there an easy way to do this?

    Thank you!

    #136151

    Thanks, adding the class solve it. I had just to adjust the extra padding/margins given by the class in the base.css. Thanks again!

    #136183

    Iphone 4 & 5, iOS 6.

    (On android it is working fine)

    #28114
    bryu1024
    Participant

    When I hover on thumbnail images like in portfolio grid, it works fine with showing up a little arrow above faded image.

    But in the LayerSlider, images with a link does not animated. Is it my fault?

    Related CSS is something like this,

    a:hover .image-overlay .image-overlay-inside {-webkit-animation ~~~

    It used to work in earlier version of Enfold. I tested.

    #135484

    lol oh its a font. Now I see. Thanks so much, learning learning learning :-)

    I will try it out tomorrow.

    #134412

    Please read over the post from the top.

    I am getting this problem when loading images in the preview gallery on IE10:

    http://www.chriswardphotography.com/test-area/examples/image-test2.jpg

    The ajax is only mentions as Ismael gave me some CSS that fixed the loading problem in the gallery but messed with the ajax thumbnails in the portfolio page so I could not use it.

    #top div .avia-gallery img {

    max-height: 100%;

    }

    #135496

    Hi, thanks for your reply.

    When we do this, the Picture in the detail view stays small. but we need the big picture like “single author, big preview pic” in the detail. but the small picture on the left.

    is this possible somehow?

    #134411

    What is the issue on this page? I apologize I’m just not following the thread at this point as that page has a regular gallery but no ajax portfolio. For me at least, I’m getting no issues at that link for that gallery.

    #135706

    Hey Ismael,

    Unfortunately that plug-in did not seem to fix any of the issues. My website can be seen here: http://goo.gl/jGUCw

    You will notice most of the Entypo icons are broken rectangles. I was able to fix the menu/header overlap by manually changing the padding of each menu item, but it isn’t very convenient as I will have to copy/paste the code every time I update the theme. The images for the ‘Recent Posts’ plug-in do not fit in the boxes correctly, the blog header images on the ‘Trainers Toolbox page’ are all stretched, the bottom footer breaks due to length, the hovers on the ‘Meet the Team’ page cause the images to disappear, etc.

    #135483

    Hi artistic24459,

    Your original rgba color code is incorrect because its rgba and you don’t have an alpha value. So it should just be rgb.

    The icon is a font so if you want it larger you just increase the font size (its the best thing about using font file for icons!).

    For example, this gives you a gray overlay with a giant icon:

    .image-overlay {
    position: absolute;
    background: #333;
    z-index: 500;
    height: 100%;
    width: 100%;
    opacity: 0;
    filter: alpha(opacity=0);
    }
    .image-overlay .image-overlay-inside::before {
    content: "E744";
    font-family: 'entypo-fontello';
    font-size: 120px;
    font-weight: normal;
    }

    .image-overlay .image-overlay-inside::before {
    position: absolute;
    border-radius: 50px;
    background: #000;
    height: 80px;
    width: 80px;
    line-height: 80px;
    left: 50%;
    top: 50%;
    margin: -40px 0 0 -54px;
    z-index: 500;
    text-align: center;
    color: #fff;
    }

    a:hover .image-overlay .image-overlay-inside {
    -webkit-animation: avia_pop_small 0.5s 1 cubic-bezier(0.175, 0.885, 0.320, 1.275);
    -moz-animation: avia_pop_small 0.5s 1 cubic-bezier(0.175, 0.885, 0.320, 1.275);
    -o-animation: avia_pop_small 0.5s 1 cubic-bezier(0.175, 0.885, 0.320, 1.275);
    animation: avia_pop_small 0.5s 1 cubic-bezier(0.175, 0.885, 0.320, 1.275);
    }

    I included the animation just so you can have it as a reference. If you wanted everything to only effect the portfolio on that page you could use the page ID selector as a prefix to your other selectors.

    Hope this helps.

    Regards,

    Devin

    #28100
    Martin
    Participant

    Hello!

    We want to present our login page with https. All css are working now, but there is still an ugly security warning from the browser because the images in the upload folder are implemented with http.

    For example: https://www.wiseseo.de/anmelden/?version=platin

    implements the logo with: http://www.wiseseo.de/wp-content/uploads/2013/08/wise-seo-logo-header.png.

    Can you please help me?

    Thanks & regards,

    Martin

    #28097
    traditionalteak
    Participant

    Hey,

    First of all, nice template!

    How can I open an attachment on a new webpage? I use an image and when I click on it, it opens the lightbox and not a SWF extension.

    for example: http://www.traditionalteak.nl/wp/

    #135464

    I LIKE your DESIGN a LOT Mr. Headbentde – I’ll come back 2 check it when it is done !!!

    #28095
    Iano999
    Participant

    Hi,

    I spoke with Kriesi a couple of days ago about where to find the settings to change the fullscreen slider from 100% height to around 90% height coverage. I was aiming to create something similar to ‘yourkarma.com’, where there is a tab/bar below the slider to indicate there’s more content below.

    He suggested I hook into the fullscreen section output with the following code, which would overlay a bar with text I could then style, whilst keeping the 100% image height :

    add_filter('avf_section_container_add','kriesi_section_add',10,2);
    function kriesi_section_add($output, $params)
    {
    if($params['id'] == 'full_slider_1')
    {
    $output .= "<div class='your-button'><a href='#'>Click here</a></div>";
    }

    return $output;
    }

    This solution would be perfect, but once I’ve copied it all over and set up the css class I can’t see the bar, and in some cases get whitescreened. If you could shed any light on why it’s not working I’d appreciate it massively.

    I can send over the URL/login details for the site in an email if required – it’s currently a private development for a company so I can’t post it publicly.

    Thanks for your help,

    Graeme

    #136150

    Hey,

    Can you give us a link to the page? You can add class=”alignleft” to the anchor tag.

    Regards,

    Ismael

    #135976

    Thanks Devin… Here is the older post…

    https://kriesi.at/support/topic/slideshow-is-not-auto-rotating-when-previewing-in-ajax

    And I thought I’d try it again, since I’ve upgraded the template since, but I can’t even locate that copy in slideshow.php.

    Essentially… once one of these is opened up, and the slideshow starts (now it works, that was the bug Kriesi was referring to) I do NOT want the user to be able to click on these images from the slideshow to open them in a lightbox. I want to completely disable that function. They’re already watching the slideshow with full size images…

    http://networkgreenhouse.com/responsive/portfolio/

    Thanks!

    #135644

    Hi,

    Go to wp-content/plugins then look for some plugins that you are not using. Delete theme. Deactivate the Weptile Image Slider, see if it fixes the issue.

    Regards,

    Ismael

    #136034

    In reply to: Blog Posts

    Hey,

    You can remove the big preview image using this on your Quick CSS

    .page-id-731 .big-preview.multi-big {
    display: none;
    }

    or this:

    .blog .big-preview.multi-big {
    display: none;
    }

    Regards,

    Ismael

    #136208

    Hi,

    Sorry but I can’t understand you clearly. First create a page then insert the Portfolio Grid element. Configure the options but don’t select a category this time. Publish the page then create some Portfolio Items, add a featured image for each items. All portfolio items will show up on that page.

    To learn more about the theme, please watch these videos: https://vimeo.com/channels/aviathemes

    Regards,

    Ismael

    #135463

    Hey,

    Beer sounds good! Glad we could help. :)

    Cheers,

    Ismael

    #136148

    Updated to the the new 2.0 version but still does the same thing. I did publish the page and refresh cache in my browser. But if the image has a link all the following ones break and go down the clicked one…. i do not want to add individual columns for each image because we have so many per gallery.

    Please advise, Thanks

    #136182

    Hi kpellikaan,

    Which iPhone do you have and which OS version? Kriesi is the only one of us that is able to test for iPhones specifically but it should scale somewhat based on the image settings for the color section.

    Regards,

    Devin

    #136147

    Hi Magh,

    There was an old bug that did something similar to this so if you are not using Enfold 2.0 please update your theme files and see if that fixes the issue.

    I did a quick how-to video for updating here: https://vimeo.com/channels/aviathemes/67209750

    Regards,

    Devin

    #135415

    In reply to: ie8 images in posts

    I have a similar problem with images in the Blog section in IE8. They are distorted to very tall and skinny. Could you be more specific about what width and height attributes to remove?

Viewing 30 results - 103,531 through 103,560 (of 106,398 total)