Zed

Forum Replies Created

Viewing 30 posts - 901 through 930 (of 6,634 total)
  • Author
    Posts
  • in reply to: Hamburger Menu not working on mobile #106299
    Zed
    Cryout Creations mastermind

    You probably had CSS minifying enabled in the caching plugin. Tempera needs its styling to be applied in a particular order for it to work correctly and minifying usually breaks this order.
    You should be able to reactivate caching if you exclude the theme’s styles from minification or do not use this 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.
    in reply to: Site Title and Tagline #106298
    Zed
    Cryout Creations mastermind

    I think we’ve discussed this via a different channel and it was due to a missing header image (affecting the header’s height).


    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: Create a button in the main nav #106294
    Zed
    Cryout Creations mastermind

    The line-height and height are applied to both the list element (menu item) and the inner anchor and span.
    However, I’d advise against changing the (line-)height of the list element – try applying your styling on the inner span only: #access li.menu-item-XYZ > a > span { }


    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 remove featured image from teh post? #106291
    Zed
    Cryout Creations mastermind

    The image displayed below the menu is the header image. Its behaviour can also be controlled by the featured images in the header 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

    Your product image are indeed 500×500 pixels but they are displayed at 100% width (WooCommerce’s styling) in a section encompassing 48% (also WooCommerce’s styling) of the site width, which translates to about 680px width.

    You can use CSS to disable the 100% width enforcement:
    body .woocommerce div.product div.images img { width: auto; }
    but then you may be left with extra space beside the images.


    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: Printing in Chrome gives Grey Box and No Text #106289
    Zed
    Cryout Creations mastermind

    We have not yet released the update which includes that fix.


    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: If I change theme, will I lose the content? #106288
    Zed
    Cryout Creations mastermind

    Your content is created and saved within WordPress, and you can change themes at any time.
    Some particular elements are associated with the theme and may no longer be available with a different theme. Also, you’d need to re-configure the theme (if configuration abilities are available in the new theme) to the desired visual particularities.


    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 the background color to one page or entry #106287
    Zed
    Cryout Creations mastermind

    Try the following CSS:

    .page-id-243 #main {
        background-color: #123;
    }

    Adjust with the numeric ID of the target page (or post) and the desired color code;


    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: SVG in Nirvana site header image #106286
    Zed
    Cryout Creations mastermind

    The theme relies on WordPress’ get_header_image() to retrieve the header image URL used in the generated markup.
    I doubt the plugin can filter this URL, especially since that function does not include any filterable calls.

    To add extra attributes to the header image markup you’ll need to customize the theme code generating it. Look for nirvana_header_image() in includes/theme-functions.php. This function can be unhooked and a replacement hooked in its place.


    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 ability to do this is limited to the markup WordPress itself allows in the site title field (in the general options).


    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 ability to do this is limited to the markup WordPress itself allows in the site title field (in the general options).


    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: Expand the width of “Landing Page » Text Areas” #106282
    Zed
    Cryout Creations mastermind

    In Esotera, text areas content is design to use up to 60% of the width. To increase, use the following CSS:
    body .lp-text-card { max-width: 90%; }


    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: Span code showing in shortcode generated pages #106281
    Zed
    Cryout Creations mastermind

    @Claire, I assume you’ve resolved this in the meantime, as I see nothing out of the ordinary on that page.

    For anyone else seeing markup in the breadcrumbs, check if you’re using some kind of ‘hide title’ plugin that’s filtering post/page titles and adding the extra markup.


    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: More Posts – Not loading on Landing Pages #106280
    Zed
    Cryout Creations mastermind

    I notice there are JavaScript errors on your site when trying to use the ‘more’ button.
    I suggest temporarily disabling active plugins to check for interference from them.


    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 adjust crop option for header image #106279
    Zed
    Cryout Creations mastermind

    You can adjust the cropping position while assigning the header image, however that only applies on the cropped mode of the header image behaviour option. In contained mode the whole non-cropped image is 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.
    in reply to: Number of blog posts on landing page #106278
    Zed
    Cryout Creations mastermind

    The ‘hide post and page’ titles only refers to single post and single page sections. It has no effect anywhere else on the site. To hide titles for sections in the landing page custom CSS can be used:

    #lp-text-two h2.lp-text-title {
        display: none;
    }

    The number of posts displayed in posts lists (on the homepage, in search results, in categories, so on) is controlled by WordPress’ general reading options: https://wordpress.com/support/settings/reading-settings/


    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: Header images missing #106277
    Zed
    Cryout Creations mastermind

    I’ve moved your messages to a separate topic as you are referring to header images (not text headings – h1,h2…).

    It’s good to know that you figured out the source of the problem. We haven’t messed with the default value for that option so it couldn’t have reset by itself during an update (the option is disabled by default so your activation would’ve overridden it in all cases).


    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: Shortcodes on Presentation Page #106274
    Zed
    Cryout Creations mastermind

    That depends on the search form markup that’s outputted by the shortcode – specifically the action parameter, which can either be empty (meaning self) or be a specific URL.

    Does the shortcode work as expected inside other pages?


    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: Make image go all the way to top #106273
    Zed
    Cryout Creations mastermind

    Fluida does not include the option to display the menu (transparently) over the header image.

    Implementing something like this would require styling to conditionally adjust both the menu’s background and the header image’s positioning (depending on scroll position and screen size).


    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: Page excerpts not displaying in front page #106271
    Zed
    Cryout Creations mastermind

    Further testing would indeed require that you (at least temporarily) disable all active plugins to check if any of them are filtering excerpts.


    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 decrease space between menu items (in dropdown) #106270
    Zed
    Cryout Creations mastermind

    Try the following CSS:

    #access ul.sub-menu a {
        line-height: 3; /* default is 3.5 */
    }

    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: Replace social media icon #105396
    Zed
    Cryout Creations mastermind

    The theme’s FAQs also include an example child theme to customize the socials – since code is also needed to perform this customization. I recommend downloading that example child theme and adding the code related to the socials in your own child 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.
    in reply to: Page excerpts not displaying in front page #105394
    Zed
    Cryout Creations mastermind

    Do you use any multilingual or localization plugin on the site?
    Could you try temporarily disabling all other landing page sections except the icon blocks to test if that makes any difference in the excerpts displayed?


    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 not working #105392
    Zed
    Cryout Creations mastermind

    @johnhoke, unless Chrome started duplicating rendering limitations that exist in Safari, the issue you’ve seen is most likely not the same one I’m aware of.
    If possible, please include a screenshot with the malfunctioning 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.
    in reply to: Review rating not working #105391
    Zed
    Cryout Creations mastermind

    If you’re referring to the star fields (or any other additional fields) missing from the product comment form, I suggest switching the Comments Field Label option to Labels for increased compatibility with form customization 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.
    in reply to: Adjust appearance of excerpts on home page #105390
    Zed
    Cryout Creations mastermind

    Automatically-generated excerpts don’t include any of the original formatting, so for a poem type of text that would turn everything into a single blog of text. Using manual excerpts or applying a post format (since these don’t display excerpts at all) is a solution I would suggest in this case.


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

    I think we’ve also discussed this via the support system and disabling the justified alignment was a solution to alleviate the less-than-desired words spacing.


    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 link fields support any kind of links acceptable to the browsers:
    https://html.com/anchors-links/#Internal_and_External_Links


    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

    Both extra text areas are made up of individual elements – a title and a text.
    The following CSS targets the second set:

    #front-text2, #front-text4 {
        background-color: ...;
    }

    Note that the two elements do not span the full width and this will be visible when changing the background color, as their container has a margin.


    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: Serious Slider WordPress default home page #104615
    Zed
    Cryout Creations mastermind

    When placed in the content, the slider is limited to the content’s width limit (as it cannot overflow it).

    In Roseta Plus you can use the full width page template to create site sections that are not bound to the content limits – but you’ll need to write your own custom styling to control that page’s layout, or rely on a page builder 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.
Viewing 30 posts - 901 through 930 (of 6,634 total)