Search Results for 'ie'

  • Author
    Search Results
  • #119312

    In reply to: Force mobile menu ios

    Is there any other way to do it?

    On iPad, portrait, the hamburger menu does not appear (it shows the regular menu).

    But since the menu is a bit too large, it goes under the site logo, and over the hero image (so, black on black).

    iPad air 3 is 2,224 x 1,668, so guess the breakpoint should be at 835 for the menu to switch, instead of the usual 768.

    I tried to edit the css with @media screen and (max-width: 850px) but honestly, my css skills are lacking to build myself something like that.

    Cheers

    ps : In the meantime, i tweaked the menu to make it smaller so it’s ok on ipad, but not an ideal solution.

    Website: ctequebec.com

    #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.
    #118745

    In reply to: Featured Icon Blocks

    Hi Zed,
    Your reply put me on the right track. My gallery plugin does create shortcode. By enabling manual excerpts on the pages: add_post_type_support( ‘page’, ‘excerpt’ ); and by enabling the use of shortcode in the excerpt: add_filter(‘get_the_excerpt’, ‘do_shortcode’);
    and by inserting the gallery shortcode in the manual excerpt field the gallery is displayed in the featured icon box. I have not extensively tested this yet but on the face of it this seems to work without any problems. Thanks for your thoughts.

    #118716

    In reply to: using in slider text?

    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.
    #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.
    #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.
    #118685

    Thank you for your response.

    … the slider may be interfered with or malfunction completely if something else on the site use Bootstrap too and applies its styling/code too generally.

    This is very disappointing as I really wanted to make your slider plugin work here. Since BootStrap is such a widely used component, it would have spared me tons of wasted time if you had mentioned this potential conflict someplace on your WordPress repository page.

    FWIW for anyone reading: I switched to Slide Anything which is working flawlessly without Bootstrap conflicts.

    • This reply was modified 4 years ago by sparky672.
    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.
    #118656

    In reply to: header image

    Thanks for your reply, but that’s what I tried to do and it didn’t work… It showed the new picture in the sidebar but it just wouldn’t take the old one out.
    I now had to use another theme for the time being, but I might be able to test it on another website.

    #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.
    #118643

    In reply to: Featured Icon Blocks

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

    Hi,

    Our Serious Slider plugin is Bootstrap-based so it includes the needed Bootstrap styling and JavaScript to make it work. We tried to make it self-contained so that it doesn’t expand its styling and code on anything else in the content that may also be using Bootstrap (and its classnames/IDs), however it is not possible to protect for the reverse situation without completely rewriting the Bootstrap identifiers.
    As such, the slider may be interfered with or malfunction completely if something else on the site use Bootstrap too and applies its styling/code too generally.


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

    The site title’s background box position is configurable through the theme’s options since Bravada 1.0.4. This does change the animation effect by adjusting its duration and behaviour, but a completely different effect can only be applied by writing the custom styling (and perhaps JavaScript code) necessary for it.


    @Ness2021
    , despite appearances I do my best to answer every forum topic when possible, regardless of the attainability of the request (the timing is the major variable, though).


    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.
    #118635

    In reply to: Distorted pictures

    Zed
    Cryout Creations mastermind

    I don’t see any JS errors on the site so I don’t get why the images would be distorted. Perhaps they’re smaller (narrower) than the boxes they are displayed in?

    Could you re-enable them for me to check out their sizes and the exact styling that applies?
    You can apply the following CSS to hide the boxes section from being visible to visitors:

    .lp-boxes-1 {
        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.
    #118632

    In reply to: tranfer theme

    Zed
    Cryout Creations mastermind

    Hi,

    Our priority support service is a yearly subscription. Access to the link removal child theme is available separate from the support service for as long as we will keep maintaining our (classic) themes.

    Please create a support migration request and we’ll look into this.
    Please include any related information (such as the name, email, payment date or a previous ticket number) that will help us identify past accounts in the order’s Additional Information field.


    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.
    #118628

    In reply to: CTA header button

    Zed
    Cryout Creations mastermind

    Dashboard links are only accessible to authenticated users – I cannot access or view the link you provided.
    Also, it appears to indicate a Smart Slider plugin administration section, although your initial question was about the theme’s CTA buttons and subscription forms.


    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.
    #118310

    In reply to: CTA header button

    Hello,
    The CSS code worked great for the Shop page. 🙂
    Would you by any chance know which CSS code to use to make the same change to the Category pages?
    This is one of my category pages:

    https://www.juliesamericancookies.com/product-category/cookies/

    Thank you

    Zed
    Cryout Creations mastermind

    Hi,

    That effect is applied by WooCommerce’s own styling. You can try to following CSS to remove it:

    .post-type-archive-product .woocommerce ul.products li.product .woocommerce-thumbnail-container:hover a img {
        transform: none;
    }
    .post-type-archive-product .woocommerce-thumbnail-container:hover .woocommerce-buttons-container {
        transform: translateY(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.
    #118241
    Zed
    Cryout Creations mastermind

    Hi,

    The buttons have link fields in which you can insert the necessary URLs to either navigate to a different site section or jump in-page to a specific location.

    The latter are what’s called anchor links and have a specific procedure of setting up:
    https://www.w3docs.com/snippets/html/how-to-create-an-anchor-link-to-jump-to-a-specific-part-of-a-page.html
    To use anchor links on the landing page you’ll need to know the theme’s existing section IDs:

        #lp-blocks1
        #lp-blocks2
        #lp-boxes-1
        #lp-boxes-2
        #lp-boxes-3
        #lp-text-zero
        #lp-text-one
        #lp-text-two
        #lp-text-three
        #lp-text-four
        #lp-text-five
        #lp-text-six
        #lp-portfolio
        #lp-testimonials
        #lp-page or #lp-posts

    or add your own IDs in the desired content locations.


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

    Hi,

    Septera’s default design is to have the logo/site title and menu on the same line.

    I’d need to browser your site to observe the exact changes you’ve already applied before trying out further tweaks.


    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.
    #117772

    In reply to: Overlay does not work

    Zed
    Cryout Creations mastermind

    Hi,

    I believe you are encountering the same issue previously reported here:
    https://www.cryoutcreations.eu/forums/t/cant-see-hero-image
    and here:
    https://www.cryoutcreations.eu/forums/t/no-header-transparency

    This is caused by PHP using a localization configuration that renders floating point numbers using comma as delimiter instead of dot (which are used directly in the CSS and not supported by browsers – the all expect decimal points). My suggestion is to change PHP regional settings to use the decimal point for floating point numbers.


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

    The theme’s styling has been manually edited, leaving what I believe is an error which forces the menu container to a large, fixed, height:

    The left side is the theme’s original styling.

    It is generally bad practice to edit theme (or plugin) files directly. Most changes, especially CSS tweaks, can be achieved using the existing Additional CSS settings field or perhaps a child theme.

    You can see the full differences list here:
    https://www.diffchecker.com/VLIAWUY6


    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.
    #117655

    In reply to: Scroll down arrow

    OK, I found. Simply in additional CSS.

    Thank you.

    Regards,

    Etienne

    #117652

    In reply to: Scroll down arrow

    Hi Zed,
    Hi Mervyn,

    I’m very interested by the above suggestions. Like Mervyn, I would like indicate to visitors that page is scrollable.

    Could you please indicate to me where/HowTo implement these changes ?

    Kind regards,

    Etienne

    Website: www.lesindecis.be

    • This reply was modified 5 years ago by GoodThing.
    Rocky Trifari
    Power User
    This reply is private.
    #117613
    Zed
    Cryout Creations mastermind

    I believe we may be discussing about different configuration modes.

    The configurable caption title/text is applicable to the theme’s landing page feature as the homepage:

    While the landing page is not activated, the theme will use the site title and tagline as the header title area for the homepage, for example with a (static) page:

    or the default posts 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.
    #117608
    Zed
    Cryout Creations mastermind

    Some of your replies were held for moderation due to the external content/links.

    Those screenshots don’t look like any of the default WordPress display modes. Are the 3 individual elements visible in the images separate post or is that just content part of a single post?
    Are you using a plugin to build that layout and display that particular 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.
    #117545

    Replies to this seems broken?

    #117542

    (second try to reply)
    I believe this is a feature of wordpress, the view of all posts when they appear on the front-page and the view of each individual post is different. So, this is what a post look like when I have all posts viewed on the front-page:
    Broken layout
    This is how it looks like when I view the actual post on it’s own:
    Wanted layout

Viewing 30 results - 241 through 270 (of 3,157 total)