Zed

Forum Replies Created

Viewing 30 posts - 1,771 through 1,800 (of 6,644 total)
  • Author
    Posts
  • 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.
    in reply to: Font in headlines of pages resized #70331
    Zed
    Cryout Creations mastermind

    I cannot reproduce such an issue, and since you are using caching on the site, that may have played a role in the hiccup experienced after the update.

    Be sure to clear the cache after performing updates or 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: thumbnails have resized #70330
    Zed
    Cryout Creations mastermind

    That should no longer be a problem after 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: Italian language #70329
    Zed
    Cryout Creations mastermind

    The theme does not process or filter post/page content in any way. Additionally, apostrophes are correctly displayed lower in the text.

    I suggest checking the content in the dashboard editor and correcting the apostrophes 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: Force Lower Case in Menus still not working #70328
    Zed
    Cryout Creations mastermind

    Update 1.5.0.2 fixes the footer menu still not following the 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.
    Zed
    Cryout Creations mastermind

    The calculation includes 80px of padding between the content and sidebar (which are not a problem visually until a border is applied to one of the two elements).


    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: Embedding Youtube breaks Nirvana's CSS #70326
    Zed
    Cryout Creations mastermind

    The embed issue was reported here before, so we were aware of it and got it fixed.


    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: Issue with social links when video embedded #70325
    Zed
    Cryout Creations mastermind

    This should be fixed in the 1.5.0.2 update. Thanks for letting us know.


    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: SEO Features in Septera Plus #70324
    Zed
    Cryout Creations mastermind

    While our themes are SEO optimized (by using the correct markup and elements hierarchy), we do not include any SEO specific control options in either the free themes (it is not allowed by the guidelines) nor the Plus ones.

    We believe that for every functionality the best available options should be used – and for SEO there are already plugins that are created specifically for the purpose.


    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: Gutenberg & Tempera #70323
    Zed
    Cryout Creations mastermind

    So far we have done some preliminary tests with the development builds of the Gutenberg plugin and we have not encountered any site-breaking issues with the themes (just some minor styling hiccups with the gallery block which we’ll correct in upcoming updates).

    We always appreciate bug reports, so if you noticed anything out-of-place while using Tempera with Gutenberg, please let us know.


    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 not displaying on Blog landing page #70322
    Zed
    Cryout Creations mastermind

    Did you properly update all WordPress database records to reflect the new URL?


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

    Apply this CSS:

    body.parabola-menu-left #nav-toggle {
        text-align: right;
    }

    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: La balise "more" ne fonctionne pas avec Mantra #70320
    Zed
    Cryout Creations mastermind

    Where is the no-longer-working “more” located 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: woo cart icon #70150
    Zed
    Cryout Creations mastermind

    I believe you have previously used WooCommerce-dedicated themes which were displaying cart icons.
    While they support WooCommerce usage (as in they don’t break down or display broken WooCommerce site sections), our themes do not currently include deep WooCommerce integration features (like the inclusion of a dedicated cart menu or icon).


    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: Contain all header images except home page #70028
    Zed
    Cryout Creations mastermind

    If you’re using the landing page, you have the option of using the “static slider image” feature (instead of the header image), which lets you display the image of your choice (and at the desired size), completely separate from the rest of the header image 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

    Your main navigation does not fit in the available space (making it overflow below).
    You need to shorten the menu (reduce the items) so that they all fit at the right side of the site title or add custom CSS to activate the mobile menu earlier (which would be weird to happen this site width).


    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,771 through 1,800 (of 6,644 total)