Zed

Forum Replies Created

Viewing 30 posts - 1,741 through 1,770 (of 6,629 total)
  • Author
    Posts
  • in reply to: Different page presentation #71066
    Zed
    Cryout Creations mastermind

    That’s due to general styling changes introduced with Gutenberg.
    We’ll update the theme to resolve the incorrect alignment.


    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: Hamburger menu does not work on Chrome (Septera) #71065
    Zed
    Cryout Creations mastermind

    Your site may have more than a JavaScript problem:

    https://codex.wordpress.org/FAQ_My_site_was_hacked


    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: Tablet responsiveness #71064
    Zed
    Cryout Creations mastermind

    Could you post a link to your site?

    The theme uses core WordPress functionality to select the images to display, however the resulting images depend on what’s available (and at what sizes).


    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: Page with list of tags #71063
    Zed
    Cryout Creations mastermind

    Your question is not theme-specific and I am not sure I understand what you’re trying to do. Are you trying to list taxonomies in a page or list posts belonging to a specific taxonomy?

    Both tasks most likely require a plugin (if one exists) or writing custom (short)code for them. WordPress does not provide a way of listing either taxonomies or posts inside a static page’s content.


    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: Aspect Ratio on Home Page Featured boxes #71062
    Zed
    Cryout Creations mastermind

    The features boxes images should be uploaded at the configured height and computed width (content width divided by the number of columns). The theme then resizes them on view while keeping their aspect ratio.

    If the currently configured image height and site width/column count cause the images to get cropped in an undesirable way, adjust the configurable values to better fit the 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: Responsive text/font size within slider #71061
    Zed
    Cryout Creations mastermind

    Lehey, unless you tweaked things, the buttons should be correctly sized on all devices. The slider’s overall font size is configurable on the edit screen.


    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: PolyLang Integration Issue #71060
    Zed
    Cryout Creations mastermind

    Teele, to do that use the theme’s slider shortcode functionality combined with Polylang – this way you have two slider shortcode input fields in Polylang’s strings management screen.


    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 disable cryout columns on mobile phone #71059
    Zed
    Cryout Creations mastermind

    Naomi, you are not using the theme’s presentation page so that styling does not apply.
    You’ve placed the theme’s columns in the footer widget area, where you can use this CSS instead:

    @media (max-width: 800px) { 
       #footer-widget-area .ppcolumn {
           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: $colPadding changing after update #71058
    Zed
    Cryout Creations mastermind

    That change is part of the theme design adjustment (which has a more spacious 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: Hide Header Image on Mobile #71057
    Zed
    Cryout Creations mastermind

    That can be done with CSS media queries:

    @media (max-width: 800px) {
        body #header #bg_image { 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: Setup Documentation? #71055
    Zed
    Cryout Creations mastermind

    https://www.cryoutcreations.eu/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: Top Menu Tab Font Color #71054
    Zed
    Cryout Creations mastermind

    The main navigation does not have distinct color options as they are pretty much fixed.
    You can apply your custom CSS style with:

    body #access li > a { /* menu items */ }
    body #access li:hover > a { /* menu items on hover */ }
    body #access ul li.current_page_item > a, 
    body #access ul li.current-menu-item > a { /* current section menu item */ }

    This topic is also covered in the FAQs:
    https://www.cryoutcreations.eu/faq/e5-c18-where-are-the-menu-fontcolour-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: Fonts not working on mobile & tablets #70472
    Zed
    Cryout Creations mastermind

    I apologize for the late answer, your replies ended up being marked as spam.

    It looks like the font enqueues are working correctly at this time so the fonts should work normally. I can’t test your site on mobile devices, though (due to the geo blocking 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: Category related scrolling back and forth – how? #70440
    Zed
    Cryout Creations mastermind

    The previous/next post links are generated and handled by WordPress. For them to link inside the current category (or any other filtering criteria) this needs to be handled within WordPress (or using a plugin, if possible).


    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 Images on post & blog home #70439
    Zed
    Cryout Creations mastermind

    Featured images are displayed in the header only if they are large enough (at least 75% of the configured site width and configured header image height).


    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 in wrong order in Featured Boxes #70438
    Zed
    Cryout Creations mastermind

    The sections titles and descriptions are designed to be displayed in reverse order.
    You can customize that with some CSS:

    body .lp-section-header .lp-section-title {
        -ms-flex-order: 1;
        -webkit-box-ordinal-group: 1;
        order: 1;
    }

    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: Italic footer font… how do I change it? #70437
    Zed
    Cryout Creations mastermind

    That can be customized with CSS:

    body .footermenu ul li a, body #site-copyright { 
       font-style: normal;
    }

    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: Hamburger menu does not work on Chrome (Septera) #70434
    Zed
    Cryout Creations mastermind

    I see a JavaScript error in your site, related to a variable called ‘catapultReadCookie’.

    The theme requires JS to be functional.


    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 change background color for one of the menu items #70433
    Zed
    Cryout Creations mastermind

    All menu items have unique identifiers which can be used to target them specifically with CSS. For example, for the last menu item:

    #access .menu-item-2406 > a {
        background: #111;
    }

    You’ll need to adjust the left/right padding customization to make the text appear center-aligned inside the items.


    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 Image "Additional CSS Class" Help Needed #70432
    Zed
    Cryout Creations mastermind

    Can you post an url for the site/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: 1.5.5. Submenu Not Working #70430
    Zed
    Cryout Creations mastermind

    @Desiree, the indicated website does not appear to be running our theme (anymore), although some of the described items are still not working.


    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: Remove meta icons #70429
    Zed
    Cryout Creations mastermind

    You can do that with CSS:

    .entry-meta span i::before {
        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: Bug or not after updating Nirvana? #70428
    Zed
    Cryout Creations mastermind

    The options-generated styling is partially not working on your site due to a change in the 1.5.0.2 update. We’ll release a new update today which corrects it.

    Thank you for pointing out the issue.


    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: Menu alignment left, hamburger menu right #70364
    Zed
    Cryout Creations mastermind

    Your phone’s browser has caching too (and mobile browsers are a lot more aggressive at this than desktop ones). Check with a different browser or phone or wait for the caching to expire.


    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 opacitiy buttons main menu #70337
    Zed
    Cryout Creations mastermind

    The highlight indicates the current menu item. However, as you have multiple menu items pointing to homepage sections (technically also the homepage), WordPress treats them all as being the current menu items.

    You can remove the highlight with custom CSS:

    body #access ul > li.current_page_item,
    body #access ul > li.current-menu-item,
    body #access ul > li.current_page_ancestor, 
    body #access ul > li.current-menu-ancestor {
        background-color: inherit;
    }

    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: external blog on presentation page? #70336
    Zed
    Cryout Creations mastermind

    I am not sure what you mean by “external blog”, but the theme is capable of displaying the latest posts list part of the presentation 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: Reduce space between text areas on presentation page #70335
    Zed
    Cryout Creations mastermind

    The original question was about the text areas, so the custom CSS only applies to those. The presentation page has additional sections beside the text areas that can have their padding reduced:

    #pp-texttop, #pp-textmiddle, #pp-textbottom, 
    #front-columns-box, 
    .presentation-page #content {
       padding-top: 20px;
       padding-bottom: 20px;
    }

    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: Switch Main Menu to Mobile Earlier #70334
    Zed
    Cryout Creations mastermind

    It is simpler to tweak the menu items padding when they no longer fit:

    @media (max-width: 720px) {
    body #access > .menu > ul > li > a:not(:only-child) > span {
        padding-left: 10px;
        padding-right: 20px;
    }
    body #access > .menu > ul > li > a > span {
        padding-left: 10px;
        padding-right: 10px;
    }
    }

    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 images too large #70333
    Zed
    Cryout Creations mastermind

    This issue is fixed in the 1.5.0.2 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: Logo vs Header Image #70332
    Zed
    Cryout Creations mastermind

    The theme can display either the logo or the site title at a time on the site (but not both). Changing this requires extensive code, functionality and styling changes.

    You are currently using neither of the two but only have the header image 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.
Viewing 30 posts - 1,741 through 1,770 (of 6,629 total)