Forum Replies Created
-
AuthorPosts
-
December 9th, 2022 at 23:25 in reply to: Possible to have twitter feed in a “Featured Icon Block” on presentation page? #134791
Zed
Cryout Creations mastermindOur themes do not include any social networks specific functionality. This can be added using other plugins.
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 mastermindHi,
It would be a better idea to not customize the landing page file at all and simply make use of the existing filter to override the query arguments, for example:
function child_boxes_override( $args, $section_status, $section_id ) { // apply for second boxes section only if ( $section_id == 2 { // do you want to include both the custom post type and regular posts? $args['post_type'] = array( 'servizi', 'post' ); } return $args; } apply_filters( 'roseta_boxes_query_args', 'child_boxes_override', 10, 3 );
All arguments used in this filter are passed to the posts query.
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 mastermindTry changing the CSS to:
.site-header-bottom:not(.header-fixed) img.custom-logo { max-height: 98px; }
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.August 9th, 2022 at 15:51 in reply to: Warning: Trying to access array offset on value of type bool in #131833Zed
Cryout Creations mastermindHi,
Could you include the whole message? (as they usually reference filenames and locations in files – you can censor out anything in the file paths before WordPress’ root folder)
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 mastermindHi,
The simplest solution there would be to include the logo itself in the header image that’s used on the site.
Alternatively, you could add your logo image to the theme’s header widget area, but some styling may be needed to arrange that properly.
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 mastermindTry turning off Jetpack’s image optimization feature and check if that has any effect.
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 mastermindCustom styling can be used either in a child theme’s style.css file (if a custom child theme is used), WordPress’ dedicated Additional CSS field or a custom CSS plugin.
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 mastermindHi,
Based on the error message it sounds like your child theme is not actually a child theme as it doesn’t load the parent theme’s functionality (or some of it).
Double check that your child theme’s style.css file has the necessary header, specifically the
template:
reference.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 mastermindI’m not sure where how you’ve reached those identifiers, since most of those classnames are not used in the theme.
Try this:
body.septera-over-menu #site-header-main.header-fixed { background: transparent; }
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 mastermindHi,
In Bravada the header menu is a secondary menu location and is not designed to be visible on the (smaller) mobile devices. Mobile devices display the restyled primary navigation.
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 mastermindThe important is not necessary as that styling is already more specific than what’s present 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.Zed
Cryout Creations mastermindHi,
The fixed menu functionality is controlled through Septera’s options:
https://www.cryoutcreations.eu/docs/themes/options/header/menu/?theme=septera#fixed-menuIf 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 mastermindHi,
You can usually use the browser developer tools to inspect the site markup and view applied styling (and also try out and test customizations).
To make the sticky menu semi-transparent you’ll need to tweak the background colors on multiple elements that make up that bar.
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 mastermindHi,
Which elements are you looking to customize, as Verbosa doesn’t have a header per se?
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 mastermindHi,
The featured boxes sections automatically pick up and use the posts’ featured images, when these are assigned to the source posts.
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 mastermindHi,
Hello Word is WordPress’ sample post which can be replaced with your own or deleted if you don’t intend to use posts.
I’m not sure what you mean by search box, the theme’s search fields are controllable through the available options (and only the header one is enabled by default).
If you’re referring to a search form displayed in the content itself, that’s placed there by WordPress because your site has no other content on the section where it is located. Add some content or reconfigure the section to display something else (like a static page) and the search form will go away.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 mastermindHi,
The logo is limited to the available menu bar height by default, but can be made to overflow its limits using custom styling, for example:
body img.custom-logo { max-height: 200px; }
Adjust the value as needed for your site.
The means for adding the logo to the footer differs depending on where exactly you want it placed (in the footer widgets, in the footer text fields, in a custom location).
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 mastermindHi,
Did you make any changes to the theme code/functionality or using a plugin related to images handling?
For some reason the featured boxes don’t include the markup for the <img> tags but only the images URLs as plain text.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 mastermindWordPress 6.0.1 undid/corrected the change that cause the customize screen issue on sites with empty post categories.
If you’re running 6.0.1 your site should no longer manifest this issue regardless of the theme and theme version used.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 mastermindHi,
You should be able to do that with some custom styling:
@media (max-width: 800px) { #lp-boxes-1 .lp-box-image { display: none; } }
Adjust the screen width limit as necessary.
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 mastermindHi,
I am not sure how that happened, but your customer details were not properly associated with the user account, making the support form unable to automatically pick up the account information.
I have corrected this now, sorry about the delay.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 mastermindHi,
The parallax effect is deliberately disabled on Safari to avoid a browser limitation. When/if this issue is corrected in the browser itself, we’ll also disable the necessary workaround in our themes.
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.August 1st, 2022 at 20:08 in reply to: How to set new pages to have different header image from homepage? #131603Zed
Cryout Creations mastermindEnsure that theme option controlling this is enabled (it is enabled by default but perhaps you have disabled it), that your site has a general header image set and that your posts and/or pages have featured images assigned.
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 mastermindHi,
I am not currently seeing any rule (even overwritten) applying 50% width on the header video on the site, and such a styling rule is not present in Anima either.
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.August 1st, 2022 at 19:59 in reply to: Possible to have twitter feed in a “Featured Icon Block” on presentation page? #131601Zed
Cryout Creations mastermindHi,
The theme’s landing page sections can only use regular content (posts or pages, depending on sections) and content provided by the companion plugin in the Plus edition. However, shortcodes are accepted and processed in the content of these posts/pages, so it should technically be possible to use that as a workaround for custom content – although the appearance and layout of that content may need additional tweaking.
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 mastermindHi,
The pin control option currently only applies to in-content images – we’ll address that in the next theme update.
Until then, use the following CSS to remove the pin in the sidebar:
body .wp-caption { background-image: 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.Zed
Cryout Creations mastermindThe header navigation does not have independent typography controls in Bravada. You can customize it nonetheless using custom CSS styling, for example:
nav#access { font-family: Impact; }
Replace with your own font identifier – make sure it is already available on the site or in (most of) the browsers/operating systems, or is embedded separately.
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.August 1st, 2022 at 19:45 in reply to: Header picture reduced weird by sending links on social #131598Zed
Cryout Creations mastermindHi,
For fine grained control over what external services see on your site when sharing / publishing to, I recommend using a SEO plugin which includes such functionality, for example Yoast.
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 mastermindHi,
What mobile device/browser are you experiencing this on?
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 mastermindHi,
Could you include a link to the site in question for me to take a 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. -
AuthorPosts