Zed

Forum Replies Created

Viewing 30 posts - 391 through 420 (of 6,629 total)
  • Author
    Posts
  • in reply to: Custom Social Icons #120254
    Zed
    Cryout Creations mastermind

    Hi @llyeden,

    Since the social icons are image-based in Tempera, their color is not configurable. However it can be force-adjusted using custom CSS, for example:

    #topbar .socials a img { 
        filter: invert(100%) invert(85%) sepia(36%) saturate(4886%) hue-rotate(172deg) brightness(92%) contrast(89%);
    }

    To obtain the necessary filter sequence use this site with your desired color code, but prepend an extra invert(100%) to the list since we’re starting from white, not black.


    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 banner height #120251
    Zed
    Cryout Creations mastermind

    Hi,

    The theme’s Fullscreen header image option applies to all site sections when enabled.
    To have it make distinction between site sections custom code is required.


    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: Alt text for Mantra presentation page #120250
    Zed
    Cryout Creations mastermind

    Hi,

    To do that you’d need to manually customize Mantra’s code. The function responsible for the presentation page content (including images) is mantra_frontpage_generator() found in includes/theme-frontpage.php, which is pluggable in its entirety 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.
    in reply to: Side menu not showing full screen. #120249
    Zed
    Cryout Creations mastermind

    Hi,

    That’s the result of the menu bar having a background color when the menu is not displayed over the header image (when this background would get removed).
    You can force-remove the background with CSS:

    .burgermenu-active #site-header-main,
    .burgermenu-active .site-header-bottom-fixed,
    .burgermenu-active .site-header-bottom.header-fixed .site-header-bottom-fixed {
        background: transparent;
    }
    .burgermenu-active .hamburger span {
        background-color: #fff;
    }

    We’ll look into whether this should be the default theme behaviour.


    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: Content on mobil #120247
    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: Styling of links #120246
    Zed
    Cryout Creations mastermind

    Hi,

    I am not seeing any difference in appearance between the two sections at this time.
    Did you resolve 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: Woocommerce bugs 2 #120245
    Zed
    Cryout Creations mastermind

    Hi again,

    Please include a link to a site where these issues are visible for me to take a look.


    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 Title Transition Speed #120242
    Zed
    Cryout Creations mastermind

    Hi,

    Which transition are you referring to? Is this about the animated letters or are you using a slider?


    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: Can I add author box? #120241
    Zed
    Cryout Creations mastermind

    Hi,

    WordPress’ built-in author box is automatically displayed when the author (user) has their biography filled 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: Headings Get Cut Off on Mobile #120240
    Zed
    Cryout Creations mastermind

    Hi,

    The titles resize relative to the general font size and according to its own options. With some configuration combinations and especially with longer titles, this may not be enough.

    Try using the following custom CSS to further shrink the titles:

    @media (max-width: 800px) {
        .single .entry-title, .singular-title {
            font-size: 4.3vw;
        }
    }

    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,

    In Parabola the layout option controls the layout for the entire site, including single posts.


    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,

    When you set the landing page option to “Serious Slider” or “Banner”, did you also select a specific slider (you’ll need to create it first) or selected the banner image, respectively?

    To have a header image on the homepage, you’ll need to enable the header image globally on the entire site. If you turn this feature off for the homepage then that applies to the rest of the site as well. You can still set the landing page slider section to display a slider or the (separate) banner image on the homepage, though.

    If you do display a header image, individual pages and posts can use their own featured images in the header instead of the general image (if the corresponding option is enabled). The rest of the site section will use the general header image.

    The individual post/page meta options are only available in the theme’s Plus edition.


    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 WordPress’ home_url() function to get the URL used on the site title/logo feature. If you want to change this URL you’ll need to use custom code on WordPress’ available filters (or look for a plugin that does this for you).


    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: Woocommerce bugs #120234
    Zed
    Cryout Creations mastermind

    Hi,

    That’s most likely caused by some CSS overlap. We’ve had this before with some WooCommerce classnames clashing with the theme’s built-in shortcodes styling.
    Disabling the shortcodes functionality (if you’re not using it) might avoid the clash.

    If you can include a site URL where I can see the issue happening, I could provide a more specific 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: Landing page featured box and Polylang workaround #119861
    Zed
    Cryout Creations mastermind

    Hi,

    Thank you very much for your code suggestion.
    We have already included the change in Fluida’s 1.8.7 update.


    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: White space between header and menu – mobile #119495
    Zed
    Cryout Creations mastermind

    Hi @jfju,

    On your site the images are lazy loaded. This can make the slider JavaScript fail to work properly because it doesn’t have the image files ready when computing sizes and animation effects.
    You’ll need to exclude the slides images from the lazy loading 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: Featured Content Text does not appear #119494
    Zed
    Cryout Creations mastermind

    Hi,

    If you’ve moved the site by changing its URL, ensure that you have properly updated all records in the database to reflect the new address:
    https://wordpress.org/support/article/moving-wordpress/#changing-your-domain-name-and-urls


    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: Hiding comments count on blogroll #119493
    Zed
    Cryout Creations mastermind

    Hi,

    You can configure what details are displayed in post lists using the theme’s blog metas 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: Bravada – removing search bar & “Nothing Found” #119492
    Zed
    Cryout Creations mastermind

    Hi @AB2021,

    The ‘not found’ and search bar are there because your site has no content (posts) to display. Add content or set the homepage to display a static page instead to hide those.


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

    That site has the theme’s responsiveness trigger limit option set to its maximum value of 1920px, which means the mobile menu replaces the desktop menu for all screen sizes up to this 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: How to customize color of landing page elements #119490
    Zed
    Cryout Creations mastermind

    Hi,

    The landing page sections’ backgrounds are configurable through the theme’s color options.

    For the CSS tweaking, try the following CSS (the identifiers are relatively self-explanatory):

    [.lp-blocks#] .lp-block .lp-block-icon { } 
    [.lp-blocks#] .lp-block .lp-block-title { }
    [.lp-blocks#] .lp-block .lp-block-text { }

    and [.lp-boxes-#] .lp-box .lp-box-inside { } for the entire box element (image and text) or [.lp-boxes-#] .lp-box .lp-box-content { } for just the part holding the text.

    Include the identifiers encased in square brackets to target individual block or box section (and replace # with the appropriate number), or remove that part to apply to all similar sections.


    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: Jetpack Portfolio #119489
    Zed
    Cryout Creations mastermind

    Hi,

    The theme’s Jetpack portfolio functionality can be used by simply assigning the Portfolio page template to the (static) page you want to have the portfolio displayed on. If you have already published portfolio elements through the dashboard, they will automatically appear on that page.

    With or without using the page template, you can still use Jetpack’s portfolio shortcode in any post/page content (although with not quite the same layout and appearance as the dedicated template).


    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: Where do I change font of slider caption #119488
    Zed
    Cryout Creations mastermind

    Hi,

    The banner image caption title (if this is the one you refer to) is controlled by the Single Post Titles typography options.

    If you’re using the companion slider plugin, it instead inherits the font styling from the theme’s general typography 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: Landing Page Features Not Working #119487
    Zed
    Cryout Creations mastermind

    Hi,

    What are you seeing on the site’s homepage?


    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: Blog featured pictures #119485
    Zed
    Cryout Creations mastermind

    Hi,

    Are the uploaded images assigned as the posts’ 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: No response from Cryout Creations since months #119483
    Zed
    Cryout Creations mastermind

    Hi,

    Are you having a specific issue with the current theme release that requires a fix?


    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: Invisible / no text on button #119482
    Zed
    Cryout Creations mastermind

    Hi,

    That could be happening due to the styling getting applied to the button. Without browsing the page where this button is included (you didn’t include a site URL), I couldn’t tell you more specifics


    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 average user also may or may not be able to replace their car engine oil or change a burnt headlight. It’s a matter of both skills and choice.


    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 titles on category pages as links #119477
    Zed
    Cryout Creations mastermind

    Hi,

    You have custom CSS on the site that disables pointer events on article titles from the news category:


    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 overlap image with use of header widgets #119231
    Zed
    Cryout Creations mastermind

    Hi,

    I would need to be able to browse the site so try out custom styling to achieve that.


    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 - 391 through 420 (of 6,629 total)