Forum Replies Created
-
AuthorPosts
-
ZedCryout Creations mastermind
Try the following CSS:
@media (max-width: 640px) { body .cryout #sheader a { font-size: 1em; margin: 0; } body .cryout #sheader { 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.ZedCryout Creations mastermindThe entire site will display the general header image, if one is assigned.
Additionally, on the single section, the theme can display the post’s or page’s featured image as the header image if configured to do so.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 order of the presentation page sections is not configurable. The task can be achieved only by modifying theme code (look for mantra_frontpage_generator() in includes/theme-frontpage.php; this function is pluggable and can be customized 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 mastermindThe header area is not designed to use a background image (the header image itself, displayed below the menu, performs the task of being the image in the header).
If you’re looking to apply some kind of texture to the header/menu area, try the following CSS:
body .site-header-top, body .site-header-bottom > div { background-image: url(...); /* other positioning attributes: https://www.w3schools.com/cssref/pr_background-image.asp */ }
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 slider caption does shrink with screen size, just not enough for your site to make the text fit next to the person (the standard usage scenario we’ve designed the slider for is for the caption to go over all the image, not just part of it).
You’ll need to shrink the text further to make it fit on the smaller screens:
@media (max-width: 960px) { body .lp-staticslider .staticslider-caption { font-size: 0.7em; } } @media (max-width: 640px) { body .lp-staticslider .staticslider-caption { max-width: 50%; } body .lp-staticslider .staticslider-caption h2 { font-size: 2.7em; } }
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 mastermindSelecting a page template does not add content to that page – it simply activates specific theme behaviour to display the (future) content in a certain way and enabled some additional configuration fields.
Please see the documentation to see which page templates actually have specific layouts and configuration fields: https://www.cryoutcreations.eu/docs/themes/plus/templates/
PS: Page templates are only included in the Plus edition. If you have selectable page templates with the free edition of Fluida those are not provided by the theme (plugins may also force-add page templates).
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:
body #access a { padding-left: 1em; padding-right: 1em; }
Adjust the value as necessary.
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 shortcodes are built on top of Bootstrap and follow its responsiveness behaviour 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 mastermindCustomizing the theme’s functionality can be done in multiple ways, depending on what bit of code you’re actually looking to extend/replace.
WordPress has a long list of files that are automatically recognized and get used with priority if they are present in the child theme’s folder. Beside the templates listed there, it will automatically used any files preset in the content/ subfolder if they have the same name as those also found in the parent theme.
Beyond these, you wouldn’t be able to replace other theme files (especially php) by simply duplicating them in the child theme. For the functionality found in the rest of the code you’ll need to apply different approaches, depending on the code in question:
– pluggable functions (those wrapped in if (function_exists('function_name')) calls) can be copied over to the child theme (in the functions.php file or any other file that’s included/loaded by it) and customized there.
– the rest of the function calls are usually hooked in place (using either filters or actions); to customize those functions’ code you’ll have to unhook the original calls, copy and rename the functions to the child theme and hook back the replacement.Styles and scripts are also enqueued using WordPress’ core calls, so replacing theme would be done de-enqueuing the original and enqueueing the replacement in place.
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 screen width-dependent styling is defined in the theme’s styling.
Search for the media queries applied at 800px to the #nav-toggle and #access display rules.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 mastermind@Kasia, to disable the buttons simply leave their label and link fields empty. Use the same workaround I mentioned in my previous answer to access their configuration 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 mastermindYou can use simple markup in the option fields, for example:
We are <b>Forester Haynie</b>
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 mastermindIf you’re referring to the theme’s icon blocks, please check that the section as a whole is also enabled (the blocks content option shouldn’t be set to Disabled).
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 mastermindPlease temporarily disable all active plugins to rule out interference with WordPress’ options (the stuck “Updating…” message).
The static page you were previously using as a homepage may have vanished at an earlier point time (was unpublished or marked as hidden). Its selection remained valid and had effect in WordPress because WordPress saved its ID until you selected a different page from the list (at that point the invalid/empty option is no longer available to return to).
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 try the following custom CSS:
.page-id-123 #header, .page-id-123 #main, .page-id-123 .topmenu, .page-id-123 #colophon, .page-id-123 #footer2-inner { max-width: 1500px; }
Replace 123 in .page-id-123 with the correct numeric ID of your page.
This CSS will widen the entire site layout (header, content and footer) for that particular page.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 inner content is limited to the theme’s configured site width. If you need to have content span beyond this limit you will need to create a custom page template (or post template if you need it for posts as well). The Plus edition already includes a page template with this functionality.
Applying this behaviour for other sections beyond individual posts and pages is not easy to achieve.
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, 2020 at 20:36 in reply to: “Image à la une” ne fonctionne pas avec le thème Mantra? #101938ZedCryout Creations mastermindThe indicated URL is not a valid public URL so I cannot check the site myself.
The featured image is only displayed in posts lists when excerpts are used, so I can only wonder if the post you are applying the featured image to and doesn’t display it is perhaps using a post format (post formats other than default always display in full in Mantra and as such don’t display featured images).
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, 2020 at 20:30 in reply to: Is there any way to change the look of the landing page? #101934ZedCryout Creations mastermindUsing and configuring the theme’s landing page is described in our dedicated tutorial:
https://www.cryoutcreations.eu/wordpress-tutorials/how-to-use-landing-page-feature
Customizing the landing page sections beyond the available features (and what you can work around using the elements’ content) would require customizations to the theme’s files and 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.ZedCryout Creations mastermindSome of the individual meta control options do not currently work correctly. This is on our to-fix list for the next theme update.
In the meantime, use the following CSS to hide the date in the meta bar:
.onDate.date, .onDate.date + .bl_sep { 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 mastermindThe mobile menu gets activated below 800px width, not 480 (this step is used in the style but for other changes).
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 mastermindAre other landing page sections (slider, boxes, text areas) displayed on 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.April 26th, 2020 at 20:20 in reply to: huge bug! everything i am trying to change is not changing!! #101930ZedCryout Creations mastermindYou’re not providing any details about what fails to work. Are all the options failing to apply or just some particular options?
Are you using a caching plugin on the site? (did you clear the cache)?Which media image are you attempting to change? The general header image or the landing page’s static slider 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.ZedCryout Creations mastermindYou might want instead to try:
a#logo { position: absolute; left: 1em; top: 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.ZedCryout Creations mastermindSince version 1.2 Nirvana uses the companion Serious Settings plugin to activate its settings page (the reasons behind this are detailed in the 1.2 update announcement).
As you’re still using a (very) old version of the theme on the site you will need to update the theme past v1.2 for the settings plugin to work (as described here).
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, 2020 at 15:54 in reply to: Replace “Category” Meta Info Button with a Fluida Plus Button? #101923ZedCryout Creations mastermindTweaking the metas appearance with CSS would have been my suggestion too.
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, 2020 at 15:49 in reply to: Slider Skips Content and Unable to View Theme Settings #101922ZedCryout Creations mastermindYour third slider image file is missing: http://cubaproject.org/wp-content/uploads/2020/04/IMG_3263-2.jpg
If the theme’s settings page is missing (or malfunctioning), check that you are running the current theme release (1.7.2) and also have the companion Serious Settings plugin installed and active – as this is now used to provide the theme’s settings 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.ZedCryout Creations mastermindNeither the free nor the Plus editions have built-in support for a content section before (above) the menu. Due to the menu’s existing fixed and on-top-of-header functionality features, having such a section would complicate behaviour and styling a lot.
Such functionality can be added on a case-by-case basis as it needs to handle each menu behaviour configuration separately.
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 mastermindYes, our Serious Slider plugin is still under active development and we update it periodically (when we feel it is necessary). There have been no major structural or functional changes in recent WordPress version so we don’t expect any issues in using the plugin with them even if we have not updated the “compatible up to” indicator value (yet).
We prefer to develop and release new updates when constraints demand for an update (to fix discovered bugs or add new functionality), and we like to do this in larger, rarer sets.
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 mastermindYes, my screenshot indicates the WordPress core because that is where that string comes from (the theme calls a WordPress core function which outputs text directly). You need to customize the WordPress translation directly to customize that particular text.
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, 2020 at 15:37 in reply to: Editing the “Search results for:” string via child theme? #101918ZedCryout Creations mastermindYou don’t need to use a child theme to edit strings, you can do that using translations directly, as suggested here: https://www.cryoutcreations.eu/wordpress-tutorials/editing-theme-strings-translations
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