Zed

Forum Replies Created

Viewing 30 posts - 2,821 through 2,850 (of 6,635 total)
  • Author
    Posts
  • in reply to: How to center third-party widget in sidebar? #55128
    Zed
    Cryout Creations mastermind

    The indicated URL does not currently have any sidebar or content.


    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: Add text over the featured image with a CTA #55127
    Zed
    Cryout Creations mastermind

    You could use the theme’s header widget area to place a custom widget with the desired content (HTML) over the header image.


    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: Remove the menu under the featured image with the home icon #55126
    Zed
    Cryout Creations mastermind

    That’s the breadcrumbs and is configurable from the theme’s Graphics 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: Change header overlay color and opacity on individual pages #55125
    Zed
    Cryout Creations mastermind

    You could do that by using custom CSS targeted for each distinct page:

    .page-id-XYZ #header-image-main::before {
        background-color: red; /* or transparent */
    }

    The opacity is more difficult to adjust individually.


    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: Feature Boxes – Content #55124
    Zed
    Cryout Creations mastermind

    Featured boxes are designed to retrieve their content from posts (and link back 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.
    in reply to: Remove icons #55123
    Zed
    Cryout Creations mastermind

    The icons are present to indicate the post formats used (in your case image posts). There is no built-in option to disable theme, but they can hidden using CSS:

    .entry-format {
        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.
    in reply to: Cropped Images in Excerpts Not same height? #55122
    Zed
    Cryout Creations mastermind

    The theme registers the needed images sizes. This will make WordPress generate the necessary crops and resizes when the image files are uploaded into the media library. However if your files were uploaded before the theme was activated you need to regenerate 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: Center the Button in a Post excerpt #55121
    Zed
    Cryout Creations mastermind

    That can only be done with custom CSS:

    footer.post-continue-container a.continue-reading-link {
        display: inline-block;
        float: none;
    }
    footer.post-continue-container {
        text-align: center;
        width: 100%;
    }

    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: landing page (Fluida) #55120
    Zed
    Cryout Creations mastermind

    The text areas (and other landing page elements) have unique IDs: lp-text-one, lp-text-two, lp-text-three, lp-text-four.

    You can for example use #lp-text-two as a link URL to make an in-page link to that section. For links from other pages include the ID in the full page URL: http://domain.com/#lp-text-two


    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: Contact Form 7 Breaks Formatting #55118
    Zed
    Cryout Creations mastermind

    You have custom styling that is breaking the theme’s content/sidebar layout:


    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 add more text fields on the front page #55117
    Zed
    Cryout Creations mastermind

    That is not easily doable as it requires extensive changes to both the administration page and the frontend of 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.
    in reply to: Social Icons won't display. #55116
    Zed
    Cryout Creations mastermind

    You have quite a few active plugins. As the theme options are set correctly, my assumption is still that one of the plugins is interfering in some way.

    There’s also caching involved – did you also clear the cache when you tested with the plugins disabled? Did you disable all the plugins at once or sequentially?


    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: Selection box Archive widget #55115
    Zed
    Cryout Creations mastermind

    @Umweltzentrum: the color options probably need adjusting. Which page/section are you getting white text on white background?


    @joel3817
    : The presentation page columns are not designed to display post dates. The posts list below normally displays posts in their regular appearance (with dates includes).


    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 "continue reading" box from category pages? #55114
    Zed
    Cryout Creations mastermind

    There is no option to disable the ‘read more’ button, but you can hide it with CSS:

    p.continue-reading-button {
        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.
    in reply to: Presentation Page posts aligned to the left #55113
    Zed
    Cryout Creations mastermind

    The styles/scripts appear to be loaded in the wrong order on your site. Are you using some kind of caching / minification plugin? If yes, look for an option to turn off CSS minification as this can create problems with Mantra’s appearance.


    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: Missing Line in Windows 7 #54974
    Zed
    Cryout Creations mastermind

    It actually depends on screen size (when some responsive styling becomes active).
    This CSS will make the black area remain visible on all screen sizes:

    body #forbottom {
        padding-top: 20px;
    }

    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: about excerpts customization #54869
    Zed
    Cryout Creations mastermind

    Post formats are generally intended for specific kinds of content that aren’t normally “excerptable” (since they’re already short) – for example: image, status, link – so these are always displayed in full.

    Normal posts are displayed according to the option set 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.
    in reply to: Featured Image for category-archive pages? #54868
    Zed
    Cryout Creations mastermind

    Since such functionality does not exist by default, it really depends on how those plugins achieve displaying the category’s featured image.
    Don’t they come with some kind of instructions for what modifications are 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.
    in reply to: Updating the Anima theme #54867
    Zed
    Cryout Creations mastermind

    Theme options (those set in the customizer panels, including the Additional CSS field) are kept between updates.

    You only need to be careful if you’ve manually performed files modifications as these would be lost.


    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: Few strings need to add for traslation #54866
    Zed
    Cryout Creations mastermind

    Thanks for pointing out the problematic first set of strings. These will be fixed in the next theme update.

    The second set is already translatable, but since they are part of the framework and use our second textdomain their translations are only read the files are placed in WordPress’ system folder (wp-content/languages/anima-LANG.po), not in the theme’s 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.
    in reply to: Custom Content Areas for Pages #54865
    Zed
    Cryout Creations mastermind

    The theme has no built-in shortcodes because such functionality is not allowed in WordPress.org repository themes.

    Any plugin that respects WordPress standards and best practices should work with 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.
    in reply to: Featured Icon Blocks – add icons #54864
    Zed
    Cryout Creations mastermind

    The icon blocks use the theme’s built-in icon font for the glyphs. If you want to use different icons, you’d need to integrate your own icon font on the site and apply the necessary styling to choose the correct characters as the icons.

    Drop-in replacing the bundled icons is not easy to accomplish (as their exact list and characters are integrated in the code of the theme) and replacing them with images is not simple.


    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: Add link to "Icon Blocks" titles #54858
    Zed
    Cryout Creations mastermind

    That functionality does not currently exist in the theme (only the icons can become links) but we’ll take it under consideration.


    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: Help with Padding? Maybe? #54857
    Zed
    Cryout Creations mastermind

    @FreeingTomorrow, the styling I gave applies to Septera.
    What are you trying to customize in Nirvana?


    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: Change the way search box shows the results #54856
    Zed
    Cryout Creations mastermind

    Depends on how you want to change it.
    Search results are displayed exactly in the same configuration as category and archive sections (and based on the current configuration of the theme 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: Featured Image not Showing in Post and No Logo #54855
    Zed
    Cryout Creations mastermind

    Featured images are displayed in posts lists, but are not displayed on single post pages. In this case the desired image (with the desired sizes) can be inserted directly in the post content. Additionally, featured images can be displayed in the header on single posts (the option for this is in the theme’s Featured Image panel).

    The logo needs to be activated from the theme’s Header options to be 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: Few improvements for translators #54854
    Zed
    Cryout Creations mastermind

    Thanks for pointing these out. We’ll get them fixed in the next theme 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.
    in reply to: Opacity of background images in the homepage #54853
    Zed
    Cryout Creations mastermind

    What styling did you try to use?
    identifier { opacity: value; } should work, you may just need to use the specific enough identifier to make the styling apply.

    You can add a cookie policy popup with 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: landing page (Fluida) #54852
    Zed
    Cryout Creations mastermind

    You can control the source content for all the landing page elements through the theme’s options. You can select what is visible or turn off specific areas which you don’t need.


    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: information of the date in the post #54851
    Zed
    Cryout Creations mastermind

    You can control the meta information displayed through the theme’s options (under the Post Information panel).


    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 - 2,821 through 2,850 (of 6,635 total)