-
AuthorSearch Results
-
April 29th, 2021 at 09:56 #117211
In reply to: Remove shadow
irene ausin garcia
Power UserBuenos 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?
GraciasApril 15th, 2021 at 18:52 #116770In reply to: menu sub-items go beyond visible screen
Julia Johnson
Power UserWe 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
April 6th, 2021 at 09:37 #116349In reply to: Scroll down arrow
Hi Zed, thanks for responding, my website is http://www.italieroadtrips.nl
April 5th, 2021 at 23:14 #116339In reply to: Change color of links except in header
Gunnar Madsen
Power UserHi 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
April 4th, 2021 at 21:53 #116284In reply to: No Sticky Post in Featured Box
Zed
Cryout Creations mastermindHi,
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 thepost__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.March 29th, 2021 at 14:18 #116071In reply to: Mobile menu
Everything works, cleared cookies
March 29th, 2021 at 06:45 #116060In reply to: No Sticky Post in Featured Box
myob9a
Power UserBy 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}
thrownWebsite: dickson.org.au
March 27th, 2021 at 21:21 #116013Drobb
Power UserThank 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 & AtahualpaI 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!
March 27th, 2021 at 17:55 #116000In reply to: Control colours of animated header text
Zed
Cryout Creations mastermindIf 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.March 27th, 2021 at 17:47 #115993In reply to: Change color of links except in header
Zed
Cryout Creations mastermindHi,
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.March 27th, 2021 at 17:39 #115988In reply to: Force menu to hide in mobile landscape mode
Zed
Cryout Creations mastermindHi,
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.March 27th, 2021 at 17:38 #115987In reply to: Menu and Banner alignment
Hi
It’s the website I refer to above: http://www.onlinemathematicstutor.com
All other pages on site working fine- just the banner and menu on that first index page
Website: www.onlinemathematicstutor.com
March 27th, 2021 at 17:31 #115982In reply to: Post thumbnail not showing
Zed
Cryout Creations mastermindHi,
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.March 27th, 2021 at 17:28 #115981In reply to: Change font size of tagline/site description
Zed
Cryout Creations mastermindHi,
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.March 27th, 2021 at 13:25 #115974Zed
Cryout Creations mastermindHi,
[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.March 27th, 2021 at 12:43 #115966In reply to: Kahuna Editor styles don’t match theme
Zed
Cryout Creations mastermindHi,
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.March 27th, 2021 at 12:37 #115965In reply to: I need help, menu not showing subitems
Zed
Cryout Creations mastermindHi,
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.March 23rd, 2021 at 13:13 #115783In reply to: Gallery not displaying correctly on mobile devices
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
March 22nd, 2021 at 18:15 #115746In reply to: Setting site identity separately from header text
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.jpgMarch 21st, 2021 at 23:30 #115716In reply to: Setting site identity separately from header text
Zed
Cryout Creations mastermindHi,
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/#captionIf 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.March 21st, 2021 at 23:18 #115714In reply to: Landing Page Featured Icon Issue
Zed
Cryout Creations mastermindHi,
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.March 21st, 2021 at 23:10 #115711In reply to: Header Menu isnt working
Zed
Cryout Creations mastermindHi,
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.March 21st, 2021 at 23:01 #115709In reply to: Hide the page title on certain pages?
Zed
Cryout Creations mastermindHi,
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.March 21st, 2021 at 22:53 #115706In reply to: 2.4 has broken my header
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.March 21st, 2021 at 22:50 #115705In reply to: Theme Ver 2.4 and Child Themes
Zed
Cryout Creations mastermindThat 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.March 21st, 2021 at 00:08 #115663In reply to: Clarifying Mobile Menu Issues
uisdean
Power UserHi 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!
UisdeanWebsite: www.alwaysrejoicing.com
March 18th, 2021 at 16:16 #115579In reply to: Gallery not displaying correctly on mobile devices
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
March 15th, 2021 at 12:51 #115421In reply to: 2.4 has broken my header
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.March 14th, 2021 at 13:56 #115382In reply to: Theme Ver 2.4 and Child Themes
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.March 12th, 2021 at 23:16 #115294In reply to: New Updates in the future?
Zed
Cryout Creations mastermindHi,
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. -
AuthorSearch Results