Search Results for 'ie'

  • Author
    Search Results
  • #60408

    Hi, sorry for my lack of skills in this field, I’m just a writer.

    I have noticed about the titles of my posts are H2. In order to have better results in SEO I need to have the Title post H1 by default. I have more than a thousand entries.

    Please, give me a hand in a very easy language please?

    Thanks a lot,

    Marcelo

    Website: www.natura-medioambiental.com

    #60349
    This reply is private.
    #60348
    This reply is private.
    #60317
    Zed
    Cryout Creations mastermind

    For best visual results, the menu items need to fit in the available space on the target screen sizes (and before the mobile menu is activated). If the menu items are too many for the screen, they will overflow and extend beyond one row.

    Due to the complexity of the header there’s no magic fix for this yet. The solutions are to either limit the number of items to make the menu fit in one line (at least on the target screen size and larger) or activate the mobile menu earlier – when the menu no longer fits (using custom styling).


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

    For best visual results, the menu items need to fit in the available space on the target screen sizes (and before the mobile menu is activated). If the menu items are too many for the screen, they will overflowand extend beyond one row.

    Due to the complexity of the header there’s no magic solution for this yet. The solutions are to either limit the number of items to make the menu fit in one line (at least on the target screen size and larger) or activate the mobile menu earlier – when the menu no longer fits (using custom styling).


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

    Use a custom menu, add a custom menu item to it and leave the URL field empty for that menu item.


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

    @ncesareo, that seems to be caused by some styling change in a recent WooCommerce update which combines with the theme’s styling applied on inputs in a bad way.

    Use this CSS to reduce the padding on the quantity input:

    .woocommerce .quantity .qty {
        padding: .7em .4em;
    }

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

    In reply to: Mobile responsiveness

    Zed
    Cryout Creations mastermind

    @simons, you’re adding inline styling to the images, making them float left (so the text wraps around). This applies to all devices.

    You have to disable the floating for mobile devices for the images/text to be better aligned on small screens, for example:

    @media (max-width: 640px) {
       #pp-afterslider .ppbox img {
           float: none !important;
           margin: 0 auto;
           padding: 0 !important;
           display: block;
       }
    }


    @Mezzent
    , same CSS can work for you as well.


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

    In reply to: Hiding Table Borders

    Zed
    Cryout Creations mastermind

    The layout of the theme is not achieved with tables. The borders you are seeing around the content and sidebars are not table borders (so that option has no effect on them).

    Those borders and their color is controlled by the theme’s third accent color option (together with other theme elements).


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

    I tried fix it but still couldn’t fix this issue

    #60119

    Thank you… but I found that those images only displayed when the theme was previewed. After publishing, they disappeared, so the issue is resolved. Thanks again.

    #60041

    Hi – currently the site is using ‘old style’ enqueueing of the parent theme but I did try with the newer style too. I’m pretty sure I tried with no child theme as well. I’ll have to give the update another try at a quiet hour. There are no modified theme files in the child theme, just a few add_action & add_filter hooks.

    Old style is:
    <?php
    add_action( ‘wp_enqueue_scripts’, ‘theme_enqueue_styles’ );
    function theme_enqueue_styles() {
    wp_enqueue_style( ‘parent-style’, get_template_directory_uri() . ‘/style.css’ );
    }

    New style tried is:
    <?php
    // enqueue parent theme styling
    function child_parent_styling(){
    wp_enqueue_style( ‘mantra-style’, get_template_directory_uri() . ‘/style.css’, NULL, _CRYOUT_THEME_VERSION ); // main
    style.css
    if (is_rtl()) wp_enqueue_style( ‘mantra-rtl’, get_template_directory_uri() . ‘/resources/css/rtl.css’, NULL, _CRYOUT_T
    HEME_VERSION ); // rtl style.css
    wp_enqueue_style( ‘mantra-child’, get_stylesheet_directory_uri() . ‘/style.css’ ); // child style.css
    }
    add_action(‘wp_enqueue_scripts’,’child_parent_styling’);

    • This reply was modified 8 years ago by Rufus.

    No errors logged after accessing those pages. Also, no errors logged at the time of the theme upgrade.

    No impact after changing POST EXCERPTS ON ARCHIVE AND CATEGORY PAGES to Full Post.

    These actually aren’t “Category” pages. On the Menu page’s Screen Options, I selected Events and Event Categories in addition to the usual Pages, Posts, Categories, etc. These are dynamic Events and Events Categories pages.

    #60011

    Thanks for the quick answer!
    Unfortunately I cannot figure out what colors to change to achieve this – I tried already quite a few combinations, nothing seems to work. Either I get a grey or a white background, but not white boxes around the post. There are also only color settings for the text and columns area on the presentation page but not for the post section…

    #59992
    Zed
    Cryout Creations mastermind

    1. WordPress displays a specific number of posts on the homepage – by default 10 (this number is configurable in WordPress’ Reading settings).
    2. The height of the post blocks depends on the actual post content/excerpt (which would need to match in height).
    3. The theme does not (and cannot, per the guidelines) provide such functionality. You’ll most likely need to look for a plugin to do this.
    4. The theme is already optimized for this. However, repository themes are not allowed to include direct SEO functionality – you’ll need to use a plugin for this job as well.
    5. The customizer preview does not switch between device layouts, it just emulates how your site would fit on a certain screen size.
    The theme features multiple widget areas in its sidebar, some of which are always displayed before the content, some after the content and some not at all on mobile devices. Place your widgets as 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.
    #59980
    Zed
    Cryout Creations mastermind

    That sounds like Jetpack’s mobile theme feature being enabled on your site and replacing the active theme when viewed on mobile 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.

    Funny, I had tried clearing my cache and even disabled the WP Supercache plugin on the site, but the menu still didn’t show up. I tried clearing my cache again a bit ago, and still nothing. Then I came back later after having restarted the browser, and the menu is there now. Go figure. I wouldn’t have wasted anyone’s time with this if clearing the cache had worked the first time. I put my URL in the box in case someone else might want to take a look in IE and confirm or negate what I’m seeing, though now it appears moot. As someone who is blind, the question always remains as to whether it’s my assistive tech failing me somehow.

    By the way, For blind folks, the biggest worry about making a website is making sure it looks good. The Nirvana theme completely nullifies that worry. My wife, who is sighted, finds the look of this theme impressive, and she has a discerning eye.

    Website: theblindkind.com

    #59976
    Zed
    Cryout Creations mastermind

    I assume you manually copied the header socials HTML markup to your widget, as the header socials are not displayed in that location.

    Try this CSS:

    #header-widget-area #sheader {
        float: none;
        margin: 0 auto;
        display: table;
        position: static;
    }

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

    The presentation page’s sections have unique identifiers (which you can see with the browser’s inspection/development tools) that can be used in custom menu items.
    For example, to link to the second text area you can use #pp-textmiddle in the URL field.


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

    One could ask the reverse as well: is Elementor compatible with Parabola?

    Two extensions need to be aware of each other to work together correctly if they modify each other’s functionality. Since the theme does not modify any of the plugin’s functionality, it is the plugin that needs to be compatible with the theme, or be configurable and be able to have its processes adjusted to work in most cases.

    There are thousands of themes and hundreds of content-related plugins (including page-builders) in the .org repository alone. It’s impossible for all of them to be aware of each other or compatible out-of-the-box.

    If the plugin asks for element identifiers to properly perform its functions, then those identifiers should be set. Even then, due to the multiple ways a theme can work and behave in, compatibility still cannot be guaranteed.


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

    The site’s general layout applies to the entire site, except individual (static) pages which are set to use a different layout page template.

    Individual posts cannot be set to use a layout different from the general one.


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

    When I look at the generated source for the site it looks like that the code for the slider is generated and I can not find references to the search box.

    But the page looks like this:

    This is how the page is displayed.

    And the same is happening to the Instagram widget. I can find correct references to the Instagram images, but they do not show up.

    Trond

    Website: www.gulden.org/james

    #59858

    Zed, thank you very much for this helpful reply. I have been going through the Fluida documentation, and really studying the Fluida theme itself, to make this web site right for my client. I really appreciate your time. Eric

    #59815

    Help,

    I’m trying to add amazon to my custom widget right sidebar, and it doesnt show when live, but when i go to customize it… Its there. What causes this??

    Website: www.smartjointpainrelief.com

    #59771

    Hello J.R,

    I just tried the solution posted by Zed, by modifying the function anima_ipblocks() in the
    /includes/landing-page.php file from

    if (function_exists('pll_get_post')) {
    	$page = get_post($pageid);
    }

    to

    if (function_exists('pll_get_post')) {
        $page = get_post(pll_get_post($pageid, get_locale()));
        $pageid = pll_get_post($pageid, get_locale());
    } else {
        $page = get_post($pageid);
    }

    Regards.

    #59729

    Yes, page layout is set to two-column with a header in Nirvana, and all pages except the home page do appear that way.

    In addition, I just now tried explicitly setting the template in WP Page Attributes to “Two Columns, Sidebar on Right”.

    Same result.

    Website: www.ideatreelive.com/music

    • This reply was modified 8 years ago by ronman.
    • This reply was modified 8 years ago by ronman.
    #59717

    Thank you very much! The CSS worked! I tried the options under the lay-out section, but I didn’t want all the content padded (the colored rows and the top images) so that didn’t work. But this CSS does. Thanks again for your help!

    #59704

    In reply to: Add opt-in pop up code

    Zed
    Cryout Creations mastermind

    That is a shortcode, which can be added either inside post/page content, inside a widget (which processes shortcodes) or inside the theme’s text fields (which also process shortcodes).


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

    Please see this post:
    https://www.cryoutcreations.eu/forums/t/multi-language-front-page/?view=all#post-54385


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

    The landing page sections all have unique identifiers which can be used in links to make the browsers skip/scroll to them:

    • #lp-blocks1
    • #lp-text-one
    • #lp-boxes-1
    • #lp-text-two
    • #lp-boxes-2
    • #lp-text-three
    • #lp-posts / #lp-page
    • #lp-text-four

    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 - 961 through 990 (of 3,166 total)