Viewing 30 posts - 1 through 30 (of 32 total)
  • Author
    Posts
  • #278753

    Hi guys, i’m having problem with my slider.. i have content on the slider and i’d like to make the height bigger only for mobiles.. so the content can fit it…

    Thanks!!

    #278766

    One little more thing.. i’d like to change the style for my lightbox… i’ve seen there are other style for prettyPhoto, but i don’t know how to change it in the theme. Thanks!!!

    #279658

    Hi,

    Can you post the link to your website please?

    Regarding the other question, refer to this topic:
    https://kriesi.at/support/topic/change-layout-prettyphoto/#post-173889

    Cheers!
    Josue

    #280639

    Hey Josue.. my bad.. world cup.. i’m from brasil.. so you know.. hehe.. to much party these times…

    Here is the link:

    http://artstier.casaw.com.br/

    thanks!!! the thing with the prettyPhoto style is solved! thanks a lot!!!

    Just with my slider for mobile.. i want to be able to change the height for mobile.. i preffer the slider bigger and lose bothside os my bg than lose text content..

    thanks!!!

    #280650

    Josue,, only one more thing.. I have this easy slider on main page.. with a link for contact page.. but i’d like to have the link in imagem with out this effect on mouse-over… i’d like just to be a normal image link..

    thanks!

    #280778

    Hi!

    1. This code will make the slider 400px height on mobiles:

    @media only screen and (max-width: 480px) {
        #full_slider_1 .avia-slideshow-inner, #full_slider_1 img{
            height: 400px !important;
        }
    }
    

    2. This will hide the overlay on the contact image link:

    .avia-slideshow-inner .image-overlay {
        display: none !important;
    }

    Cheers!
    Josue

    #281457

    Hey Josue!!! it works !!! But when the image stretch to 400px it gets distorted..
    take a look… and i even tryed put this in the code.. width: 800px !important;
    but it mess with the text position…

    tha second one works perfectly.. thanks a lot!!
    =D

    #281459

    Yes, that’s a drawback, the only solution i see in this case would be to use a fullscreen slider or a layerslider (with the img set as background).

    Best regards,
    Josue

    #283197

    Hey Josue… i got it!
    i’ve done this:

    @media only screen and (max-width: 480px) {
    #full_slider_1 .avia-slideshow-inner, .caption_fullwidth, #full_slider_1 img{
    height: 300px !important;
    width: 900px !important;
    right: 275px;
    }
    }

    One more thing.. when i have more categories on mansory.. it display “ALL” to show all categories… but i’d like to change “ALL” to “ALL ARTS” which file should i open to change this ?

    Thanks!

    #283215

    Hey!

    Try adding this code to the Quick CSS:

    .all_sort_button:after {
        content: " Arts";
    }

    Cheers! 
    Josue

    #289555

    Hey Josue.. it didn’t work.. and i’m having anotehr problem aswell with translation.. and i already saw on the file epoedit.. and dind’t find where to change it..

    http://www.artstier.com/paintings/

    it says on the breadcrumbs: VOCÊ ESTÁ AQUI: and it should say.. YOU’RE HERE: how can i change the language ?

    thanks!!!

    #289683

    Hey!

    Do you have your WordPress dashboard in Portuguese?

    Regards,
    Josue

    #289695

    mmm.. yes.. how can i change it ? thanks!

    #289700

    Hey!

    Open wp-config.php (located at the root of the WordPress installation) and look for this line:

    define ('WPLANG', 'pt_BR');
    

    Replace it by:

    define ('WPLANG', 'en_US');
    

    Best regards,
    Josue

    #296493

    Great Josue.. sorry about not responding you.. but it worked fine!!!

    But up there i asked you this:

    One more thing.. when i have more categories on mansory.. it display “ALL” to show all categories… but i’d like to change “ALL” to “ALL ARTS” which file should i open to change this ?

    Thanks!

    it didn’t work.. and now my client want me to change ALL ARTS to “TODAS ARTES” so i should be able to completely change the saying.. how can i do that ?

    And one more little thing.. he’s telling me that the phrases in the slider.. take to long to show.. can i make it show faster than right now? is there any place that i can control how fast the phrases show in the slider ? Thanks!!!

    #296510

    Hey!

    Where in the website is this “ALL” message being shown? i couldn’t find it.

    Cheers!
    Josue

    #296524

    Actually we took it off for now.. but later he’s going to filter the paintings by regions.. like.. south america, europe.. but for now we took it off.. but when i have categories.. stays like this: ALL – SOUTH AMERICA – EUROPE – UNITED STATES

    and i’d like to change the saying of this “ALL” to TODAS ARTES.

    Cheers!!

    #296538

    Hey!

    Try adding this at the very end of your theme functions.php file:

    function custom_func() {
    	return "TODAS ARTES";
    }
    add_filter('avf_portfolio_sort_first_label', 'custom_func');
    

    Cheers!
    Josue

    #298295

    Mmm.. didn’t work Josue..

    And what about the slider ? how can i make the phrases come before that they are coming ? do u know ??

    Thanks a lot!!!

    #298410

    Hi!

    If you want to make the captions appear sooner, try adding this code to the Quick CSS:

    .csstransitions .av_slideshow_full .active-slide .avia-caption-content,
    .csstransitions .av_fullscreen .active-slide .avia-caption-content
    {
    visibility: visible;
    -webkit-animation: caption-right  0.5s 1 cubic-bezier(0.985, 0.005, 0.265, 1);
    -moz-animation:    caption-right  0.5s 1 cubic-bezier(0.985, 0.005, 0.265, 1);
    -o-animation:      caption-right  0.5s 1 cubic-bezier(0.985, 0.005, 0.265, 1);
    animation:         caption-right  0.5s 1 cubic-bezier(0.985, 0.005, 0.265, 1);
    }
    
    .csstransitions .active-slide .avia-slideshow-button
    {
    visibility: visible;
    -webkit-animation: caption-left  0.5s 1 cubic-bezier(0.985, 0.005, 0.265, 1);
    -moz-animation:    caption-left  0.5s 1 cubic-bezier(0.985, 0.005, 0.265, 1);
    -o-animation:      caption-left  0.5s 1 cubic-bezier(0.985, 0.005, 0.265, 1);
    animation:         caption-left  0.5s 1 cubic-bezier(0.985, 0.005, 0.265, 1);
    }
    
    .csstransitions .active-slide .avia-slideshow-button-2
    {
    visibility: visible;
    -webkit-animation: caption-right  0.5s 1 cubic-bezier(0.985, 0.005, 0.265, 1);
    -moz-animation:    caption-right  0.5s 1 cubic-bezier(0.985, 0.005, 0.265, 1);
    -o-animation:      caption-right  0.5s 1 cubic-bezier(0.985, 0.005, 0.265, 1);
    animation:         caption-right  0.5s 1 cubic-bezier(0.985, 0.005, 0.265, 1);
    }
    
    .csstransitions .av_slideshow_full .active-slide .avia-caption-title,
    .csstransitions .av_fullscreen .active-slide .avia-caption-title
    {
    visibility: visible;
    -webkit-animation: caption-left   0.5s 1 cubic-bezier(0.985, 0.005, 0.265, 1);
    -moz-animation:    caption-left   0.5s 1 cubic-bezier(0.985, 0.005, 0.265, 1);
    -o-animation:      caption-left   0.5s 1 cubic-bezier(0.985, 0.005, 0.265, 1);
    animation:         caption-left   0.5s 1 cubic-bezier(0.985, 0.005, 0.265, 1);
    }
    
    .csstransitions .av_slideshow_full.avia-fade-slider .active-slide .avia-caption-content,
    .csstransitions .av_fullscreen.avia-fade-slider .active-slide .avia-caption-content
    {
    visibility: visible;
    -webkit-animation: caption-bottom 0.5s 1 ease-out;
    -moz-animation:    caption-bottom 0.5s 1 ease-out;
    -o-animation:      caption-bottom 0.5s 1 ease-out;
    animation:         caption-bottom 0.5s 1 ease-out;
    }
    
    .csstransitions .av_slideshow_full.avia-fade-slider .active-slide .avia-caption-title,
    .csstransitions .av_fullscreen.avia-fade-slider .active-slide .avia-caption-title
    {
    visibility: visible;
    -webkit-animation: caption-top    0.5s 1 ease-out;
    -moz-animation:    caption-top    0.5s 1 ease-out;
    -o-animation:      caption-top    0.5s 1 ease-out;
    animation:         caption-top    0.5s 1 ease-out;
    }
    
    .csstransitions .avia-fade-slider .active-slide .avia-slideshow-button
    {
    visibility: visible;
    -webkit-animation: caption-top  0.5s 1 ease-out;
    -moz-animation:    caption-top  0.5s 1 ease-out;
    -o-animation:      caption-top  0.5s 1 ease-out;
    animation:         caption-top  0.5s 1 ease-out;
    }
    

    Best regards,
    Josue

    #302796

    Thank Josue.. one little more question… i realized when i use the new google maps.. when i click on google logo to see in the directions on google maps website.. it’s doesn’t show the address on the search and not even the Marker on the map.. do you know if every one is having this problem ?

    Thanks!

    #302834

    Hey!

    I think that’s expected, the Google logo links to the map location as coordinates, that’s why you don’t see it in the search bar, for example in the demo page:

    https: (Email address hidden if logged out) ,-122.030748,16z?hl=en-US

    Regards,
    Josue

    #304289

    Hi Josue,

    I have a minimum css experience.
    A couple of blocks back you say:

    Hi!

    1. This code will make the slider 400px height on mobiles:

    @media only screen and (max-width: 480px) {
        #full_slider_1 .avia-slideshow-inner, #full_slider_1 img{
            height: 400px !important;
        }
    }

    But where can i find the (css) file where i can change/add the code?

    #304306

    Hi!

    Look for Enfold > General Styling > -scroll down to the bottom- Quick CSS.

    Best regards,
    Josue

    #312557

    Hey Josue.. i’m back.. lol.. Let me asking you something.. in portfolio.. items apear in order of date. Can we reorganize in order of Name alphabeticaly ? or i have to change this changing the time the portfolio item was posted ?

    #312913
    #321352

    Perfect Yigit…
    One little more thing.. i have this code here to not show that overlay effect with the arrow inside of a circle.

    .avia-slideshow-inner .image-overlay {
    display: none !important;
    }

    but when i use post slider.. it comes again.. how do i take off ??

    thanks!!

    #321440

    Hi!

    Can you post a link to the page in question?

    Regards,
    Josue

    #322147

    Hey Josue.. its the same page..
    http://www.artstier.com/paintings/

    But i didn’t put online yet.. cause i tested, but before i show to my client… i just saw that…

    it’s when i use post slider..

    #322166

    Hi!

    Can you create a duplicate of that page and add the post slider so we can try to debug the code?

    Cheers!
    Josue

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