Zed

Forum Replies Created

Viewing 30 posts - 6,361 through 6,390 (of 6,623 total)
  • Author
    Posts
  • in reply to: Replace Slider with Static Image? #5296
    Zed
    Cryout Creations mastermind

    I see you left the slider intact and you’re trying to use the map over the slider. This doesn’t work

    You need to remove (or comment out) the slider and replace it with the HTML for your image map.

    The slider starts with

    `if ($mantra_slideType != ‘Custom Slides’) { `

    and ends before

    `// Second FrontPage title`


    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: slider presentation page #5295
    Zed
    Cryout Creations mastermind

    You need to set “featured images” on the posts you want to use in the slider.


    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: default theme black #5290
    Zed
    Cryout Creations mastermind

    Steve, hi and thanks for pointing that out. The prices were not black, but a very dark gray that’s hard to read.

    I’ve fixed the theme and uploaded it on OpenCart.


    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: CR2 HTML Module #5289
    Zed
    Cryout Creations mastermind

    As long as whatever you’re inputting is HTML and it is properly added via the “Source” editor (not the rich editor), it should work.


    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: Question about premium upport #5279
    Zed
    Cryout Creations mastermind

    The premium support doesn’t have a limited time period or a fixed number of questions.

    We provide support for a ‘reasonable’ amount of questions. But the questions must be theme (or WordPress) related technical questions, not custom work.


    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 confusion in posts #5278
    Zed
    Cryout Creations mastermind

    Well… that’s some weird behaviour. Did you upload all the images at once with the same thumbnail size settings or did you change the settings between image uploads?

    It would be useful if you could provide us with login details to your site so we can investigate this further. Just use the premium support form and type in “feature image” in the transaction id 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.
    in reply to: Showing Video? #5266
    Zed
    Cryout Creations mastermind

    I personally use Jetpack’s shortcode support for major video hosting sites (youtube, vimeo… ).

    I neither used nor tested any plugins for embedding your own hosted video files in 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.
    in reply to: Replace Slider with Static Image? #5265
    Zed
    Cryout Creations mastermind

    You can only do that if you hardcode your HTML instead of the slider in the presentation page file – includes/theme-frontpage.php


    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 Leave a Reply #5264
    Zed
    Cryout Creations mastermind

    This tutorial applies to both pages and posts.


    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: Make header image into homepage link #5263
    Zed
    Cryout Creations mastermind

    Since 2.0 this option was merged with Site title&description on/off (plus the new logo) in Site Header under Header 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: Change font color sticky post #5262
    Zed
    Cryout Creations mastermind

    It’s done via custom CSS:

    `#content .sticky .entry-title a { color: white; }

    #content .sticky .entry-content, #content .sticky .entry-content p { color: white; }`

     


    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 blog title from post title #5261
    Zed
    Cryout Creations mastermind

    You’ll find the title in includes/theme-seo.php, which is not safe to modify without using a child theme.

    `function mantra_seo_title() {
    echo “<title>”.wp_title( ”, false, ‘right’ ).”</title>”;
    }`


    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: black background, white text #5260
    Zed
    Cryout Creations mastermind

    The white borders are easy

    `.column-image { border: none !important; }`

    there other two questions aren’t as easy without seeing your website.


    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: Faster site and mobile look of header not changed #5259
    Zed
    Cryout Creations mastermind

    I’d really need to see the site in question to provide any useful advice 🙂


    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 border from Presentation Page Column images #5258
    Zed
    Cryout Creations mastermind

    When all else fails, resort to !important 🙂
    `.column-image {border: none !important; }`


    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 a right and left border to the content area #5257
    Zed
    Cryout Creations mastermind

    Tricky business.
    You need to subtract the border width from the overall size of the content area (which is computed based on the settings you chose under Layout).
    In your case, #main has a width of 1100px, so this custom CSS should do the trick:
    `#main {
    border: 0px solid red;
    border-width: 0 2px 0 2px;
    width: 1096px !important; )`
    Change the border width and its colour to your desired values. Just remember to subtract the both border widths from the total width.
    You also need to update this width if you ever change your site width from the Layout 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: Widget area #5256
    Zed
    Cryout Creations mastermind

    I have the craziest feeling that I’ve answered this question already 🙂

    This custom CSS should do it:

    `#primary, #secondary { border: none !important; }`


    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 put code in my tag #5255
    Zed
    Cryout Creations mastermind

    You’ll find it right there in the Custom JS field.

    You should also see it in the source of the website after saving it, so you can check out if it’s placed in the right place and does what it’s supposed to do.


    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: Change text colour on top & footer menus #5253
    Zed
    Cryout Creations mastermind

    `.topmenu a { color: #abc; }

    .footermenu a { color: #abc; }`

    is the correct CSS for this.

    • This reply was modified 11 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: Change slider text size for mobile view only #5252
    Zed
    Cryout Creations mastermind

    Thanks for pointing that out. Separate

    `.nivo-caption { font-size: SIZE; } `

    for each mobile view size limit is the solution. We’ll add this in the next 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: Edit Social Media Icon Alt Tag displayed on hover #5249
    Zed
    Cryout Creations mastermind

    You will lose that change when you update Mantra the next time.

    See question C24 in the FAQs for the proper way to do 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: Change the "Home" page title #5248
    Zed
    Cryout Creations mastermind

    I see you’ve changed themes in the meantime.


    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: Slider image caption background opacity #5247
    Zed
    Cryout Creations mastermind

    `.nivo-caption { background: none !important; }`

    should probably do 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: 2.0.1 Disabling comments per post/page not working #5246
    Zed
    Cryout Creations mastermind

    Ignore that, it was most likely spam.

    Disabling the comment box works just fine for me, with or without Jetpack installed. I tested this for both pages and posts.

    Are you using any kind of comments related 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: website tittle over top menu trimmed #5245
    Zed
    Cryout Creations mastermind

    Increase your “Header Height” via “Header Settings”. 100px should suffice.


    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: Google Fonts #5243
    Zed
    Cryout Creations mastermind

    I cannot see this issue on your site nor can I reproduce it on one of our sites.


    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 Buttons don't show #5242
    Zed
    Cryout Creations mastermind

    It is fixed in v2.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: Mantra child theme and android tablet #5241
    Zed
    Cryout Creations mastermind

    We know about this issue; we’re still looking for a solution that will not mess with the menu behaviour on non-tablets.


    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: Testimonial Basic Widget title bar #5122
    Zed
    Cryout Creations mastermind

    The plugin should not format the look of its output.

    Try this custom CSS:

    .katb_display_widget_class h2, .katb_multiple_display_widget_class h2, .katb_display_widget_class h3, .katb_multiple_display_widget_class h3 {
    margin: 0 10px 0 -10px !important;
    padding: 4px 10px 4px 15px !important; }

    • This reply was modified 11 years ago by Zed. Reason: fixed typo

    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: Widget areas #5121
    Zed
    Cryout Creations mastermind

    Use this custom CSS:

    #primary, #secondary { border: 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,361 through 6,390 (of 6,623 total)