Forum Replies Created

Viewing 15 replies - 301 through 315 (of 706 total)
  • Plugin Author eleopard

    (@eleopard)

    Hi nick,

    I just checked the website, and I se that the Video player is going out of the page width. However, the images etc. were loading fine on my end.

    Please confirm if this is also the case with you. If not, please share a screenshot with me. That would help a lot.

    Thanks.

    Plugin Author eleopard

    (@eleopard)

    Dear Nick,

    Apologies for the delayed reply.

    I checked your website, and the thing is, a few of the scripts run on the page load.
    However, the theme is not loading the new page, when a single project is opened.

    Please try this simple workaround:
    Go to Portfolio Manager > Settings > Advanced Tab > Custom CSS Box and paste the following:

    #bop-project{
    	opacity: 1 !important;
    }

    Let me know if this works.

    Plugin Author eleopard

    (@eleopard)

    Hello,

    You are right, currently team IDs are not supported in importing.
    I’ll look into it, and will add the feature it if Behance API allows that.

    In the meantime, yuou can just user your team members’ user IDs to import the project. The projects won’t be Duplicated, so there are no worries about copies of same project.

    Forum: Plugins
    In reply to: [Animate It!] Wipe Effect
    Plugin Author eleopard

    (@eleopard)

    Dear Sboswell,

    Can you give me an example of what do yo have in mind?
    Something that you’ve seen online etc.

    If its possible, I’ll try my best to include it in the nest revision.

    Plugin Author eleopard

    (@eleopard)

    Dear Sslakd,

    Thanks for using the Portfolio Manager.

    From what I gather. Team projects also have a number of people added, with a team.
    So adding this would not be any different then adding a solo project.

    E.g. this is my team: https://www.behance.net/eleopardstudios
    And this is One of the team projects, that has id 60808543
    https://www.behance.net/gallery/60808543/Residential-Settlements-Website-and-Branding

    So adding 60808xxx to the Plugin would be same as adding any other behance project.

    Please let me know if I am missing anything.

    Forum: Plugins
    In reply to: [Animate It!] Wipe Effect
    Plugin Author eleopard

    (@eleopard)

    Dear Sboswell,

    Thanks for using the Animate It!
    Yes wipe effects seems like a good Attention Seeker animation.

    Will definitely include it in the future release.

    Just in case, This is the effect we’ll be adding, with option to trigger it on Scroll, instantly and on hover:
    https://codepen.io/ryanaltvater/pen/vNgjNW

    Plugin Author eleopard

    (@eleopard)

    Dear Gal885,

    Thanks for using the Animate It!

    The issue you seek, is unfortunately not available in the current version of the Plugin.
    This is however, in the cards for our future releases.

    Please stay tuned 🙂

    Plugin Author eleopard

    (@eleopard)

    Dear Ali,

    Aw, what a coincidence…I love me too! 😀
    Glad to know the issue is resolved now.

    Regarding the multiple categories, it is on our to-do list for the future release.
    However, it would require major changes in the code, so I can’t say a possible day for when this feature would be available.

    Sorry 🙂

    Plugin Author eleopard

    (@eleopard)

    Dear Ali,

    Finally got the issue 🙂

    Please paste the following in Portfolio Manager > Settings > Advanced > Custom CSS Box:

    #bop-project-left .bop-text-center > .embed-dimensions{
    	max-width: 100% !important;
    }

    I accidentally read ISSU as Issue 😀
    Sorry for that.

    Let me know if this works for you.

    Plugin Author eleopard

    (@eleopard)

    Hi Ali,

    I think there’s a bit on confusion.

    In the issue, you said you needed help with this page:
    The page I need help with: http://www.alijonesdesign.com/portfolio/bproject/ediwrap-branding-1/

    However, it seems like you need help with this one, with increasing the width so that more projects can fit in a row:
    http://www.alijonesdesign.com/portfolio/

    Let me know if this is the case 🙂

    Plugin Author eleopard

    (@eleopard)

    Dear AliAnne,

    Thanks for using the Portfolio Manager.
    The issue here is not with the Plugin, but the theme you are using.

    The page width set in the theme is used by the plugin to display the projects.
    I checked http://www.alijonesdesign.com/portfolio/bproject/ediwrap-branding-1/ and this is how you can increase the page width.
    Please not that this will change the page width throughout the website.

    Go to Portfolio Manager > Settings > Advanced Tab > Custom CSS Box and paste the following:

    .container-wrap > .container{
    	max-width: 1440px;
    }

    This would make the project width 1400px as in Behance.
    Let me know if this works for you.

    Plugin Author eleopard

    (@eleopard)

    Dear Scott,

    Can you share link to the page where this issue is?

    Plugin Author eleopard

    (@eleopard)

    Dear Ivano,

    Apologies for the delayed reply.
    I got caught up in some other tasks.

    Regarding the issue, the reason for late SlideIn is, the animation starts from 3000px, which is fine for larger devices. However for small ones, it starts way off the screen, and takes time to reach the viewport.

    This is a simple over-ride that should help:

    Remove the previously added code I sent above, and paste the following in Settings > Animate It! > Custom CSS box:

    @media only screen and (max-width: 767px) {
    	@-webkit-keyframes slideInLeft {
    		0% {
    			-webkit-transform: translate3d(-768px, 0, 0);
    			transform: translate3d(-768px, 0, 0);
    			opacity: 1;
    		}
    
    		100% {
    			-webkit-transform: translate3d(0, 0, 0);
    			transform: translate3d(0, 0, 0);
    		}
    		}
    
    		@keyframes slideInLeft {
    		0% {
    			-webkit-transform: translate3d(-768px, 0, 0);
    			transform: translate3d(-768px, 0, 0);
    			opacity: 1;
    		}
    
    		100% {
    			-webkit-transform: translate3d(0, 0, 0);
    			transform: translate3d(0, 0, 0);
    		}
    	}
    	@-webkit-keyframes slideInRight {
    		0% {
    			-webkit-transform: translate3d(768px, 0, 0);
    			transform: translate3d(768px, 0, 0);
    			opacity: 1;
    		}
    
    		100% {
    			-webkit-transform: translate3d(0, 0, 0);
    			transform: translate3d(0, 0, 0);
    		}
    		}
    
    		@keyframes slideInRight {
    		0% {
    			-webkit-transform: translate3d(768px, 0, 0);
    			transform: translate3d(768px, 0, 0);
    			opacity: 1;
    		}
    
    		100% {
    			-webkit-transform: translate3d(0, 0, 0);
    			transform: translate3d(0, 0, 0);
    		}
    	}
    }

    I have tried it on my end, and its working fine. You can check it here:
    http://animateitdemo.wpdevcloud.com/post-for-ivano/

    What it does is, for screens smaller then tablet (767px and smaller), it startes the animation from 768px, i.e. just outside the viewport. Also, the SlideIn Right is added too, just in case.

    Let me know if this works for you.

    Plugin Author eleopard

    (@eleopard)

    Dear Artandscores,

    Thanks for using the Animate It!

    Unfortunately, as mentioned in https://wordpress.org/support/topic/replace-animated-text-with-new-text/, the Looping part won’t be possible using the Plugin.

    The animation sequence would happen once, and the last “text3” would come in and stay, that can be done.

    Plugin Author eleopard

    (@eleopard)

    Dear Ivano,

    Apologies for missing on the offset content mentioned by you.

    The thing is, Slidein effects starts from 3000px, which is ok for larger screens, but for mobiles screens the animation happs from far outside the viewport and hence takes time to come on the screen.

    This might be a simple solution, specific to your case:

    Paste the following in Settings > Animate It! > Custom CSS box:

    @media only screen and (max-width:767px) {
    .q_elements_holder_custom_668255 .eds-animate, .q_elements_holder_custom_697303 .eds-animate{
    animation-duration: 1s !important;
    }
    }

    This is make the animatin duration to 1 second, instead of 2.5 seconds set initially. That will make the image come faste on the 2 secions having problems.

    Please let me know if this works for you.

Viewing 15 replies - 301 through 315 (of 706 total)