Zed

Forum Replies Created

Viewing 30 posts - 421 through 450 (of 6,629 total)
  • Author
    Posts
  • in reply to: Change content padding homepage #119230
    Zed
    Cryout Creations mastermind

    The indicated site is hidden behind a placeholder screen, so I cannot browse the indicated content to check out its styling.


    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

    I think you’ve found an issue in the theme. Applying the following CSS should correct this until the next theme update:

    body #header-container {
        height: 100%;
    }

    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: Payment #119227
    Zed
    Cryout Creations mastermind

    Hi,

    Our Priority Support service, Plus theme purchases and Club memberships are licensed in yearly terms. The

    The purchased theme will continue to work as installed regardless of the status of the license and the downloaded files are yours to use at any time. Using our themes is not conditioned to having an active subscription, however after the license expires access to the priority support service and theme updates are no longer available.


    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,

    That may be an indication of JavaScript errors on the site. If you can include a link to your site, I can check for 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.
    Zed
    Cryout Creations mastermind

    Hi,

    Parabola does not have this functionality built-in, but you can add custom content (such as a link to your blog page) by customizing the content/content-frontpage.php file (preferably via 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.
    Zed
    Cryout Creations mastermind

    Hi,

    Is it possible to include a link to your site for me to check out your specific theme configuration?


    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: Technical issues (due to theme) #119052
    Zed
    Cryout Creations mastermind

    Hi,

    Did your host provide you with the error messages found in the logs?


    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: only burger menu, also on desktop #119051
    Zed
    Cryout Creations mastermind

    Hi,

    The mobile menu is automatically triggered on screen sizes below 800px – this also includes browsers on large screens running in window mode (where the window is narrower than this value) or when the browser is zoomed in.


    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 and slider not responsive #119049
    Zed
    Cryout Creations mastermind

    Hi,

    Is it possible to include a link to your 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: Description section of Featured Icon Blocks #119048
    Zed
    Cryout Creations mastermind

    The theme’s colors are either directly configurable or computed based on those already configurable. For additional tweaking or more specific changes you can include custom CSS targeting colors:

    .lp-blocks .lp-block-text {
        font-family: ...;
        color: #123456;
    }

    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: Site is not responsive on a mobile #119046
    Zed
    Cryout Creations mastermind

    Hi,

    Could you include a link to your 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: Social Icons #119043
    Zed
    Cryout Creations mastermind

    Hi,

    If the site is using the theme’s social icons functionality (this can also be implemented using a separate plugin), you’ll find the configuration controls in the theme’s settings page, under Appearance > Parabola 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.
    in reply to: Distorted pictures #119024
    Zed
    Cryout Creations mastermind

    The distortion comes from the configuration mismatch between the featured boxes sizes and your source images. Normally the theme resizes/crops the featured images to the configured values, but you most likely uploaded those images to the site before activating Bravada and the necessary resizes are not available, making WordPress uses the images at their original size (also note that images smaller than the necessary crop size are always skipped)

    The image sizes are all of varying sizes and aspect ratios, but they average at 0.92.
    The featured boxes are currently configured (based on their configured height and site width / boxes per row count) to need an image aspect ratio of 1.37. You can correct this two ways:
    1. Adjust the featured boxes height to about 430px to have the featured boxes display with the same aspect ratio as your currently used images, or
    2. Keep using the currently configured featured boxes height of 300px but adjust/edit your images to have a width of 413px.


    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 add code to a page in the / head section #118717
    Zed
    Cryout Creations mastermind

    Hi,

    It is bad practice to modify theme, plugin or WordPress files directly. WordPress’ customizable nature stems for its complex use of hooks and filters.
    To add (javascript) code to the site’s header you should use a plugin like https://wordpress.org/plugins/header-and-footer-scripts/
    If you’re looking to add PHP code (or plain HTML) in the header, you should do that using a child theme or a mini-plugin and hook the code to an existing hook, such as wp_head.


    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: using in slider text? #118716
    Zed
    Cryout Creations mastermind

    Hi,

    Due to the animation affect (and its required styling) the title field does not readily handle <br> line breaks.
    You should still be able to achieve the desired arrangement by limiting the title’s maximum width with CSS:

    .lp-staticslider .animated-title .staticslider-caption-title {
        max-width: 66%;
        margin-left: auto;
        margin-right: auto;
    }
    @media (max-width: 460px) {
        .lp-staticslider .animated-title .staticslider-caption-title {
            max-width: 80%;
        }
    }

    You’ll need to remove the existing <br> break from the title and note that changing the title content will probably require adjusting the 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.
    in reply to: Different header image for each page? #118715
    Zed
    Cryout Creations mastermind

    Hi,

    The theme can use a (static) page’s assigned feature image to replace the header image when viewing that particular page. This functionality is controlled by the Featured Images in Header option, which is enabled by default.


    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

    Our firewall does apply permanent blocks for more serious disturbances, but that would never be triggered by simply browsing the site.
    We also don’t do geo-blocking. I would need the public IP address of your connection with which you’re unable to access our site to check the logs and the block list.


    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: Menus on home page extending beyond edge of screen #118703
    Zed
    Cryout Creations mastermind

    I see only one sub-menu currently pops-up to the right (and partially off-screen). You can customize it to display to the left instead with the following CSS:

    #access .sub-menu li.menu-item-1566 ul.sub-menu {
        left: auto;
        right: calc(100% + 10px);
    }

    You can duplicate this for additional menu (identifiers) that you want it to apply to, or make it more general so that it applies to all sub-sub-menus with:
    #access .sub-menu li ul.sub-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.
    Zed
    Cryout Creations mastermind

    Hi,

    The theme’s overlay colors/opacity options apply to both the (site-wide) header image and the landing page banner image, when used.

    The two images are configured independently (so different images can be set) but the overlay effect is applied the same to both.


    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 i modify pages and MY site look good #118654
    Zed
    Cryout Creations mastermind

    Hi,

    The Plus themes are capable of looking for and importing existing options from their free counterpart as described in our documentation: https://www.cryoutcreations.eu/docs/themes/plus/migration/

    For the list of extra features and functionality, consult the features comparison table on the theme’s page or look for the Plus only indicators in the documentation.


    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 link #118653
    Zed
    Cryout Creations mastermind

    Hi,

    What element are you trying to add a link on and where should the link point to?
    The header image does not have link 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 mastermind

    Hi,

    The theme uses the same header image settings (height, full screen mode) for the entire site. The only site section that can appear differently is the landing page which has the distinct banner image element.

    Having different header image heights is not possible in either the free or the Plus edition of Bravada without employing custom styling or custom code.


    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: Hide or remove nav-below #118650
    Zed
    Cryout Creations mastermind

    Hi,

    Apply the following CSS to the site to hide the navigation:

    body #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.
    in reply to: header image #118649
    Zed
    Cryout Creations mastermind

    Hi,

    The image displayed in the theme by default on the landing page (homepage), below the menu, is not the configured header image but a banner image placeholder, which is configurable from the theme’s options under Landing Page > Slider.

    The sample image is not visible in the customizer panel. To replace it simply assign a different image. To remove the sample image assign any other image in its place and then remove 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.
    in reply to: Just titles on the post page #118648
    Zed
    Cryout Creations mastermind

    Hi,

    The excerpt length is configurable in the theme’s options. Entering 0 should remove the generated excerpt entirely (this setting does not affect manual excerpts).


    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: Menus on home page extending beyond edge of screen #118647
    Zed
    Cryout Creations mastermind

    Hi,

    For efficiency reasons, the theme does not apply any edge detection JavaScript to its menus – this means the menus will overflow outside of the screen if you’re using large (sub-sub-…)sub-menus on the rightmost menu items.

    This can be avoided either by reorganizing the menus or applying custom styling only on the problematic submenus (to reverse their opening direction). This styling needs to be unique to every menu configuration so there’s no catch-all solution.


    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: Display captions on gallery-thumbnails #118646
    Zed
    Cryout Creations mastermind

    Hi,

    Could you provide a link to the page displaying a gallery with captions?


    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: eliminate possibility to comment image permalink page #118644
    Zed
    Cryout Creations mastermind

    Hi,

    1. The behaviour (and target) of the image link is configurable while editing the image in WordPress’ visual editor.

    2. The “image” pages are dynamically generated and don’t have individual comments options. You could try this plugin to programmatically disable comments there.


    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 Icon Blocks #118643
    Zed
    Cryout Creations mastermind

    Hi,

    The Featured Icon Blocks are capable of displaying either an excerpt (either automatically generated or entered manually) or the full content. WordPress itself doesn’t provide a third field beside the excerpt/content that the theme could use there.

    For most cases, entering a manual excerpt resolves the situation where the excerpt displayed in the block needs to be different from the page content, however I’m not sure it would be possible to make the excerpt display a gallery – entering the gallery markup manually is overly complicated, and the default WP galleries don’t have shortcodes to include them by.


    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 Set a Default Image for Posts in Archive View #118641
    Zed
    Cryout Creations mastermind

    Hi,

    Neither WordPress itself nor Anima provide such functionality built-in, however it is possible for a plugin to implement 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.
Viewing 30 posts - 421 through 450 (of 6,629 total)