Search Results for 'ie'

  • Author
    Search Results
  • #117211

    In reply to: Remove shadow

    irene ausin garcia
    Power User

    Buenos días,

    Me ocurre lo mismo, en el footer, encuentro que mis titulos tienen como una sombra de mitad de texto hacia abajo, como se puede eliminar?
    Gracias

    #116770
    Julia Johnson
    Power User

    We have version 1.0.5 and are experiencing the same thing:

    https://bneyyosefna.com, under Mishpacha, Frank Houtz Memorial Scholarship.

    How can we fix this?

    Website: bneyyosefna.com

    #116349

    In reply to: Scroll down arrow

    Hi Zed, thanks for responding, my website is http://www.italieroadtrips.nl

    #116339
    Gunnar Madsen
    Power User

    Hi Zed,

    I was able to achieve changing the header text color using the following css:

    .roseta-over-menu #site-title a,
    .roseta-over-menu #access > div > ul > li,
    .roseta-over-menu #access > div > ul > li > a,
    .roseta-over-menu #sheader.socials a::before {
    color: #ffffff;
    }

    It doesn’t appear to have broken anything on the site, but do let me know if this code can be improved upon 🙂 It would be great to have this option built into the theme, I don’t imagine I’m the only person coming up against this issue.

    Let’s see if I can post a screenshot here for you… https://www.gunnarspot.com/screenshot/

    Website: www.gunnarspot.com/screenshot

    #116284
    Zed
    Cryout Creations mastermind

    Hi,

    The example code is part of the theme and lists the default parameters of the function call retrieving the featured boxes content. To customize the content you’d need to write your own custom function that filters the necessary parameters (not copy that code as-is).

    Sticky posts are already ignored in the retrieval query, as dictated by the ignore_sticky_posts' => 1 parameter. However, this only excludes the sticky posts from being included at the beginning of the list – sticky posts are also regular posts and are included in the results according to their publish date.
    To exclude specific posts entirely, you’d need to make use of the post__not_in parameter by adding it using the filter.


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

    In reply to: Mobile menu

    Everything works, cleared cookies

    #116060
    myob9a
    Power User

    By the by – I tried the solution in https://www.cryoutcreations.eu/forums/t/offset-on-featured-posts only to have the functions.php advice of
    Uncaught Error: Call to undefined function cryout_localize_cat() in wp-content/themes/kahuna-plus-child/functions.php:34
    Stack trace:
    #0 wp-settings.php(528): include()
    #1 wp-config.php(106): require_once(‘/home/draorg/pu…’)
    #2 wp-load.php(37): require_once(‘/home/draorg/pu…’)
    #3 wp-admin/admin.php(34): require_once(‘/home/draorg/pu…’)
    #4 wp-admin/theme-editor.php(10): require_once(‘/home/draorg/pu…’)
    #5 {main}
    thrown

    Website: dickson.org.au

    Drobb
    Power User

    Thank you Zed! I’ll look into shortcodes. By the way, the other theme (Atahualpa) didn’t use the expressions [current year] and [website name] as such; sorry, I should have said {current year} and {website name}, to indicate that those were variables. So the actual statement I have there currently is

    Copyright © 2021 davidweiss.net – All Rights Reserved
    Powered by WordPress & Atahualpa

    I don’t know how Atahualpa updates the year automatically, and I can not longer access the theme’s settings (One of the recent WordPress updates “broke” the theme), to try to figure it out. I suppose I can search through the source files.

    But in terms of implementing something similar in Mantra, shortcodes sounds like a good way to do that, since they’re supported in the footer text field. But if there’s a better way, since I don’t necessarily have to use shortcodes, let me know!

    #116000
    Zed
    Cryout Creations mastermind

    If the desired changes are applied and visible on the site, then the CSS works, so it’s correct.


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

    Hi,

    The particular colors chosen generally needs to work in the particular combinations they are used in with Roseta. The theme has distinct control options for the menu and submenu items texts (in their normal state) and also for the entire header and submenu backgrounds.
    For menu items in hover state the configurable first accent color is used – the two accent colors are used throughout the site so they would need to be compatible with all other colors used, especially the backgrounds of the various sections.
    For further tweaks, custom CSS can be applied to specific elements and locations – however I would need to be able to browser your site to identify the needed CSS for the task.


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

    Hi,

    There is no perfect CSS method of targeting browsers depending on the medium they run on (mobile/table/desktop). Generally, CSS is able to target devices depending on screen size: https://stackoverflow.com/questions/6370690/media-queries-how-to-target-desktop-tablet-and-mobile
    Browser detection is usually done with JS or through code, and even then it isn’t perfect since browser useragent strings can be manipulated.

    For a mobile device in landscape mode you’d want to target a screen size between the largest portrait mode you want the menu to remain visible on and the smallest desktop you’d also want a menu visible one. This approach is bound to overlap some less common situations (like tables in portrait mode or ultra portable laptops).


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

    Hi

    It’s the website I refer to above: http://www.onlinemathematicstutor.com
    Menu not lining up

    All other pages on site working fine- just the banner and menu on that first index page

    Website: www.onlinemathematicstutor.com

    #115982
    Zed
    Cryout Creations mastermind

    Hi,

    Third party service usually have their own algorithms for deciding what image from each section to use (when there are multiple images preset).
    To control exactly what’s being picked up by external services I recommend using a plugin that provides control for such properties – personally I suggest using Yoast, but there should be many SEO plugins capable of 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.
    #115981
    Zed
    Cryout Creations mastermind

    Hi,

    The header title’s font size is relative to the configurable general font size. If, however, you want to customize those elements separately you’ll need to apply some custom CSS:

    body #header-page-title .entry-title {
        font-size: 5em; /* failsafe for IE */
        font-size: clamp(2.5em, 5vw, 5em );
    }
    body #header-page-title .byline {
        font-size: 1em;
    }

    These are the default values – adjust them as necessary.

    And to remove the italic from the footer text use:

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

    Hi,

    [current year] [website name] were most likely shortcodes that generated their displayed content dynamically on the frontend.
    Mantra supports shortcodes in the footer text field as well, but does not provide such shortcodes (mostly because shortcodes are not accepted in WordPress.org repository themes).
    If those shortcodes were provided by a plugin which is still present on the site then they should still work. Otherwise you’ll need to look for a plugin that provides such shortcodes, or write the shortcodes yourself.


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

    Hi,

    The theme applies some configuration-based styling to the editors, however it is currently mostly colors related.
    We tried expanding this functionality for the block editor, but very major WordPress update keeps introducing structural markup changes to the elements in the editor, making the theme’s styling fail and require rewriting after every change.
    For now we’ve postponed working on this functionality (in the hope that some day the block editor will reach a stable state) and left only minimal styling apply to blocks.


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

    Hi,

    I notice your site is working correctly now.
    Usually, issues with the submenus not showing or the mobile menu not toggling into view are caused by other JavaScript errors present on the site (as these functionalities are JS-based in the 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.
    #115783

    Hi there. i did not want them to show incorrectly, so i have replaced all the reusable blocks galleries i had previously saved with standard galleries. I have lost the framing around ALL images in ALL galleries, keeping some single images framed how i wanted all of them, http://thecreativehook.com/ displays how i wanted all the gallery images to appear – framed single photos…

    I have managed to find an example page i cannot fix: https://thecreativehook.com/creations/archive-work/wedding-buttonholes/

    please advise

    Website: thecreativehook.com/creations/archive-work/wedding-buttonholes

    #115746

    thx for reply but I tried that and it doesn’t work!
    Can you tell me where it goes wrong, please? Screenshots are attached
    https://i.imgur.com/7auRf4y.jpg
    https://i.imgur.com/ASwWtk2.jpg
    https://i.imgur.com/6BUE7T1.jpg
    https://i.imgur.com/1vX0Hrp.jpg

    #115716
    Zed
    Cryout Creations mastermind

    Hi,

    The site title/tagline and banner caption are two separately configurable regions (although the homepage banner caption copies the title/tagline text on theme activation for demonstrative purposes).
    The banner caption is configurable from the theme’s dedicated landing page > slider options:
    https://www.cryoutcreations.eu/docs/themes/options/landing-page/slider/#caption


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

    Hi,

    The issue leads me to believe you are using a content builder to create the content for that particular static page. Some content builders do not check and are not aware of the theme’s additional functionality (like the various landing page sections) and apply their filters too broadly, affecting the content of these sections.
    Unfortunately, the only solution for this is to use a static page that’s not built using a builder on the landing page or not include a static page at all.

    We’ve only recently started to receive reports about such behaviour (even though we’ve seen builder used together with the landing page successfully in the past). Could you tell us which builder plugin you are using and what version?


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

    Hi,

    Please include a link to your site or create a support ticket for speedier replies.


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

    Hi,

    The page id only varies between (static) pages – if the themes use the correct WordPress built-in functionality, the the id-specific class names should be the same.
    The second identifier (which targets the specific title element) will most likely differ between themes as that’s definitely layout and theme specific.


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

    @Ian-ITS: the code block above is an example of how the (child) theme’s enqueueing should look.
    If you’re only applying custom styling, WordPress’ Additional CSS field (or a CSS plugin) usually suffices. If you’re customizing (replacing) theme code, then a child theme is needed (some tweaks can also be implemented using a plugin instead).


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

    That depends on what you’re customizing using the child theme. If you’re only applying custom styling, WordPress’ Additional CSS field (or a CSS plugin) usually suffices. If you’re customizing (replacing) theme code, then a child theme is needed (some tweaks can also be implemented using a plugin instead).


    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.
    #115663
    uisdean
    Power User

    Hi Zed,
    The Code works on my “test site” without any trouble. So I just might add it to my actual site. The little boxes do make it easier to see the arrow.

    Confession: I’ve looked at a number of sites and most of them use the “little tiny arrows” just as Cryout Creations does. Therefore, I DO APOLOGIZE. They are a ‘standard’ menu item. Everyone should know about them (including me). So, Please Accept My Apology.

    BTW: I’m really happy with FLUIDA.

    Rejoice Always!
    Uisdean

    Website: www.alwaysrejoicing.com

    #115579

    It is seemingly only on Android devices, that the galleries are not properly shown in the responsive version of the theme, on iphone and pc screens they look fine…

    Website: thecreativehook.com/bunting

    #115421

    Sorry, I’m not clear on this, does the code block above replace all of the wp_enqueue_style code in the child theme’s functions.php ?

    As I don’t understand the PHP enqueuing stuff, would the same effect be achieved by moving all CSS from the Nirvana child them misc. settings into the WordPress Custom CSS?
    Thanks.

    #115382

    Thanks very much Zed. As I don’t understand the PHP enqueuing stuff, would the same effect be achieved by moving all CSS from the Nirvana child them misc. settings into the WordPress Custom CSS?
    Thanks.

    #115294
    Zed
    Cryout Creations mastermind

    Hi,

    Tempera (and our other settings-based themes) have reached their feature and functionality maturity and we consider them complete. We are now updating them only when necessary to fix identified bugs or improve compatibility with new WordPress releases.

    We are currently working on a Tempera update to address some necessary changes to improve compatibility and fix some issues with WordPress 5.6 and 5.7.

    While security issues can never be dismissed, WordPress.org repository themes are limited in the functionality they can implement.
    On the other hand, plugins are free to implement any functionality and don’t go through the same review process before getting published to the corresponding plugins repository.


    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 results - 331 through 360 (of 3,208 total)