Forum Replies Created
-
AuthorPosts
-
Zed
Cryout Creations mastermindHi,
We’ve received one other report so far about animation glitches with Safari, however we’ve so far been unable to recreate them with our test browsers and devices. It may be something specific to a certain version or version range, so we’ll keep looking into it.
As a note, on iPhone all applications (including browsers) are forced to use Safari’s rendering engine, so seeing the same glitch regardless of browser app used is something to be expected.
If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.Zed
Cryout Creations mastermindSorry about the odd replies, spam still manages to creep through.
Try adjusting the scroll indicator arrow to white:
#header-image-main .meta-arrow i { color: white; }
If that is insufficient, perhaps speeding up the animation would help:
body .meta-arrow > i::before { -webkit-animation: meta-arrow 1.2s ease-out infinite; animation: meta-arrow 1.2s ease-out infinite; }
If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.Zed
Cryout Creations mastermindHi,
The solution to your request depends on what image we are actually referring to and also how they are defined.
If we’re discussing about the theme’s presentation page columns, these can also be created using widgets, in which case the images are configured in the widgets.If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.Zed
Cryout Creations mastermindHi,
We’ll have to look into this because we don’t actively use Safari.
If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.May 2nd, 2021 at 19:53 in reply to: Moble Version of Home Page Doesn’t Show Titles/Photos After “More Posts” #117408Zed
Cryout Creations mastermindHi,
In case you use some caching/minifying/optimization/CDN plugin, I suggest temporarily turning that off to check if it has anything to do with the reported issue.
Do note that mobile browsers cache aggressively and you’ll have to refresh repeatedly (or use private/incognito modes) to actually make them clear cache.If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.Zed
Cryout Creations mastermindHi,
Please see this information:
https://wordpress.org/support/article/multilingual-wordpress/If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.Zed
Cryout Creations mastermindHi,
There are some things that can be tweaked around the site title/logo to make them fit better on various screen sizes, but the exact CSS needed for this is dependent on your current site’s configuration.
If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.Zed
Cryout Creations mastermindHi,
The caption element covers the entire image while obscuring its (container) link. The following CSS changes this:
#content .wp-caption .wp-caption-text { pointer-events: none; }
If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.Zed
Cryout Creations mastermindHi,
As that functionality isn’t already in the theme it will require some custom code to create it.
If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.Zed
Cryout Creations mastermindHi,
Since that functionality does not exist in the theme, it would need to be added in using some custom code.
If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.Zed
Cryout Creations mastermindHi,
The animation effect is configurable through the options: https://www.cryoutcreations.eu/docs/themes/options/header/content/?theme=bravada#header-title-animation
If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.Zed
Cryout Creations mastermindHi,
If you’re referring to hiding the post publish date on single post sections, that can only be done with CSS:
.single-post .entry-meta .date { display: none; }
If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.Zed
Cryout Creations mastermindHi,
You can try the following CSS:
body .hamburger { width: 50px; } body .hamburger::after { content: "A to Z"; font-weight: bold; } body .hamburger span { display: none; }
but I’m not sure how you expect this tweak to look.
If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.Zed
Cryout Creations mastermindHi,
Due to core jQuery changes brought by WordPress 5.7, the theme’s autoscroll functionality is currently broken and will require an update to correct.
Until then you should disable this functionality to avoid JS issues such as anchor links behaving incorrectly.If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.Zed
Cryout Creations mastermindHi,
Applying that padding to the
#content
container instead of.entry-content
should avoid having elements that remain uncovered.If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.Zed
Cryout Creations mastermindHi,
The theme controls the posts layout through its configuration options – you’d need to override the configured value for specific sections by filtering the theme’s options. Something along the lines of:
function child_custom_posts_layouts( $options = array(), $option_name = '' ){ /* possible posts layout values are: 1, 2 or 3 */ if ( is_category( 123 ) ) $options['fluida_magazinelayout'] = 3; return $options; } add_filter( 'option_fluida_settings', 'child_custom_posts_layouts', 11, 2 );
Note that this code is not tested.
If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.Zed
Cryout Creations mastermind3. That would be tricky to do with just CSS.
4. Customizing the menu items is described in the theme documentation:
https://www.cryoutcreations.eu/docs/themes-legacy/faqs/mantra/#where-are-the-menu-fontcolour-options
To tweak just one menu item you’ll need to include its unique classname in the CSS.If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.Zed
Cryout Creations mastermindHi,
In Bravada, the header titles are covered by the Single Post Titles typography options. Are these the ones you’re using?
If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.Zed
Cryout Creations mastermindHi Julia,
To ensure the menus don’t overflow the screen you’ll need to either re-organize them or force the problematic ones to open their submenus to the opposite side:
#access ul li.menu-item-3639 .sub-menu { left: auto; right: calc(100% + 10px); }
If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.Zed
Cryout Creations mastermindFor that change the CSS identifier to:
body:not(.home) #content { ...
There will still be some space left under the banner/slider for which you’ll need to add an additional bit of styling:
.lp-slider { line-height: 0; }
We’ll sort this part out in the next theme update.
If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.Zed
Cryout Creations mastermindHi,
We don’t have blank child themes for our free themes (Plus theme purchases do come with example blank child themes).
However, you don’t need a child theme for just that line of code – you can include it in a minimal plugin.If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.Zed
Cryout Creations mastermindHi,
Your site appears to have structural markup errors which can prevent it from rendering correctly on some or all browsers:
https://validator.w3.org/nu/?doc=http%3A%2F%2Fianchadwick.com%2Fblog%2F
Check the errors starting at #5 referring to unexpected opened or closed tags.If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.Zed
Cryout Creations mastermindHi,
Please see this topic on the same subject:
https://www.cryoutcreations.eu/forums/t/kahuna-editor-styles-dont-match-theme#post-115966If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.Zed
Cryout Creations mastermindHi,
If you’ve moved the site to a different URL (or simply updated URLs from a development one to the final one) you need to ensure all database records are correctly updated to reference the new URL.
How to do this is covered in WordPress.org’s Moving WordPress tutorial.If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.Zed
Cryout Creations mastermindHi,
If you’re receiving the 403 Forbidden error message during the update process, that indicates that either you have not configured the license key in the theme’s management page, or you do not have an active license for Fluida Plus.
Access to new updates and to accompanying priority support service is only available with an active subscription.If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.Zed
Cryout Creations mastermindHi,
Regular captioned images and block images with captions use different markup and as a result they don’t have the same styling applied. This will make them appear differently.
In the topic’s title you mention captions not displaying at all – can you provide a link for where this happens?
If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.Zed
Cryout Creations mastermindHi,
Tempera supports both auto-generated columns (from posts) or manually configured columns using widgets.
The widgets method is covered in a specific tutorial: https://www.cryoutcreations.eu/wordpress-tutorials/how-to-use-the-new-tempera-presentation-page-columnsIf you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.Zed
Cryout Creations mastermindHi,
You should be able to remove that grey area with the following custom CSS:
.lp-slider { line-height: 0; }
We’ll add a correction for this in the next update.
If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.May 2nd, 2021 at 17:17 in reply to: How to use a Youtube video as featured image on blog posts? #117348Zed
Cryout Creations mastermindHi,
I think that tutorial addresses to a specific theme which is indicated in the tutorial itself.
Bravada has its own layouts for post formats and that particular configuration mix would not have the same effect on Bravada’s header, but would simply display the video at the beginning of the post content (as expected).If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.Zed
Cryout Creations mastermindHi,
Such functionality does not readily exist in either WordPress itself or the theme, but can be added using plugins:
https://wordpress.org/plugins/tags/background-image/If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic. -
AuthorPosts