Tagged: ,

Viewing 19 posts - 1 through 19 (of 19 total)
  • Author
    Posts
  • #764214

    Hey i tried to rotate the headline in the “fullwidth-slider”, but it doesn’t work correct.

    I installed the enfold child theme and added some information to the class .avia-caption-title like that:

    .avia-caption-title{
    font-style: italic;
    font-weight: 900!important;
    -moz-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    -o-transform: rotate(-10deg);
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
    }

    It looks like there is already a rotation with 0 deg. At first the headline is horizontal and after some milliseconds it is changing.

    My second problem is: I want to change the headline from h2 to h1. How is it possible?

    #764361

    I found the problem, but i don’t know, how to solve it.

    In the class avia-slideshow-inner li is an inline css placed and i don’t know where it come from.

    Can anyone help?

    #764615

    Hi,

    Are you referring to WELCOME TO AMBULANCE, I think you have already done it, if not you can try to add !important after the values in css to override what inline styles.

    Best regards,
    Nikko

    #764832

    Hey,

    yes it’s “Welcome to Ambulance”. But the rotation is not there all the time. For 1-2 seconds it’s gone and horizontal.

    First it’s loading the shortcode.css and the rotation works, then it loads the inline css and it’s “normal” and then it load my quick css and it’s diagonal again.

    You know what i mean?

    Best regards,

    Lasse

    #765457

    Hi Lasse,

    You can put the rules you need in enfold/custom.css or in child theme if you have one, this way the rules will be loaded last and will work.

    Let us know if you have any more questions.

    Best regards,
    Victoria

    #765459

    Hey Victoria,

    i already did that.

    Do you see the problem i have?

    #766317

    I fixed the Problem with the following:

    .avia-slideshow-inner li {
    transform: none!important;
    transition:none!important;
    }

    #766339

    Hi TR0PEN,

    Great job! :)

    Let us know if you have any more questions.
    Best regards,
    Victoria

    #766345

    Damnit. My solution only works for chrome.

    I tried already:

    .avia-slideshow-inner li {
    -ms-transform: none!important;
    -webkit-transform: none!important;
    -o-transform: none!important;
    transform: none!important;
    -ms-transition: none!important;
    -webkit-transition: none;
    transition: none!important;
    }

    But that won’t work for safari.

    Any Ideas?

    #766450

    Hi,

    Can you try to add !important after the rotate values on your posted code:

    .avia-caption-title{
      font-style: italic;
      font-weight: 900!important;
      -moz-transform: rotate(-10deg) !important;
      -ms-transform: rotate(-10deg) !important;
      -o-transform: rotate(-10deg) !important;
      -webkit-transform: rotate(-10deg) !important;
      transform: rotate(-10deg) !important;
    }

    Best regards,
    Nikko

    #767353

    Hey Nikko,

    it doesn’t work like that. I added it in the style.css in my child theme, but nothing happened.

    Best Regards

    Lasse

    #768386

    Did anyone has some problems with transform and transition with safari so far?

    I can’t find a solution for that :-/

    #769771

    Hi,

    I would like to check this but the site is on maintenance mode. Please provide a temporary login details so that we can check it. A screenshot will help.

    Best regards,
    Ismael

    #771704

    You can reach the website now on:

    #772166

    Hi!

    The headline is already rotated. Is this fixed? It is working on safari as well.

    // http://imgur.com/a/ODMil

    Best regards,
    Ismael

    #772623

    Hey Ismael,

    Unfortunately not. The problem is, that the headline is jumping.
    When you reload the page, the following happens:

    1. headline is rotated (perfect)
    2. The headline jumps to horizontal (bad)
    3. The headline is rotated (perfect)

    The problem is just the second during the reload / load.

    #773635

    Hi!

    Have you tried disabling the default transition of the caption?

    .avia_transform .av_slideshow_full .avia-caption-content, .avia_transform .av_slideshow_full .avia-caption-title, .avia_transform .av_fullscreen .avia-caption-content, .avia_transform .av_fullscreen .avia-caption-title, .avia_transform .av_fullscreen .avia-slideshow-button, .avia_transform .av_slideshow_full .avia-slideshow-button {
        -webkit-transform: none !important;
        transform: none !important;
    }
    
    .avia_transform .av_slideshow_full .active-slide .avia-caption-title, .avia_transform .av_fullscreen .active-slide .avia-caption-title {
        visibility: visible;
        -webkit-animation: none !important;
        animation: none !important;
    }

    Best regards,
    Ismael

    #775316

    I added just the second part and that worked quite well. It looks much better now. Thanks a lot!

    Only one mini problem left. On safary the sub-headline has an animation in it. So it jumps a little bit.

    It’s not a big deal, but maybe you have an idea?

    Thanks a lot, Ismael!!!

    #775772

    Hey!

    We already removed every css animation declaration so there’s no reason for the subheading to move. Did you remove browser cache before checking the page?

    Regards,
    Ismael

Viewing 19 posts - 1 through 19 (of 19 total)
  • You must be logged in to reply to this topic.