Forum Replies Created
-
AuthorPosts
-
Zed
Cryout Creations mastermindThe current theme version is 2.1.3. I am not sure how you managed to ‘update’ to a version that’s 3 years old.
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 mastermindThat styling applies to screen sizes narrower than 650px (apparent size). You may be using a device that uses a narrower resolution.
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 mastermindWe advise against using CSS minification with our themes as they need the style to be loaded in a specific order.
Try this custom styling:
body #frontpage h3 { font-size: 2em; }
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 mastermindRepository themes are not allowed to install plugins automatically, only recommend them – which the theme already does.
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 mastermindThe .mobile class is added via JS, so it is not present from the first instant.
I suggest you use media queries in your css to target mobile devices:
@media (max-width: 800px) { body #header-container { 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 mastermindThat is not possible with existing theme functionality.
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 mastermindYou can enter a custom excerpt for the pages by either enabling the excerpt feature on pages or using the
<!--more-->
and<!--nextpage-->
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 mastermindI’m sorry, my previous answer wasn’t entirely accurate as it applies to Fluida.
In Septera activating a static page on the homepage also activates the landing page feature (we were asked to implement this change during the theme repository review process).
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 mastermindTry this CSS:
#site-header-main.header-fixed, #access .sub-menu { background: #fff; } #access a:hover { 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.Zed
Cryout Creations mastermindThe custom footer text control is now located under General > Structure.
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 mastermindYou need to pay attention to the id/classname placement. In my example it’s a H3 and it bears the id directly, making the correct identifier
h3#custom-title
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 mastermindNirvana uses placeholders instead of labels in the comment form. Use this CSS to restore labels:
.woocommerce #respond label { display: block; }
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 mastermindStarting with the latest updates Tempera’s slider can be changed with any separate (plugin-provided) slider by using its shortcode in the theme’s 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.Zed
Cryout Creations mastermindThe post published on 7th seems to use the desired featured image aspect ratio again. Did you change anything in the theme settings before it?
What are the theme’s featured image size values set to now?
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 mastermindBoth paths lead to the same theme settings page (which belongs to Tempera).
If you’re having trouble in the theme’s settings with malfunctioning controls you may have a JavaScript error around there. Such issues are almost always caused by plugins that load their resources in places where they shouldn’t.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 mastermindThe theme’s presentation page does not display sidebars.
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 9th, 2017 at 14:47 in reply to: How to remove previous links on top/bottom of every post? #43846Zed
Cryout Creations mastermindYou can do that with CSS:
body.single #nav-above, #nav-below { 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 mastermindThis depends on the colours you use.
A site link would be useful in figuring out which elements require customization.
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 mastermind@erosdipietro, is the theme’s landing page feature enabled in the 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.Zed
Cryout Creations mastermindTechnically, anything is possible. However there is quite a bit of work involved (the icon blocks would also need corresponding control elements in the theme 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.Zed
Cryout Creations mastermindThe theme’s responsiveness (including the mobile menu) cannot be disabled using existing functionality.
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 mastermindThe override can be part of any file that gets loaded by WordPress, not necessarily the theme’s functions.php.
Maybe you’re running a customized WordPress version?
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 mastermindYou might have copy-pasted from an advanced text editor (like Word) or even a browser.
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 mastermindadd_filter( 'get_the_excerpt', 'nirvana_custom_excerpt_more',10 ); } ?> <h3 class="custom-title">Sample title</h3> <!--this is the custom title and the only modification to the code--> <?php if ($nirvana_frontposts=="Enable"): get_template_part('content/content', 'frontpage'); endif; ?>
You’ll also need a bit of styling depending on how and where you want that title aligned.
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, 2017 at 13:02 in reply to: change formatting of h2 class="entry title" on frontpage #43804Zed
Cryout Creations mastermindYou should remove the markup from the titles and instead use CSS on only the desired sections:
.single #content .entry-title { font-weight: bold; }
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 mastermindTry this custom CSS:
input[type] { font-size: 1em; }
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 mastermind@bassicsax, your images appear large enough. Did you try regenerating the thumbnails?
You can also test with a single image to see if it resolves the blurriness.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 mastermindThe only font sizes that we messed with and changed (slightly) are the headings sizes which are now relative to the body font size. This will not affect content text in any way, just titles. Also, the change will at most vary title sizes with 1-2 pixels (if you’re still using the theme’s default font sizes for general and headings).
The option that did cause the hiccup was the line height option (which resets to the lowest available value on a settings save in 1.5.0). This is fixed in 1.5.1, but if you’re seeing reduced line height on your site you’ll need to enter theme settings and adjust it to the previously used value (if you remember it) or the default 1.7em.
If the site behaves wonky after the update and you are using a performance/speed/caching plugin, make sure you clear the cache (otherwise you’ll see a mix of current and obsolete styling which can create a lot of weirdness).
It would be a good idea to also clear the browser’s 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 mastermindThat’s part of the theme’s CSS resets to make appearance consistent between browsers (otherwise they’d all render things slightly differently due to different defaults).
Try adding this custom CSS to remove the box-sizing on fancybox elements:
#fancybox-wrap, #fancybox-outer { box-sizing: unset; }
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 mastermindCheck if Fitvids is enabled in the theme’s options. This is the functionality responsible for resizing videos on mobile devices.
CSS sometimes work, but most videos get embedded with their own size styling that cannot be overridden (due to iframes).
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