Zed

Forum Replies Created

Viewing 30 posts - 181 through 210 (of 6,640 total)
  • Author
    Posts
  • in reply to: How edit the front page ? #129018
    Zed
    Cryout Creations mastermind

    Hi,

    Most of the content on Nirvana’s presentation page is configurable through the theme’s options, available on its settings page under Appearance > Nirvana Settings in the dashboard.


    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: Navigation menu item clashes with dropdown list #129017
    Zed
    Cryout Creations mastermind

    Hi,

    The theme is designed with a menu appearance where all menu items fit in the allotted space (on the target screen sizes). If this does not happen, then the menu will overflow on top of the header image / slider image (depending on the site section viewed).
    This can be avoided by ensuring the header content (logo/title, menu, socials) fit in the available width.
    In the Plus edition of the theme it is additionally possible to reconfigure the screen width at which the desktop menu (that could be overflowing) gets replaced by the smaller mobile menu.


    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: Social Menus Won’t Update #129015
    Zed
    Cryout Creations mastermind

    Hi,

    Frontend not updating instantly after making changes in the dashboard is usually an indication that some form of caching is preset. Since you didn’t include an URL, I cannot look for the usual caching plugins signatures to confirm this.

    The menu layout should be displayed exactly as you have configured it in the dashboard (if you use a custom menu). If you rely on the default pages menu, then that should use the pages’ set hierarchy.


    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

    Hi,

    I’m not sure how you intended to attach the screenshot since our forum does not support file uploads.

    We are not aware of any issues in using Nirvana and Yoast SEO on the same site. Are you encountering problems?


    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

    Hi,

    Using different content for the icon blocks (as well as featured boxes and text areas) is a feature that’s only available in our Plus edition of the theme.
    The free edition, due to WordPress.org guidelines on the numbers of allowed custom fields in the theme options, is limited to only being able to use the same posts and pages that are also the target (linked to) from the blocks and boxes.


    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: Mobile menu speed control #129011
    Zed
    Cryout Creations mastermind

    Hi,

    The timing of the animation is defined in the JavaScript code controlling the mobile menu’s functionality and is not easily adjustable.


    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 font size of site description #129010
    Zed
    Cryout Creations mastermind

    Hi,

    The tagline’s (description’s) font size is relative to the configurable general font size. If you want to customize it independently, try the following CSS:

    body #site-description {
         font-size: 0.85em; /* default value */
    }

    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

    Hi,

    The theme uses core WordPress function calls to retrieve the appropriate (page/post/section) title. You can make use of the available the_title filter to hook your own code, check for the section that’s being currently processed and override the text returned accordingly.

    Is there a specific reason you want to use a separate title in the dashboard from what’s displayed publicly 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.
    in reply to: update tempera theme #129008
    Zed
    Cryout Creations mastermind

    Hi,

    That really depends on what specific changes you’ve made (and what version of the theme you’d be updating from).
    As a general rule it’s a bad idea to make changes directly to themes or plugins installed from the repository (or third party sources). For themes you can usually use the Additional CSS field for just CSS tweaks or implement a child theme for more complicated customizations.

    Since updating now would actually require to transfer these changes to the new theme version (the opposite of implementing the theme update changes would most likely require more work), I suggest you take the opportunity to also transfer the tweaks out of the theme’s 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.
    in reply to: Mantra – Category Archive page 2+ #129007
    Zed
    Cryout Creations mastermind

    As I said previously, the theme does not control or handle URLs, so I don’t see how it could interfere with them (while the site works fine with a Twenty theme).

    On our own theme demo the pagination URL works fine with Mantra: https://demos.cryoutcreations.eu/wordpress/mantra/blog/page/2


    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: Podcast Player gets slimmed down on Landing Page #129006
    Zed
    Cryout Creations mastermind

    The podcast is placed in the second text area, so the CSS should be different:
    #lp-text-two .lp-text-card { width: 100%; max-width: 100%; }

    Did you swap the text areas in the meantime or did I fail to notice this the first time around?


    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: Elementor homepage #129004
    Zed
    Cryout Creations mastermind

    Hi,

    Are you using just the standard WordPress static homepage or is the theme’s landing page feature also enabled? If the latter is true, try disabling the landing 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: Post Preview Image Sizes #129003
    Zed
    Cryout Creations mastermind

    Hi,

    The ideal dimensions would be those configured in the settings (the height) and computed based on the post display options (content width and posts layout).


    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

    Hi,

    The opacity of the menu bar is controlled by the theme’s menu positioning option.


    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: Header image alignment mobile version #129001
    Zed
    Cryout Creations mastermind

    Hi,

    Try this CSS:

    @media (max-width: 800px) {
        #masthead .header-image {
            background-position: center left !important;
        }
    }

    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: Create a child theme Bravada #129000
    Zed
    Cryout Creations mastermind

    @Javi, you could use Sundown as a basis for your child theme.
    Clear out all the files except functions.php (retain just the style enqueuing function) and style.css (retain its header).


    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 don’t work properly #128986
    Zed
    Cryout Creations mastermind

    Hi Chris,

    I am not seeing this behaviour on your site at this time. Did you resolve it 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.
    in reply to: Cryout Column title #128982
    Zed
    Cryout Creations mastermind

    Hi,

    The Column widget title does not currently support HTML due to how its content is escaped for safety.


    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: Editing wp query loop block via css #128977
    Zed
    Cryout Creations mastermind

    Hi,

    The query block uses very different markup for its output from the regular posts list displayed by the theme, so none of the existing posts list appearance styling will apply to it.
    Unfortunately, there’s no easy way (CSS class/identifiers) to change this.


    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: title animation when page traslated #128976
    Zed
    Cryout Creations mastermind

    Hi,

    The animation effect makes use of some hidden text elements, which unfortunately don’t play well with third party content readers (such as translators or embedding services).
    This is one of the reasons we also included an option to control the animation effect.


    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: Make featured image different size to Slider on homepage #128975
    Zed
    Cryout Creations mastermind

    Hi,

    The header image height is configurable separately in the theme’s options. This height is overridden by the separate full screen option.


    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: Problem with Classic Editor #128974
    Zed
    Cryout Creations mastermind

    Hi,

    Did you happen to check if the issue is still manifesting if you temporarily switch to one of the default Twenty themes while having the Classic Editor plugin enabled?


    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: Header Image Height Reduced? #128973
    Zed
    Cryout Creations mastermind

    Hi @Otti,

    Since you have donated for our premium support service before 2016, we need to manually identify and reassociate past purchases as we didn’t have an account system on our site back then.

    I have now added the necessary access to your account to be able to download the updated NoLink 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: Transparent block in pages & Primary Accent Color #128967
    Zed
    Cryout Creations mastermind

    Hi,

    The visual details can usually be tweaked with custom styling. If by white area you’re referring to the main content container, the CSS for that should be:

    article.hentry, body:not(.blog):not(.page-template-template-blog):not(.archive):not(.search) #container:not(.bravada-landing-page) .main, body.bravada-boxed-layout:not(.bravada-landing-page) #container {
        background-color: rgba(255,255,255,0.5);
    }

    Adjust the values as necessary.

    The accent color is used in multiple spots and places and in various ways. These uses were not necessarily designed to look identical.


    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: Convert website from Kahuna to Kahuna Plus #128966
    Zed
    Cryout Creations mastermind

    Hi,

    The Plus theme is capable of looking for and importing existing options from its free counterpart for a quick (and painless) theme migration.
    Please see our getting started tutorial: https://www.cryoutcreations.eu/wordpress-tutorials/getting-started-with-our-plus-theme#options-migration


    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 change ‘about this site’ block on each page #128965
    Zed
    Cryout Creations mastermind

    Hi,

    I am not sure which block you are referring to. Could you provide a screenshot?
    Is this happening on the frontend of the site or is this in the editor?


    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: Add text under text in header #128963
    Zed
    Cryout Creations mastermind

    Hi,

    You can use the theme’s header widget area to include additional content (existing widgets or HTML markup using the text/code widget) over the header 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: Color/Background of Entries in Hambuger Menu #128962
    Zed
    Cryout Creations mastermind

    “Custom styling” is not an option, it’s a method of applying customizations to a site.

    https://wordpress.org/support/article/appearance-customize-screen/#additional-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.
    in reply to: Removing Primary Accent Color in One Place #128961
    Zed
    Cryout Creations mastermind

    Hi,

    Are you referring to all locations where the background line is used on the titles, or just some?


    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: Mystic child theme #128960
    Zed
    Cryout Creations mastermind

    Site exploits usually target specific files that are always there (such as a header.php file in each subfolder of the themes/ folder). I suggest investigating how that line of code got there, as it may return as soon as the exploit/vulnerability is targeted again.


    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 - 181 through 210 (of 6,640 total)