Search Results for 'ie'

  • Author
    Search Results
  • #69467
    Zed
    Cryout Creations mastermind

    The site title is normally displayed at the top left side of the header. If you’re referring to the text visible lower on the landing page (over the static slider image), that’s the static slider caption, which on first theme activation copies the site title and tagline.


    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 theme rearranges it structure depending on screen size it is viewed on. On some devices / screen layout, the posts will use up the full screen width. Depending on the configured posts images height, their images may fill up the entire screen (both width and height).

    How are you looking to reduce/limit the post images? In what 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.
    #69455
    Zed
    Cryout Creations mastermind

    To use rgba() color values you’ll need to write and use custom styling.

    The theme uses WordPress’ core color selector which only supports RGB colors, without opacity. The color fields also get sanitized on save/display so you’ll end up with invalid #rgba(…) values.


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

    We have expanded the social icons list in the version 3 release and these icon images look differently (lighter, smaller and uniform).

    If you are not satisfied with the new look, you can choose to revert to an older theme release using the WP Rollback plugin or customize the social icon images 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.
    #69201
    Zed
    Cryout Creations mastermind

    @dihooper, you have the entire parent theme styling in the child theme’s style.css file. Since the order the styles are loaded in is parent, options-generated, child (it has always been this way), this results in the old (now outdated) styling overwriting the correct one. You need to clean up your child theme style.css file to contain only the customized CSS.

    The 1.5 release does include small changes to font sizes (some to the defaults, so they don’t apply to an already configured site, some to the actual values applied), spaces/paddings and general looks. Such changes are obviously visible after the update. You can use the theme’s typography options to slightly adjust the values.


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

    Hi Zed, With the update my font size went small and some formatting changed – dot points in About slant to right.
    I tried adding suggested text to Nirvana Child Theme: Theme Functions (functions.php) but it made the site worse, I lost my fonts, and it made no difference to font sizes, or formatting

    #68997
    PierreRaby
    Power User

    Are RGB codes now accepted in the color settings of the parabola settings or must it be done in the additional CSS.

    I am working on two versions of the same site. One in french and one in the other. The french version has an RGB code in the the background color of the main menu, it is #rgba(24, 24, 24, 0.15). The shading i am looking for appears in the main menu. I tried the same code in the english version of the site and it does not work. Not sure what to check anymore

    The example to look at is in french: http://testing2.clanraby.ca/episode-1/ and English is at http://testing3.clanraby.ca/episode-1/

    Any suggestions anyone ???

    #68939
    Zed
    Cryout Creations mastermind

    As I have mentioned in my email answer, the theme supports the suggested Google fonts from the bundled fonts list or all other Google fonts through the use of the custom font identifier field. The selected fonts will then be used on the appropriate elements.
    Using any other Google fonts (via custom styling or otherwise), will require that you embed those fonts to the site yourself (manually or through a 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.
    #68923

    In reply to: Custom CSS no effect?

    Zed
    Cryout Creations mastermind

    You can reduce the spacing with:

    body .slider-wrapper {
        padding-bottom: 0;
    }

    For the second question, I believe you’ve found some incorrect styling in Mantra. To correct it until the next update, add the following CSS:

    @media (min-width: 641px) {
    .home #content article.post {
        width: 49%;
        margin-right: 2%;
    }
    .home #content article.post:nth-child(2n) {
        margin-right: 0;
    } }

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

    I tried to fix the problem (=get rid of Times Roman) on mobile by using media queries for headlines:
    font-family:-apple-system, BlinkMacSystemFont,
    “Segoe UI”, “Roboto”, “Oxygen”,
    “Ubuntu”, “Cantarell”, “Fira Sans”,
    “Droid Sans”, “Helvetica Neue”, sans-serif;

    Maybe there is a better way to solve the problem?

    Website: marjutus.media

    #68531
    Zed
    Cryout Creations mastermind

    What happens when you submit the form on the site?
    You’re saying the form works with the default theme but doesn’t with Anima.

    Did you do this test with the exact same form displayed in the same location from the same device at about the same time? Since that particular plugin sends the form data via email, even a small change in the email headers (like browser signature or client IP) can trigger a change in how the message is handled at the destination.


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

    In reply to: Menu and Header

    Zed
    Cryout Creations mastermind

    1) The shadow is there to highlight the fixed menu. You can disable it with CSS:
    body #masthead #site-header-main { box-shadow: none; }

    2) The logo and the menu are designed to be on the same row

    3) The menu content needs to fit in the available space on the target screen sizes, before the mobile menu activates (or the mobile menu needs to be customized to activate earlier – at the point the used menu no longer fits).

    4) The slide images are 1920×700; slider is set to 1920×800 (the height difference has no consequence if the images are shorter); site width is at the default 1920px.


    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 switching the theme’s comment field option to labels.


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

    Changing the images for mobile devices is tricky to do; hiding the entire columns area is doable with a simple block of CSS:

    @media (max-width: 800px) { /* you may want to adjust the devices screen width that the hiding applies to */
       #front-columns {
           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.
    #68505

    In reply to: Changing header link

    Zed
    Cryout Creations mastermind

    The link applied to the header image is generated by WordPress through its home_url() function.
    To change the link you’d need to filter that function (for the entire site) or customize the theme’s tempera_title_and_description() function.


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

    Looks like Gutenberg applies some styling which doesn’t play nice with the theme’s own styling.
    Try adding this custom CSS to correct that:

    #content .aligncenter, #content img.aligncenter, 
    #content .alignleft, #content img.alignleft, 
    #content .alignright, #content img.alignright {
        display: table;
    }

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

    Single Plus theme purchases and Developer Club Membership have a 1 year licensing period. Once this term has passed/expired you will need to make a new purchase to continue receiving updates and support.

    The purchased product(s) will continue to work regardless of the status of the license. Using our themes is not conditioned in any way to having an active subscription, however we no longer provide support, security and feature updates after the license expires.

    Due to the continuously evolving state of digital goods and services, we choose not to label any of our services unlimited.
    I personally believe that lifetime licenses are misleading at best. No developer can and will provide maintenance and updates forever. At most they do so for the lifetime of the product, which is usually no more than several years.

    Concerning the error you are encountering, please create a support ticket with more details on the steps that lead to this.


    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.
    #68316
    iaind
    Power User

    So I went ahead and bought Anima Plus anyway.

    I’ve just tried to put my license number in and I’m getting an “options page not found” error.

    #67993

    Well, indeed it “makes the overlay color more obvious” to the extent that it obliterates the original underlying image colors!

    The slider increments the opacity by 5% at a time, and even on the first 5% there is no image colors only the greyscale!

    I find it hard to imagine this was the original intent for the overlay. As of 1.3.1 with the use of the overlay the only image color is that of the overlay, whereas in the prior version the overlay functioned as a color tint to the underlying image with greater intensity as the opacity increased.

    In my humble view to introduce a greyscale filter which is not optional was a poor decision. It seems to me that if the “greyscale filter” was optional, as I believe it should be, then both the current and prior behaviors for the overlay could be accommodated.

    So I’d be obliged if this could be a future consideration. I’ve not dug into the code at this point and have no idea as to the degree of difficulty this might pose, but it would be nice if you could let us know if this is a possibility…

    #67985
    Zed
    Cryout Creations mastermind

    Comment form content can only be controlled by overriding the entire content using WordPress’ filters (this is how the plugins do it too).

    The plugin not working is most likely due to the order filters are applied. Switch the theme’s Comment Field option to labels and the plugin should start having effect.


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

    Since version 1.3.1 the greyscale filter is applied on the header (and static slider image) when an overlay color is used. This makes the overlay color more obvious (even at low overlay opacity values)


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

    Since version 1.3.1 the greyscale filter is applied on the header (and static slider image) when an overlay color is used. This makes the overlay color more obvious (even at low overlay opacity values)


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

    There is currently limited support for multi-language categories in the featured boxes with Polylang. We are looking to find the best way to extend this support.


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

    WooCommerce applies some styling that affects the header image width. Use this custom CSS to correct that:

    #bg_image {
       max-width: 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.
    #67916

    In reply to: Custom CSS no effect?

    Thanks for the feedback!

    I tried it, but it seems, that it still doesn’t has any affect.

    e.g. the headline “≡ eXacthair Special | SummerCurls” on site http://web.exacthair.at/?p=2014 should be bold with CSS…

    body .entry-title h1 {
    font-weight: bold;
    }

    … but it is still normal.

    Maybe you can support me? Thanks!

    Website: web.exacthair.at/?p=2014

    #67841

    I have encountered the same issue on homepage after updating Fluida.

    My site is in bilingual and holds 3 languages with Polylang. I have created a set categories contain 3 languages (gallery, zh-gallery, cn-gallery). Within each category, it contain 2 posts with same content but different languages.

    You know, for the Featured Boxes on landing page, it only can choose one category in 1 area, so I choose the “gallery” with 2 posts in English. Originally, when I changed to other language, Featured Boxes would automatically changed to “zh-gallery” with 2 same post in Traditional Chinese. It did the same in the third language.

    After updating, when I choose the “gallery” with 2 posts in English, it works well. But when I switch to Chinese, it displays all posts in Chinese version, instead of posts in “zh-gallery” category.

    Fluida does not allow me to select different category in Featured Boxes tab when I change the language. Any fix?

    Website: www.causewayeducation.com

    #67835
    Zed
    Cryout Creations mastermind

    Our themes will be impacted by Gutenberg as much as any other theme in the repository.

    Normally, the themes are simply responsible for displaying the content as WordPress itself delivers it (this is true at least for the repository themes which are not allowed to include any kind of plugin-like functionality).

    Gutenberg will replace/take over the editing part of the content, and anything that Gutenberg will have to apply/filter on that content will happen before the theme gets to display it.

    There’s also the Classic Editor plugin which you can use to delay the Gutenberg switch (which based on the reviews is not quite welcome at this time).


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

    I believe we have discussed this through our support service. Did you receive my two replies?


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

    You can see all theme changes since 1.4.1 here (a Diff viewer or Notepad++ will format the content better).

    The biggest change will not be the theme update, but the WordPress update (depending on the plugins you use and their compatibility status).

    I suggest making each update individually and checking if the site works after as before. And make sure you create a complete backup beforehand.


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

    I do not use Hotmail, but Hotmail might have cached a previous embed request.
    Try with a slightly different URL (appending something like ?test should be sufficient).


    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 - 811 through 840 (of 3,208 total)