Zed

Forum Replies Created

Viewing 30 posts - 991 through 1,020 (of 6,629 total)
  • Author
    Posts
  • in reply to: Social Icons in Header Menu #102236
    Zed
    Cryout 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.
    in reply to: Featured image on the posts page #102235
    Zed
    Cryout Creations mastermind

    The 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.
    in reply to: Mantra: Frontpage text area above columns #102234
    Zed
    Cryout Creations mastermind

    The 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.
    in reply to: Adding an background image behind the header? #102233
    Zed
    Cryout Creations mastermind

    The 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.
    in reply to: How to make header overlay text mobile responsive? #102232
    Zed
    Cryout Creations mastermind

    The 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.
    in reply to: How can I use the pages template? #102231
    Zed
    Cryout Creations mastermind

    Selecting 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.
    in reply to: reduce the space between menu items #102230
    Zed
    Cryout Creations mastermind

    Try 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.
    in reply to: Column Shortcode on Mobile #101993
    Zed
    Cryout Creations mastermind

    The 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.
    in reply to: correct child theme? #101992
    Zed
    Cryout Creations mastermind

    Customizing 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.
    in reply to: Trigger mobile menu at different width #101967
    Zed
    Cryout Creations mastermind

    The 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.
    in reply to: Change 2 Top Buttons #101947
    Zed
    Cryout 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.
    in reply to: How to bold part of the text in the slider #101946
    Zed
    Cryout Creations mastermind

    You 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.
    in reply to: I can’t view featured icons blocks #101945
    Zed
    Cryout Creations mastermind

    If 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.
    in reply to: Home Page is no longer accessable #101943
    Zed
    Cryout Creations mastermind

    Please 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.
    in reply to: Increase content width for a single page #101942
    Zed
    Cryout Creations mastermind

    You 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.
    in reply to: Full width content #101941
    Zed
    Cryout Creations mastermind

    All 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.
    Zed
    Cryout Creations mastermind

    The 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.
    in reply to: Is there any way to change the look of the landing page? #101934
    Zed
    Cryout Creations mastermind

    Using 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.
    in reply to: Information post meta bar #101933
    Zed
    Cryout Creations mastermind

    Some 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.
    in reply to: Trigger mobile menu at different width #101932
    Zed
    Cryout Creations mastermind

    The 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.
    in reply to: How do You Actually Add Featured Icon Blocks? #101931
    Zed
    Cryout Creations mastermind

    Are 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.
    Zed
    Cryout Creations mastermind

    You’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.
    in reply to: How to control the Logo position? #101929
    Zed
    Cryout Creations mastermind

    You 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.
    in reply to: Edit old Nirvana presentation page #101927
    Zed
    Cryout Creations mastermind

    Since 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.
    Zed
    Cryout Creations mastermind

    Tweaking 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.
    in reply to: Slider Skips Content and Unable to View Theme Settings #101922
    Zed
    Cryout Creations mastermind

    Your 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.
    in reply to: Coronavirus Banner #101921
    Zed
    Cryout Creations mastermind

    Neither 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.
    in reply to: is serious slider under active development? #101920
    Zed
    Cryout Creations mastermind

    Yes, 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.
    in reply to: Category title #101919
    Zed
    Cryout Creations mastermind

    Yes, 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.
    Zed
    Cryout Creations mastermind

    You 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.
Viewing 30 posts - 991 through 1,020 (of 6,629 total)