vladff
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Astrid] Submenu to click not hoverHi,
This only happens if you visit the site and then shrink the browser. Otherwise the mobile menu doesn’t behave like that so this isn’t really an issue. You can check by shrinking your browser and then refreshing. We’ll see what can be done to eliminate it completely.
Forum: Reviews
In reply to: [Tora] poor support, not even reply to questionsHi,
Support is mostly handled through the contact form at our website. If you’ve used it and you didn’t receive a reply, we probably missed your email somehow. Feel free to get in touch again.
Forum: Reviews
In reply to: [Sydney] Not fully responsiveDepends on what you understand by responsive. The slider is full screen regardless of screen size and the images (actually background images) are set to cover that certain screen size. Obviously, that means some parts of the image will be cropped because your image sizes won’t be the same as the device size.
I don’t get the rating though, you could have asked us first about this.
Vlad
Forum: Themes and Templates
In reply to: [Sydney] Slider Not Working on Home PageTry switching to one of the default themes for a bit and see if it works.
Also, it appears you’ve changed the theme’s name to Sydney Child but you don’t actually have a child theme. Perhaps you’d like to test with an original copy of Sydney, just to make sure.
Forum: Themes and Templates
In reply to: [Bistro] Can’t stop slider text from slidingHi,
Hard to say without seeing.
The thing is that none of the classes you mentioned in this topic and the other (
slide-inner2andflex-viewport) aren’t defined by Sydney or Bistro. So I’m not sure where they come from but I assume that’s what messes things up.Maybe you have a slider plugin installed that uses the same JS script?
Forum: Themes and Templates
In reply to: [Rikke] How can I easily enlarge the central section?Hi,
Really sorry about the delay, I’m not getting notices from these forums.
It’s not very easy to do as you’ll have to change it in more places for various screen sizes. You can search the stylesheet for
.content-areaand.widget-areatoo see how the widths are defined, then redefine them as you need in a custom CSS plugin or child theme.Forum: Themes and Templates
In reply to: [Sydney] Slider text offset to the right after updateHi,
flex-viewport doesn’t come from the theme.
There’s an incompatibility with between the animation and other plugins that might use the same animation. What you need to do, until we fix it in the theme, is add this:
.text-slider { right: auto; }Forum: Themes and Templates
In reply to: [Bistro] Can’t stop slider text from slidingHi @granville
We’re not updating Bistro because it’s a child theme and people might have added custom code to it. All you need to do is open up the functions.php file for Bistro and delete line 90, where it says
require get_stylesheet_directory() . "/inc/slider.php";Forum: Themes and Templates
In reply to: [Sydney] Sydney scrolling differently in FirefoxHi,
I’m personally seeing this issue only in Edge.
Use this in a custom CSS plugin please until we update the theme:
.header-slider { transform: none; }Forum: Themes and Templates
In reply to: [Sydney] Slider text disappears after updateCool, thanks for sharing.
Forum: Themes and Templates
In reply to: [Sydney] Slider text disappears after updateHi,
We’ve made some changes to the text slider animation and it’s possible for it not to display in case you have some plugin that loads the animation.css library. We’ll correct this in the next version to ensure compatibility with such plugins.
Meanwhile, try adding this at the bottom of your child’s style.css:
.text-slider { right: auto; }If it doesn’t work, disable autoptimize for a bit so I can check.
Forum: Themes and Templates
In reply to: [Sydney] Slider image not showing upHi,
You’re trying to add PHP in your child’s stylesheet file.
Please look carefully here at how it should be done: https://codex.wordpress.org/Child_Themes
The code you added in style.css should actually go in functions.phpForum: Themes and Templates
In reply to: [Sydney] Image flicker on sliderOkay, cool.
One more thing please. Let’s try to recreate the text animation in a different way.
– remove the code I gave you;
– add this instead:.text-slider { position: relative; right: -99em; } @-webkit-keyframes fadeInRightBig { from { right: -99em; } to { right: 0; } } @keyframes fadeInRightBig { from { right: -99em; } to { right: 0; } }Seems to work fine for me, but as I’ve said I’m not checking on a physical device.
Vlad.
Forum: Themes and Templates
In reply to: [Sydney] Image flicker on sliderI was only able to reproduce the issue by emulating on Browserstack with Chrome on Mac. Though two colleagues with actual Macs don’t see it.
Can you guy please try to disable the animation for the text by adding this in a custom CSS plugin:
.text-slider { -webkit-animation-name: none; animation-name: none; }You can use the arrows to slide faster and see if the issue still shows up.
Forum: Themes and Templates
In reply to: [Sydney] Image flicker on slider@brennig: those icons are part of the image.
My colleagues will try to figure out the flickering issue. I personally don’t see it though.
I will get back to you as soon as we have something.Vlad