Forum Replies Created
-
AuthorPosts
-
Zed
Cryout Creations mastermindTinker with the email protector plugin some more – turn it off and see if the email link works then.
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 mastermindIf you’re referring to the theme’s extra text fields that display on the homepage, those do not feature any kind of advanced editor (for now) so you’ll have to type in the HTML code directly (if you’re not familiar with HTML, you could write your text in a new post or page, switch to the Source View mode of the editor and copy the code from there; but the end result will not look identical to what you see in 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.October 11th, 2015 at 15:07 in reply to: Pres. Page: Chose Title/Descrp. Option but also want Logo Icon #33895Zed
Cryout Creations mastermindThe theme can either display your logo or the site’s title & tagline.
Displaying both simultaneously is currently not a feature, however a workaround is to use the header background image (place your logo in a large image that covers the entire header area and set it in the site) and then set the header content to site title&description (but move that slightly to the right so it doesn’t overlap the logo that’s in the background).This workaround will not play nicely on mobile devices, though (the header image get resized a lot).
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 mastermindIf you want to center the images in the area, apply text alignment on the area itself:
#front-text3 blockquote { text-align: center; }
For spacing, see the other topic and double-check that you are entering (including the semicolon).
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 mastermindYour images are loaded at the exact size they are displayed at, so there is no wasted extra size on them.
You do have a lot of images on that page, but I don’t believe they amount to that much bandwidth usage.
You could consider switching to a different package or host if your current one has limits that no longer suffice for your site/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.Zed
Cryout Creations mastermindKatie, did you use   or &nbps; (the correct one).
Alignment, spacing need to be handled at the styling level. You can either replicate WordPress’ styling (add class=”align[left|center|right|none]” to the image) or write your own styling and place it in the custom CSS field in the theme (or your preferred custom styling location).
For extra spacing, wrap your paragraphs of text in
<p>paragraph tags</p>
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 mastermindjQuery(…).slider still points to a JavaScript issue.
jQuery is part of WordPress core and should just work, unless something else is unloading/overlapping/overloading it.
Without access to the problematic dashboard I cannot give you any direct solutions, but my approach to this kind of issues is:
- always double-check everything (that the plugins are all disabled, that everything is updated, that the browser is displaying the up-to-date site and there is no caching involved)
- browse through the sourcecode of the site looking for any occurrences of the “jQuery” words (specifically related to external .js files); check whether these are part of WordPress or loaded from plugins/theme/remote URLs.
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 mastermindIt appears we’ve missed making the one column template responsive.
Try this custom styling:
body .one-column #content { width: 100%; }
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 mastermindWhen custom styling is overridden by default or generated theme styling, make your rules more specific. For example, try:
body #content table.pedigree td {
However, if !important didn’t work it sounds like you’re using the wrong tag/identifier. Double-check with your browsers development tools or with 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.Zed
Cryout Creations mastermindYou can do so from the theme settings (Appearance > Nirvana Settings > Presentation Page Settings). Look for the Columns sub-section and disable 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.October 4th, 2015 at 16:00 in reply to: Adding sidebar next to blog posts on presentation page #33823Zed
Cryout Creations mastermindNot currently as it requires code changes to be done to the theme, but we are considering adding this as an option in a future 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.Zed
Cryout Creations mastermind1. Content arrangement (in the Editor) is WordPress functionality (and not controlled by the theme). You may get better answers if you ask this in the WordPress forums.
2. You could technically apply a different font (or font set) for each post/page/content section/element on the site, but you’ll need to use custom styling (and perhaps plugins if you intend to use fonts from external sources).
3. As far as I know, WordPress does not have functionality that automatically grab content from other sites by just supplying a link. You can either manually insert the content of the desired story yourself (in a post, page or whatever) or look for a plugin that can do this for you.
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 mastermindLink colours are configurable in theme settings, under Color Settings.
In HTML, link elements do not exist without actually having a link assigned to them. They always link to something (even if that something is an invalid address). So they will always be coloured (as configured in theme settings).
Starting from this, there are several type of links:
- a and a:link – the standard normal link
- a:visited – a link that you’ve already clicked on and visited (at least once before in your browser)
- a:hover – a link you are currently hovering on
- a:active – a link at the instant you are clicking on
While the theme only colours two cases: the hover and all other cases combined, with custom CSS you can control them individually: http://www.w3schools.com/HTML/html_links.asp
To underline all links, this CSS does the trick:
a, a:hover { text-decoration: underline; }
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 mastermindWayne, double-check which frontpage areas you’ve configured to hide in theme settings (Presentation Page > Extra > Hide areas).
To hide the header area (above the main menu, where the site title/logo / header image go), set the header height to 0 in theme settings (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.Zed
Cryout Creations mastermindAre you using the example child theme? Did you edit its functions.php file or directly Nirvana’s file? (the latter being wrong).
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.October 4th, 2015 at 15:42 in reply to: How to move blogs to top in stead of below the columns? #33818Zed
Cryout Creations mastermindThe frontpage.php file containes all the sections displayed. To re-order them you’d need to move their responsive blocks of code around.
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 mastermindThe page using the blog template will follow the general layout option set in the theme 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.Zed
Cryout Creations mastermindListing the issue(s) you are encountering would help a lot in identifying and fixing them (if we can confirm them).
Otherwise, the fixed issues are listed in each update’s announcement post:
http://www.cryoutcreations.eu/nirvana/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 mastermindThe header content left/top margin options should not be used to center the logo.
Use this CSS instead:
#header-container { text-align: center; }
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 mastermindThe number of posts to be displayed on the homepage when using the presentation page is configurable in the theme’s settings, in the Presentation Page section.
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 mastermindCould you give a link to a page/post displaying 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.Zed
Cryout Creations mastermindKelly, could you double-check that the widget is correctly placed?
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 mastermindWithout a sample link I could only guess they were using the theme’s columns feature (which is part of the presentation page).
But the texts can be disabled even from posts by filling in empty manual excerpts and changing the featured image size options to make it fill up the width of the post (it is currently only using part of the post width).
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 mastermindCould you provide is with the URL to a page/site exhibiting this 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.Zed
Cryout Creations mastermindTracia, what browser/device are you seeing this on? Cause it displays fine for me.
If you caching plugin has a CSS minification feature, turn it off.
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.October 4th, 2015 at 15:16 in reply to: Scrolling does not work in IE11 unless logged in as Admin #33805Zed
Cryout Creations mastermindDisplaying the site via an IFRAME might be the cause of this issue.
You should consider moving the site to the target address and not run it masked from http://www.razzmatazz.se/itautomation/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.October 4th, 2015 at 14:46 in reply to: a.continue-reading-link isn't managed by parabola_metaback #33804Zed
Cryout Creations mastermindThe continue reading button is indeed not controlled by the meta colour options (as it is not part of the metas), but uses the same colours as the menu items. This is a design choice.
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 mastermindThe two
TypeError: this.transport is null main.js:1207:4 TypeError: jQuery(…).wpColorPicker is not a function
do indicate JavaScript issues.
Whether these are critical and break WordPress’ entire jQuery or just small issues I cannot know from just this log.
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 mastermindAva, are you using the latest 2.4.1(.1) version?
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.October 4th, 2015 at 13:29 in reply to: Latest Mantra causes editor to strip all tags on publish #33800Zed
Cryout Creations mastermindAre you displaying excerpts or full posts on the front page?
When excerpts are used, all HTML content is automatically stripped by WordPress and the text is trimmed to a limited number of words.Switch to full posts (look in the Post Excerpt in theme 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. -
AuthorPosts