Zed

Forum Replies Created

Viewing 30 posts - 6,451 through 6,480 (of 6,623 total)
  • Author
    Posts
  • in reply to: Large images in the posts and Thumbnails in Excerpts #4562
    Zed
    Cryout Creations mastermind

    Do you still have this issue after updating to 1.9.9.7?


    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: Adjust column size on presentation page #4561
    Zed
    Cryout Creations mastermind

    #front-columns > div { width: 200px !important; }

    Change the value to suit your needs.


    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: Text Question #4560
    Zed
    Cryout Creations mastermind

    Using your own fonts in a website requires “embedding” those fonts into the website…

    This and this should point you in the right direction. Then use this to create the font pack to embed.


    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: Images and header non-responsive #4559
    Zed
    Cryout Creations mastermind

    And it’s on the list of things to be further improved in the 1.9.9.8 / 2.0 (whichever comes first 🙂 )


    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 image in mobile site #4556
    Zed
    Cryout Creations mastermind

    The responsiveness didn’t turn out as we hoped it would, because of all the available options involving the header image / title / link / social icons…

    We’re still working on this and we’ll improve it in the next 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: Social Media Mail #4546
    Zed
    Cryout Creations mastermind

    Thank you for reporting this. We’ll fix it in the next 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: Can't use links in slider on mobile #4545
    Zed
    Cryout Creations mastermind

    I can’t see the issue on my tablet. Both the image and the links in the slider descriptions have the same target URL.


    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: Sidebar in new line when a comment was posted! #4423
    Zed
    Cryout Creations mastermind

    What are you using that function for? What are you trying to achieve?

    Did you try commenting that out to see if it is the cause of the 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: Problem with functions.php – urgent help needed! #4373
    Zed
    Cryout Creations mastermind

    Users > Your Profile, uncheck “Show Toolbar when viewing 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.
    in reply to: Override theme-functions.php #4372
    Zed
    Cryout Creations mastermind

    Some functions are automatically replaced if you use the same function name in the child theme, bust most core functions are a bit more difficult to override.

    You need to individually un-hook Mantra actions and hook your own modified child theme functions in their place.

    Example:


    // remove mantra functions action hooks
    function remove_mantra_functions() {
    remove_action('cryout_existing_hook', 'mantra_existing_function',[priority-if-set]);
    }
    add_action('init','remove_mantra_functions');
    // custom child function
    function child_theme_function_replacement() {
    ... }
    // add replacement child function
    add_action('cryout_existing_hook','child_theme_function-replacement',[same-priority-as-replaced-function-if-set]);


    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: Latest posts displayed on Presentation page? #4371
    Zed
    Cryout Creations mastermind

    You can currently only do that with the slider. The rest of the presentation page is defined via static 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: no Pics in the Slider #4370
    Zed
    Cryout Creations mastermind

    The slider uses the images set as “Feature image” for each post.

    If you’re inserting images inside the posts, you need to change them to “Feature image” to make the slider read the images correctly.


    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 Upload Failure #4369
    Zed
    Cryout Creations mastermind

    If you’re unable to load images successfully to WordPress (by using the Media Library), then this is not a theme issue.

    And personally I don’t have any good ideas as to what might cause this. Server misconfiguration? Slow hosting? Incorrect file/folder permissions?


    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: Sidebar in new line when a comment was posted! #4368
    Zed
    Cryout Creations mastermind

    Ponyhack, did you edit the theme files in any way?

    Manie, for twitter we use Publicize (part of JetPack).


    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: Menu not showing in mobile view #4366
    Zed
    Cryout Creations mastermind

    Firebug 😉


    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: HTML error #4365
    Zed
    Cryout Creations mastermind

    This is what I see with your HTML:

    There’s some kind of shortcode in there, [youtube]… Is this for WordPress?

    Make sure you paste your code in the Source view mode of the editor.


    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: turn off landing page after first visit #4364
    Zed
    Cryout Creations mastermind

    If you’re using the Pro version, we’ve published an update today which includes this option.
    If you’re using the free edition, an update will be released in the upcoming days.


    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 CSS Not Working #4314
    Zed
    Cryout Creations mastermind

    When a rule fails, try adding !important and see if that works.


    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: Menu not showing in mobile view #4313
    Zed
    Cryout Creations mastermind

    I see a lot of script errors on your website, which make the mobile navigation handler script fail.

    Debug your plugins to see which one causes 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.
    in reply to: Images in sidebars #4292
    Zed
    Cryout Creations mastermind

    There is no automation/advanced editor regarding the Custom Text widget. You have to type in the correct HTML code that displays the image yourself (after you upload it via Media or FTP).

    Or you can try this instead.


    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: tabs blocking header background #4262
    Zed
    Cryout Creations mastermind

    You need to manually set your header background image (via custom CSS) to #header, while at the same time setting the proper height to #header and #branding (so the image doesn’t get cropped by the browser)


    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: Promotion Slider Plugin (or sidebar on presentation page) #4261
    Zed
    Cryout Creations mastermind

    Could you give us a link to your website? (specifically to a slider page).

    Does the plugin work correctly with a default Twenty-something 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: text appearing in background on posts page #4258
    Zed
    Cryout Creations mastermind

    Check your All in one SEO plugin setttings, as that’s where you typed that text in.


    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: Reduce 'white space' at top of the page #4257
    Zed
    Cryout Creations mastermind

    Could you make a drawing of what you’re trying to make your website look like? 🙂

    I don’t really understand what/where/how it should look.


    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 link in menu #4256
    Zed
    Cryout Creations mastermind

    Does the same issue occur if you switch to any of the Twenty-something themes?

    As the menu is created/controlled by WordPress, this is not really theme 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.
    in reply to: centring the menu? #4183
    Zed
    Cryout Creations mastermind

    float: center is not a valid CSS value.

    See question C23 in the FAQs.


    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't get any post to Show. #4182
    Zed
    Cryout Creations mastermind

    If your site does not display posts on the homepage when the presentation page is disabled, you need to make sure the posts are published and are publicly visible.


    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: rounded corners in IE 8 etc #4181
    Zed
    Cryout Creations mastermind

    I see you’ve solved the footer background colour missing.

    At first PIE was enabled for all page content in IE8, but we soon found out it was causing more issues with content then it solved. So we removed it step by step from various areas where it would interfere with normal website behaviour, ending up with a limited (but controllable) scope on which PIE does not cause trouble.  We don’t plan on (re)extending 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.
    in reply to: rtl css ?? #4180
    Zed
    Cryout Creations mastermind

    You switch your WordPress to use a RTL localization.


    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: Want to remove slider from presentation page #4179
    Zed
    Cryout Creations mastermind

    All CSS rules need to end with ;

    So that would be .slider-wrapper {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.
Viewing 30 posts - 6,451 through 6,480 (of 6,623 total)