Arreane
Forum Replies Created
-
Forum: Plugins
In reply to: [Redux Framework] Google font is not display in redux framework typographyHi,
Please try to check and see if there are errors in your dev tools.
- Open the DevTools
Press Command+Option+J (Mac) or Control+Shift+J (Windows, Linux, Chrome OS) to jump straight into the Console panel of Chrome DevTools.
Or, navigate to More Tools > Developer Tools from Chrome menu, and click Console tab.
- Identify the Error
The error console will open. If you don’t see any errors try reloading the page. The error may be generated when the page loads.
The console will provide you with the error type, the location of the error and the line number
You can add the following CSS code to cover up for the offset – https://share.getcloudapp.com/mXuPA8wE
.nivo-caption {
left: -10px;
right: -10px;
}That’s also be possible. If you’re using a multi language plugin, you should try and see if that’s causing the issue. You can try and disable the plugin and see if everything falls back to normal.
Hi,
I’m unable to see the slider from the link you provided. It requires login – https://share.getcloudapp.com/xQujD4Yk
If you’re seeing multiple slides, it’s possible that you enable the carousel mode in your advance settings. If you do, please try and disable that. It should fix your issue.
Your site clearly didn’t register your code. If you have a caching plugins, please try to flush/deactivate it.
The code I provided does work. It just missing the code in the :before pseudo class. https://share.getcloudapp.com/kpu65PqN
You can verify if your css changes reflect or not on your source code – view-source:https://oldfreegame.com/en/
Hi,
We did try to respond to your support request, but there was an issue with the email you used on reaching out to us. The email keeps bouncing back and we don’t have any information for an alternative email for us to send our response.
Here is a screenshot on the ticket – {picture link removed by moderator as it contains some data not to be exposed publicly}
You could try and reach out again to us and we’ll try to assist you with your issu e but I would suggest trying a different email.
Kin regards,
- This reply was modified 4 years, 6 months ago by Yui. Reason: some possibly sensitive data removed
Hi,
Please make sure that you have added the CSS code correctly.
Here’s a short recording showing that the code I provided works – https://share.getcloudapp.com/bLudeKJD
Hi,
I see you added some CSS code to the .nivo-caption, so I’m not sure if the current layout is what you’re aiming for. May I know what look you’re trying to achieve and I’ll try to assist you with that.
Hi,
Glad you were able to find a much better solution. There’s nothing wrong to using the filter. I’ll consider this issue as resolve.
Have a great day!
Hi,
There are a lot of factors causing upload to slow down. One of the reasons you’re experiencing it is probably because you uploaded an unoptimized high resolution image like this one https://oldfreegame.com/wp-content/uploads/2021/09/erik-mclean-mpaEZMHbFE0-unsplash-scaled.jpg
In regards to your site not loading the first image, this issue might be caused by another plugin/theme. So, please try to deactivate all your plugins except for MetaSlider and switch your theme temporarily to Twenty-Twenty One. If this fixes your MetaSlider issue, you can then try to activate all the plugins back one-by-one until you find which of the plugin is causing the conflict.
I’m guessing you want a modal functionality? We have a MetaSlider add-on for that feature.
You can check MetaSlider Lightbox – https://wordpress.org/support/plugin/ml-slider-lightbox/
Hi,
I went ahead and checked your site and slightly modified the CSS. You can try and paste the following CSS code instead.
.metaslider.ms-theme-nivo-dark .nivo-directionNav a { background: #000 !important; bottom: -54px !important; height: 44px !important; width: 44px !important; } .metaslider.ms-theme-nivo-dark .nivo-directionNav a:before { color: #fff; position: absolute; text-indent: 0; left: 0; right: 0; top: 0; bottom: 0; align-items: center; display: flex; justify-content: center; } .metaslider.ms-theme-nivo-dark .nivo-directionNav a.nivo-prevNav:before { content: '<'; } .metaslider.ms-theme-nivo-dark .nivo-directionNav a.nivo-nextNav:before { content: '>'; }Hi,
The link you provided requires a login – https://share.getcloudapp.com/GGu4kxPL
The only way to make such customizations is via CSS. If what you want to change is just the size and colors, then I could provide a short CSS for you.
Can you share a public link where your MetaSlider is embedded?
Hi,
Based on your explanation, my first guess is that the issue would be in your theme. In your statement, you said that when you removed the MetaSlider widget, your homepage became empty.
Please correct me if I’m wrong. Are you saying that even when MetaSlider is NOT embedded on your site, EVERYTHING still disappears? If that’s the case it wouldn’t make sense to rule out that the issue is with MetaSlider when there is no code running from MetaSlider yet your site still breaks.
If your theme developer insists that the issue is coming from MetaSlider, please ask for any error message coming from your console or error logs that would verify the claim.
Hi,
This is because you’re only enqueueing your theme’s CSS code to your front end which is how it is supposed to be.
If you want your custom css to be included in your WordPress dashboard, you’d have to enqueue it into the backend as well.
It should look something like this
function enqueuing_admin_scripts(){ wp_enqueue_style('admin-your-css-file-handle-name', get_template_directory_uri().'/css/your-css-file.css'); } add_action( 'admin_enqueue_scripts', 'enqueuing_admin_scripts' ); - Open the DevTools