Zed

Forum Replies Created

Viewing 30 posts - 1,441 through 1,470 (of 6,629 total)
  • Author
    Posts
  • in reply to: Top Menu Color Changes & Title #84074
    Zed
    Cryout Creations mastermind

    The text displayed on top of the static slider image is configurable through the theme’s (static) slider caption options. Upon theme installation this text copies the value set on your site title and tagline, but is then administered separately.

    Which color options are you adjusting?

    The menu has different positioning options. On your site it is currently set to be displayed over the header image – perhaps you want to set it to ‘normal’ (to have it above 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.
    Zed
    Cryout Creations mastermind

    I mean that WordPress is capable of reading the code from specific files depending on what is browsed to render the content with. If WooCommerce extends this functionality it should also be able to read a specific file bearing a particular name (when it exists) to target a specific WooCommerce section.

    I see some information about the procedure and filename here:
    https://wordpress.stackexchange.com/questions/190335/woocommerce-change-template-for-single-product-page

    You’d need to merge code from both WooCommerce’s template and the theme’s files to ensure the correct markup as needed by the theme is present.

    Otherwise, the theme will use instruct WordPress to render all WooCommerce site sections using the general layout (except individual static pages which can have their own custom layouts).


    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: not working at IE #83561
    Zed
    Cryout Creations mastermind

    You may have JavaScript issues on the site. Try to disable caching to check if that has anything to do with the issue.

    Additionally, you can turn off the preloader from the theme’s miscellaneous 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: Getting rid of the author box #83560
    Zed
    Cryout Creations mastermind

    The author box is displayed when the author has anything entered in the biography field. Leaving that empty hides the box. Additionally, the box can be hidden with CSS:

    .single #author-info {
        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: Can you have 2 letters in title accented? #83559
    Zed
    Cryout Creations mastermind

    Try the following CSS:

    #site-title span a span:nth-child(1),
    #site-title span a span:nth-child(2), {
        background-color: #0085b2;
        color: #fff;
        width: 1.4em;
        margin-right: .1em;
        text-align: center;
        line-height: 1.4;
        font-weight: 300;
    }
    
    #site-title span a:hover span:nth-child(1),
    #site-title span a:hover span:nth-child(2) {
        background-color: #f45430;
    }

    If you change theme options which affect the title size or colors this styling will need adjusting as well (since it is based on the current 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

    Try this CSS:

    .widget-container ul li.lang-item {
        display: inline-block;
    }

    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 Drop Down Menu Colours #83556
    Zed
    Cryout Creations mastermind

    Try this custom styling:

    select option {
        background-color: #424040;
    }

    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: Esotera Forum soon? #83500
    Zed
    Cryout Creations mastermind

    There is a forum now 🙂

    The title animation is not (currently) configurable nor can it (easily) be disabled.

    The portfolio sections use Jetpack‘s Portfolio custom post type functionality.

    • This reply was modified 5 years ago by Zed.

    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: Translating the slider with Polylang #83489
    Zed
    Cryout Creations mastermind

    You can test that to see if the multi-language functionality works correctly with the 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.
    in reply to: Featured Pics not showing on homepage #83488
    Zed
    Cryout Creations mastermind

    The indicated site is not using Anima.


    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 quit working #83487
    Zed
    Cryout Creations mastermind

    Your site seems to work fine now (including the landing page) so I assume this was a caching issue (redirects are usually cache-related).


    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

    If WooCommerce extends the base template hierarchy, you should be able to create a dedicated template file for a single product with which to control the 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: H1 tag on Parabola "Presentation" Page #83479
    Zed
    Cryout Creations mastermind

    On the homepage the theme uses the H1 tag on the site title (since that’s the most important bit of text on the homepage). Since you are not using the site title, the tag is missing.

    I suggest trying to re-enable the site title on the site; you can then hide it on other site sections with CSS:

    body div#site-title {
       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: Can you have 2 letters in title accented? #83478
    Zed
    Cryout Creations mastermind

    The styling responsible for the accent is only designed for one letter, but it should be extendible to two (or even more).
    The customization depends on the current site configuration so a link would be 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: Included Open Sans font is missing spanish glyphs #83474
    Zed
    Cryout Creations mastermind

    Most of the bundled fonts include the latin-base characters set. If you need characters that are part of the extended sets I suggest using the integrated Google fonts functionality or loading and embedding your own fonts on the site.


    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

    Can you post a link to the site in question?


    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 grey line above the footer #83470
    Zed
    Cryout Creations mastermind

    Try:
    body #footer { border-top: 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: A sign ); has appeared in the upper left corner #83469
    Zed
    Cryout Creations mastermind

    The smiley face in the footer is usually added by Jetpack’s statistics functionality and its visibility should be configurable in Jetpack’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: Social Media Icons #83468
    Zed
    Cryout Creations mastermind

    Look under Appearance > Parabola Settings > Social Icons 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: Footer powered by and center #83467
    Zed
    Cryout Creations mastermind

    We provide instructions and a simple method of removing or customizing the footer credit link part of our priority support service.

    Otherwise you are able to edit the theme yourself in any way you want (according to the GPL licensing and the fact that you have direct access to all files and 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: UNCATEGORIZED #83466
    Zed
    Cryout Creations mastermind

    Double check that your posts are actually assigned to categories (categories may exist and be empty in WordPress).


    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 name #83465
    Zed
    Cryout Creations mastermind

    Make sure that you’re disabling the header site title and tagline (above the main navigation).
    If you’re looking to disable/change the site title and tagline displayed on top of the static slider image (below the main menu), that’s done through the theme’s 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

    Thanks for pointing this out, we’ll look into 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: Tagline covers content on mobile phone. #83463
    Zed
    Cryout Creations mastermind

    The ‘code’ depends on the actual site title and tagline lengths, so a link to your site would be needed.


    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 Caviar Dream font #83461
    Zed
    Cryout Creations mastermind

    If you need any other fonts beside what the theme and Google Fonts offer, you’ll have to do it yourself by editing files or using plugins. I strongly recommend the plugin method since it is simpler.


    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: Tag Line #78418
    Zed
    Cryout Creations mastermind

    The background color and the padding create a semi-transparent dark rectangle behind the text (to make it easier to read over the image).
    If you don’t like that, remove those two CSS lines.


    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: Homepage Nivo Slider and Lazyload issue #78414
    Zed
    Cryout Creations mastermind

    If you need to adjust the slider HTML markup, you can do that by editing the nirvana_ppslider_output() function (defined in frontpage.php).
    You can simply copy this file to your child theme and edit it there.


    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 Search Bar Length #78413
    Zed
    Cryout Creations mastermind

    Which search bar are you referring to? The site presents two search forms, on activated by the icon in the menu and one always visible in the right sidebar.
    Both of them are fully visible on all screen sizes (at least for my devices).


    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: Very Confused About Slider #78394
    Zed
    Cryout Creations mastermind

    There may be more than one level of caching one that site or the caching plugin used is not able to completely clear the cache on request.

    Changing dashboard options should have an immediate effect on the frontend (to change something). If that doesn’t happen, caching (of some sort) is the most likely culprit.


    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: UNCATEGORIZED #78393
    Zed
    Cryout Creations mastermind

    WordPress defaults to the ‘Uncategorized’ category when no other category is defined.


    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 - 1,441 through 1,470 (of 6,629 total)