Zed

Forum Replies Created

Viewing 30 posts - 4,171 through 4,200 (of 6,633 total)
  • Author
    Posts
  • in reply to: margin/padding between Menu and content. #38944
    Zed
    Cryout Creations mastermind

    Nirvana has no space between menu and slider. The content top margin applies to the rest of the site (between menu and actual 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: Excerpts not displaying on post category page? #38942
    Zed
    Cryout Creations mastermind

    The category description is displayed on category sections.
    The ‘category page with intro’ template is a (static) page template, used on (static) pages – to display a long (HTML) intro before the posts. This intro is defined as the content of the (static) page using the template.

    Is the posts display set to Full Posts or Excerpts in the theme’s 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: How to remove "Read More" link? #38941
    Zed
    Cryout Creations mastermind

    On posts? Change the theme settings from Excerpts to Full posts.
    On slider/columns? Leave the link fields empty in the 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.php #38940
    Zed
    Cryout Creations mastermind

    How did you manage to delete a line of code while editing the header image (which is done with dashboard options)?
    The header image is not even present in any file (it is outputted by WordPress on page render).


    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/not reachable link in columns text #38939
    Zed
    Cryout Creations mastermind

    We’ll try to add filters for harcoded values so they’re easier to customize in the future.


    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: Nirvana CSS in File #38938
    Zed
    Cryout Creations mastermind

    You can copy-paste it to a CSS file (which you enqueue – perhaps in a child theme), but then any changes you do in the settings in the future will be overlapped by the ones saved in the file now.

    Plugins should load their style correctly, when they don’t they are poorly written.


    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 Identity #38937
    Zed
    Cryout Creations mastermind

    Use the theme’s options to hide the title and tagline, by setting the Site Header option to Clickable header image (in the Header settings section of the theme’s settings page).


    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: Dropdown Arrows are Squares #38936
    Zed
    Cryout Creations mastermind

    Missing icons usually means you’re either using a caching plugin that’s messing up the styles or you are accessing the site using a wrong URL, hitting the CORS limitation.


    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: Adding comment pagination #38935
    Zed
    Cryout Creations mastermind

    That is in the includes/theme-comments.php file.


    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: Initial Appearance #38934
    Zed
    Cryout Creations mastermind

    You’re seeing the theme’s default Blog look (which WordPress TRT requires that we leave the default).
    Enable the theme’s presentation page from its settings (Appearance > Tempera Settings). You’ll need to also install the settings plugin to enable the settings page.


    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: Facebook Developer Code not displayed in presentation page #38933
    Zed
    Cryout Creations mastermind

    Those fields pass through WordPress’ sanitization functionality, so some data that is considered less than safe will be filtered out. Scripts almost always removed, but that bit of code appears to be plain HTML, and should mostly pass.


    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: Fonts with Cyrillic support don't work #38932
    Zed
    Cryout Creations mastermind

    For Cyrillic, the identifier would be
    Open+Sans&subset=cyrillic,cyrillic-ext


    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: Issue with Parabola version 2.0 #38931
    Zed
    Cryout Creations mastermind

    Previous Parabola versions used a lot of fixed font sizes for various areas – we’ve tried to improve their customization by making them relative to the configured general font size. If fonts are too large after the update, try lowering the general font size.

    Menu items size can be reduced with custom styling:
    #access a span { padding: 3px 8px; }

    Previous theme version can be found either in WordPress’ repository (you’ll need to guess the links or browse the old tickets) or in our archive.


    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

    Thank you for pointing that out – we’ve fixed it in 2.0.1.


    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: Misleading help text in the Color Settings #38929
    Zed
    Cryout Creations mastermind

    Thanks for pointing that out. We’ve rephrased the hint in 2.0.1.


    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: Removing the horizontal line between table rows. #38928
    Zed
    Cryout Creations mastermind

    .entry-content tr td { border: 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.
    in reply to: Strange submenu artifact. #38927
    Zed
    Cryout Creations mastermind

    That’s due to theme styling not getting along with custom styling you used to add background and border on menu elements.
    #access ul ul a, #access ul ul ul a { width: auto; }
    should solve 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.
    in reply to: How do I add a background image to a PAGE? #38926
    Zed
    Cryout Creations mastermind

    You can do that with custom styling:
    body.page-id-XY #main { background: url(...) ...; }
    Each page/post has a unique ID number.


    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 center main menu in Fluida #38810
    Zed
    Cryout Creations mastermind

    Sorry, pmdelgado1, I meant to say there is no float: center in CSS above.


    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 size and exceprt #38715
    Zed
    Cryout Creations mastermind

    Try disabling Jetpack’s Photon to rule out interference from 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.
    in reply to: How to center main menu in Fluida #38712
    Zed
    Cryout Creations mastermind

    There is no float: left center value in CSS – https://developer.mozilla.org/en-US/docs/Web/CSS/float#Values
    At most you could use

    body #access {
        display: table;
        float: none;
        margin: 0 auto;
    }

    but this may cause issues with responsiveness.

    • This reply was modified 9 years ago by Zed. Reason: Fixed a typo that ruined the whole meaning

    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: Repositioning of Right Sidebar Above Content After Resize #38711
    Zed
    Cryout Creations mastermind

    That is not easily doable, as the sidebars elements are after the main content in the page source.


    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: "Read More Button" is not styled #38710
    Zed
    Cryout Creations mastermind

    The light grey colour is integrated in the theme (so the button is slightly darker than the content background).
    It can be customized with CSS:
    body a.continue-reading-link { background: #aabbcc; }


    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: Affiliate content won't load in Fluida – defer code? #38709
    Zed
    Cryout Creations mastermind

    We’re always open to suggestions on improving things.


    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: Bottom widget doesn't align in rows and columns #38708
    Zed
    Cryout Creations mastermind

    Does the 0.9.8 update solve this issue?


    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: Breadcrumb navigation #38706
    Zed
    Cryout Creations mastermind

    I cannot replicate this issue with date archives:
    http://demos.cryoutcreations.eu/wordpress/fluida/2016/02/

    Are you using any plugin that might modify something on links / breadcrumbs?


    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: Tagline does not display #38705
    Zed
    Cryout Creations mastermind

    The tagline is not currently displayed on the site (it is used only as a hover hint on the site title). We’ll modify the option label so it no longer causes confusion.


    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: URGENT: Remove the Head Menu for just 1 single page #38704
    Zed
    Cryout Creations mastermind

    That is easily possible, but the custom styling needed depends on the page you want this on (as the page has a unique ID that has to be used in the style).

    What site do you want to do 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.
    in reply to: Stagger posts per row #38703
    Zed
    Cryout Creations mastermind

    That is not currently possible, but we do intend to integrate Masonry into Nirvana so the posts will get nicely aligned on the magazine 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: Font changes in Slider #38702
    Zed
    Cryout Creations mastermind

    You can do all that with custom styling:

    body .nivo-caption h2, body .nivo-caption .slide-text { float: left; clear: both; } /* move texts to left side */
    body .nivo-caption .slide-text .inline-slide-text {
        background: transparent; box-shadow: none; } /* to remove the caption background */
    body .nivo-caption h2 { font-family: X; font-size: Y; } /* to customize the caption title font */
    body .nivo-caption .slider-text-separator { display: none; } /* hide the underline */ 

    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 - 4,171 through 4,200 (of 6,633 total)