Forum Replies Created
-
AuthorPosts
-
ZedCryout Creations mastermind
The menu on your site appears to work fine for me now. Did you resolve this in the meantime?
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.ZedCryout Creations mastermindSorry about that, 2.3.2 was doing some unwanted output which caused issues with page redirects (and dashboard functionality). The current 2.3.2.1 release corrected 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.April 26th, 2019 at 12:27 in reply to: Presentation page columns layout is broken after theme update #77197ZedCryout Creations mastermindYour site appears to be using Parabola 1.6.1, which is more than 3 years old.
There are quite a few changes in code and styling since then up to the current 2.3.2. You’re also using a child theme, which may or may not customize elements that changed in the meantime.
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.ZedCryout Creations mastermindThe title/logo/tagline visibility is controlled by both WordPress’ base options and the theme’s extended options.
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.ZedCryout Creations mastermindThe sidebar widgets are not designed to use the masonry brick layout. That functionality is only active on posts lists (when more than one column is used).
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.ZedCryout Creations mastermindThe theme does not bundle any fonts. The ‘preferred’ group directs the browser to use fonts from the Google Fonts service (these work the same on all devices).
All other fonts are system-dependent and the browser will use the set font name if it is available on the viewing device. Otherwise, similar looking (but not identical) fallback fonts are used instead.
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.ZedCryout Creations mastermindCheck that the tagline is enabled in both WordPress’ and theme’s options.
Did you enable the social menu’s visibility in the desired locations?
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.April 13th, 2019 at 18:29 in reply to: How do you display random posts in Landing Page > Feature Boxes? #76759ZedCryout Creations mastermindYou use that code in a child theme.
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.ZedCryout Creations mastermindYou can make that CSS more conditional:
@media (max-width: 1024px) { body:not(.home) #branding { display: none; } body:not(.home) #search-2 { display: none; } body:not(.home) #secondary { 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.ZedCryout Creations mastermindThat’s usually an indication of a Javascript error on the site. Without an URL I cannot suggest what the cause is.
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.ZedCryout Creations mastermindEnsure that the filename used in the CSS media import declaration is correct:
@import url("../nirvana/style.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.ZedCryout Creations mastermindUse only the suggested code in the child theme to ensure the theme’s styles and loaded in the correct order.
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.ZedCryout Creations mastermindYou can control the visibility of the social icons (and the social icons themselves) from the theme’s social icons settings.
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.April 7th, 2019 at 09:55 in reply to: How do you display random posts in Landing Page > Feature Boxes? #76467ZedCryout Creations mastermindThe theme is designed to display the most recent posts (sorted descending by publish date).
If you need some other order criteria (including random) you’d need to use the theme’s
fluida_boxes_query_args
filter to customize the query:add_filter( 'fluida_boxes_query_args', 'child_custom_boxes_order', 12, 2 ); function child_custom_boxes_order( $args=array() ) { $custom_order = array( 'orderby' => 'rand', //'order' => 'DESC', ); return array_merge( $args, $custom_order ); } // child_custom_boxes_order()
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.ZedCryout Creations mastermindI suggest using the browser’s development tools (normally available by pressing F12) to pinpoint which styling applies to which element (and even try changes) easier than guessing it from the code/styling files.
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.ZedCryout Creations mastermindSuch functionality does not exist in WordPress by default. Categories themselves do not have a ‘featured image’ option, although they do have a description field which does accept HTML (but using that to insert an image would also need some CSS tweaks).
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.ZedCryout Creations mastermindAll downloadable files are available in your account.
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.ZedCryout Creations mastermindDid you search through the translatable strings?
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.ZedCryout Creations mastermindDue to the complexity and the customizability of the theme, you’ll need to modify plenty of code and styling to perform such a change.
Most of the code handling the menu (and the header area) is located in includes/core.php
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.ZedCryout Creations mastermindTry this CSS:
.single .entry-meta.aftertitle-meta a, .single .entry-meta.aftertitle-meta time { color: #fff; }
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.ZedCryout Creations mastermindUse this CSS:
body #site-copyright { font-style: normal; }
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.ZedCryout Creations mastermindUse this CSS:
body .entry-content, body .entry-summary { padding-top: 2em; }
The default value is 2em, you can adjust it as desired.
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.ZedCryout Creations mastermindThe menu content needs to fit in the available space on the target screen sizes (or the mobile menu needs to be customized to activate earlier – at the point the configured menu no longer fits).
This limit is configurable through the options in the Plus edition.
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.ZedCryout Creations mastermindYour site is accessible via multiple URLs (with the hosting account not being configured to accept this scenario).
Please see https://www.cryoutcreations.eu/forums/search/CORS
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.ZedCryout Creations mastermindWhich one of the images on the indicated URL are you seeing blurry, for example?
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.ZedCryout Creations mastermindCan we see the site?
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.ZedCryout Creations mastermindAs an additional bit of information, only standard posts follow the excerpt options in Nirvana. Post formats are always displayed in full (since they are intended to be used in specific instances).
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.ZedCryout Creations mastermindBased on that image the styling on the site looks broken or doesn’t load at all.
The lack of text wrapping and the visibility of the ‘skip to content’ link shouldn’t be the only visible issues.If you’re using a child theme, make sure you correctly load the styles for both the parent theme and the child theme (in this order).
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.ZedCryout Creations mastermindMake it a bit more specific:
@media (max-width: 1024px) { body .nivo-caption { top: auto; } }
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.ZedCryout Creations mastermindThe presence of space between structural elements is a feature of the theme’s design (Parabola is intended to look blocky).
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