Search Results for 'display'

  • Author
    Search Results
  • #121392
    Zed
    Cryout Creations mastermind

    Please apply the following custom CSS on the site:

    .wp-caption > a {
        display: inline-block;
    }

    We’ll also correct this in Tempera’s next update.


    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.

    I’m having similar problems. In my particular case, the issue with the column items on the presentation page are posts rather than widgets. The title of one post is displayed on two lines, except that the two lines are on top of each other. I glanced through the diffs and couldn’t figure out what change would have this effect, but, oddly, adding the following to style.css temporarily fixed the problem.

    .column-header-image {
      line-height: 1em;
    }
    

    Website: ericadutton.com

    #120722

    In reply to: Description in menus

    Zed
    Cryout Creations mastermind

    Hi,

    Our themes are not designed to display menu items descriptions out of the box. While this can technically be added, it would also require proper handling in the styling to keep the menu appearance functional.


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

    Hi,

    For anyone else wondering about this, the logo image is limited to the menu bar height. But this can be tweaked with CSS to have the logo image display at its original size and expand (overflow) out of the menu bar, if desired:

    body .identity {
        height: auto;
    }

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

    Hi,

    The theme’s landing page text areas are each capable of displaying different content by selecting a different source (static) page for each one through the options.
    If you’re seeing the same content everywhere then you may have selected the same page for all.


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

    Hi,

    The recent posts list is the default content displayed by WordPress on the homepage of any site, including with Fluida.


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

    Hi,

    That’s the result of the menu bar having a background color when the menu is not displayed over the header image (when this background would get removed).
    You can force-remove the background with CSS:

    .burgermenu-active #site-header-main,
    .burgermenu-active .site-header-bottom-fixed,
    .burgermenu-active .site-header-bottom.header-fixed .site-header-bottom-fixed {
        background: transparent;
    }
    .burgermenu-active .hamburger span {
        background-color: #fff;
    }

    We’ll look into whether this should be the default theme behaviour.


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

    In reply to: Can I add author box?

    Zed
    Cryout Creations mastermind

    Hi,

    WordPress’ built-in author box is automatically displayed when the author (user) has their biography filled in.


    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,

    When you set the landing page option to “Serious Slider” or “Banner”, did you also select a specific slider (you’ll need to create it first) or selected the banner image, respectively?

    To have a header image on the homepage, you’ll need to enable the header image globally on the entire site. If you turn this feature off for the homepage then that applies to the rest of the site as well. You can still set the landing page slider section to display a slider or the (separate) banner image on the homepage, though.

    If you do display a header image, individual pages and posts can use their own featured images in the header instead of the general image (if the corresponding option is enabled). The rest of the site section will use the general header image.

    The individual post/page meta options are only available in the theme’s Plus edition.


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

    Hi,

    You can configure what details are displayed in post lists using the theme’s blog metas 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.
    #119492
    Zed
    Cryout Creations mastermind

    Hi @AB2021,

    The ‘not found’ and search bar are there because your site has no content (posts) to display. Add content or set the homepage to display a static page instead to hide those.


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

    In reply to: Jetpack Portfolio

    Zed
    Cryout Creations mastermind

    Hi,

    The theme’s Jetpack portfolio functionality can be used by simply assigning the Portfolio page template to the (static) page you want to have the portfolio displayed on. If you have already published portfolio elements through the dashboard, they will automatically appear on that page.

    With or without using the page template, you can still use Jetpack’s portfolio shortcode in any post/page content (although with not quite the same layout and appearance as the dedicated template).


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

    In reply to: Distorted pictures

    Zed
    Cryout Creations mastermind

    The distortion comes from the configuration mismatch between the featured boxes sizes and your source images. Normally the theme resizes/crops the featured images to the configured values, but you most likely uploaded those images to the site before activating Bravada and the necessary resizes are not available, making WordPress uses the images at their original size (also note that images smaller than the necessary crop size are always skipped)

    The image sizes are all of varying sizes and aspect ratios, but they average at 0.92.
    The featured boxes are currently configured (based on their configured height and site width / boxes per row count) to need an image aspect ratio of 1.37. You can correct this two ways:
    1. Adjust the featured boxes height to about 430px to have the featured boxes display with the same aspect ratio as your currently used images, or
    2. Keep using the currently configured featured boxes height of 300px but adjust/edit your images to have a width of 413px.


    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.

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

    Hi,

    Apply the following CSS to the site to hide the navigation:

    body #nav-below {
        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.
    #118649

    In reply to: header image

    Zed
    Cryout Creations mastermind

    Hi,

    The image displayed in the theme by default on the landing page (homepage), below the menu, is not the configured header image but a banner image placeholder, which is configurable from the theme’s options under Landing Page > Slider.

    The sample image is not visible in the customizer panel. To replace it simply assign a different image. To remove the sample image assign any other image in its place and then remove it.


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

    Hi,

    Could you provide a link to the page displaying a gallery with captions?


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

    Hi,

    The theme supports WordPress’ built-in video header functionality for the homepage of the site.
    To use this you’ll need to switch the theme’s landing page slider section (if you use the landing page) to display the header image (and video) instead of the default banner image.

    Beside WordPress’ homepage header video feature, neither Bravada nor our companion Serious Slider plugin support videos slides. To add video sliders to your site you’ll need to look for and use a separate plugin that provides video slide(r)s 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.
    #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.
    #118634
    Zed
    Cryout Creations mastermind

    Hi,

    The theme’s presentation page (homepage) is made up of several individual sections each displaying different content and with different styling (and spacing) rules.

    I’ll need to know/see the exact things you want to customize.


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

    Hi,

    The breadcrumbs (the indicator of the section you’re currently on) is designed to be displayed on top of the header image and uses the color configured as the menu background color (together with several other elements).

    If you want to customize this element separately from the options, you can do so with CSS:

    #breadcrumbs-container span,
    #breadcrumbs-container a,
    #breadcrumbs-container i {
        color: ...;
    }

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

    Hi,

    Jetpack has options controlling which site sections its styles and scripts are loaded to – https://jetpack.com/support/sharing/
    When mixing content types like having portfolio post elements displayed on a (static) page, its filters (adding the buttons) may still apply while the styling remains disabled because the separate check detects a different section.


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

    Hello,
    I am not sure this is due to your theme. Seems more to be a feature of wordpress. But here it is. If I view the post as it’s displayed on the main page with “latest posts” it looks like this:
    Broken view
    and if I view the post/page directly and not when it’s view from the frontpage:
    proper view
    I have looked around in all places I can seem to think of, but can’t seem to find any setting that controls the view of the posts. Is there a way of controlling this?
    Thank you for taking the time to answer!

    #117512
    Zed
    Cryout Creations mastermind

    Are you sure you applied the CSS correctly?
    It should at least remove the 3 horizontal lines from the toggler if not also display “A to Z” in some mangled way.


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

    Hi,

    I’m not sure I understand what you’re referring to, and where the two places are, where the content is displayed differently in.
    Screenshots would also be helpful in exemplifying the matter.


    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,

    The file/code referenced in the first screenshot is not part of the theme. Are you using some context-menu related plugin (that is perhaps failing)?

    The second screenshot references superfluous tag parameters that are also not managed by the theme (scripts and styles enqueues and their markup is controlled by WordPress).

    Unfortunately, none of the screenshots have the <picture> tag open for me to check the presence or absence of the relevant image information. Are the src and failsafe <image> parameters present inside the picture tag? If they are, are the file URLs valid (do they display the expected image if you open them manually in the browser)?


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

    In reply to: Post date

    Zed
    Cryout Creations mastermind

    Hi,

    If you’re referring to hiding the post publish date on single post sections, that can only be done with CSS:

    .single-post .entry-meta .date {
        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.
Viewing 30 results - 91 through 120 (of 1,618 total)