-
AuthorSearch Results
-
April 8th, 2018 at 19:07 #62104
In reply to: Mystery hyphen
Zed
Cryout Creations mastermindThat hyphen is the separator between your site title and tagline, which the theme normally displays in the title tag but which you left empty in WordPress’ general settings.
Either fill in the title and tagline in the settings or use a SEO plugin to customize the title that your site should display to browsers on the homepage.
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.April 8th, 2018 at 18:57 #62102Zed
Cryout Creations mastermindNirvana can display either the site title, the logo or none of them. It cannot display both the logo and the site title simultaneously (this is a feature we’ve added in our newer themes only).
An alternative would be to include your logo in the header image and then display the title on top.
The theme does provide some control over the title’s placement (using the header left/top margin options), but this workaround may need some additional CSS to make it work for all browsers and screen sizes.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.April 8th, 2018 at 18:52 #62101In reply to: Nirvana – featured image as header
Zed
Cryout Creations mastermindNirvana displays featured images in posts lists (blog, categories, archives, search results). It does not display the featured images in single views (single post or single page).
If you’re looking to display the featured image in the header in single views, check that the appropriate option (under the theme’s Featured Image options section) is enabled.
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.hi,
On an article in French, as I am French, I found this for galleries.
https://wpchannel.com/wordpress/tutoriels-wordpress/support-galeries-wordpress-html5/
– A well-coded theme must have the following line of code for effective support of image galleries:
add_theme_support('html5', array('gallery'));
The presence of this line will have the effect of using the
figure
tag. In case of absence, WordPress will usedl
anddt
tags and will add inline the following code tip:<style type='text/css'> #gallery-1 { margin: auto; } #gallery-1 .gallery-item { float: left; margin-top: 10px; text-align: center; width: 33%; } #gallery-1 img { border: 2px solid #cfcfcf; } #gallery-1 .gallery-caption { margin-left: 0; } /* see gallery_shortcode() in wp-includes/media.php */ </style>
In other words, it is not very optimal! If you develop your own themes, respect these good practices but if you pick up a premium theme you can simply filter the whole to disable adding CSS inline with:
/* Removing Default WordPress Syles for Galleries */ add_filter('use_default_gallery_style', '__return_false');
For my part, here is the CSS code that I included in my basic theme:
.gallery { margin: 0 -1.1666667% 1.75em; } .gallery-item { display: inline-block; max-width: 33.33%; padding: 0 1.1400652% 2.2801304%; text-align: center; vertical-align: top; width: 100%; } .gallery-item a { display: inline-block; } .gallery-columns-1 .gallery-item { max-width: 100%; } .gallery-columns-2 .gallery-item { max-width: 50%; } .gallery-columns-4 .gallery-item { max-width: 25%; } .gallery-columns-5 .gallery-item { max-width: 20%; } .gallery-columns-6 .gallery-item { max-width: 16.66%; } .gallery-columns-7 .gallery-item { max-width: 14.28%; } .gallery-columns-8 .gallery-item { max-width: 12.5%; } .gallery-columns-9 .gallery-item { max-width: 11.11%; } .gallery-icon img { margin: 0 auto; } .gallery-caption { color: #686868; display: block; font-size: 13px; font-size: 0.8125rem; font-style: italic; line-height: 1.6153846154; padding-top: 0.5384615385em; } .gallery-columns-6 .gallery-caption, .gallery-columns-7 .gallery-caption, .gallery-columns-8 .gallery-caption, .gallery-columns-9 .gallery-caption { display: none; }
I pointed out to the author of the Post, that he was missing
. Gallery-Columns-3. Gallery-Item
In its code for style. css
But maybe it can help.Website: gallery,%20style.cs
March 26th, 2018 at 14:48 #61353In reply to: Specific Header image for each page
Zed
Cryout Creations mastermindWhen the theme’s Featured images in the header option is enabled in the options, the theme will display the posts’ / pages’ featured images in the header (even instead of the site-wide header image) if the featured images are large enough (at least 75% of the configured site width and image header height).
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.March 26th, 2018 at 14:02 #61335In reply to: Menu problems with "hamburger" and dropdowns
Zed
Cryout Creations mastermindBoth on mobile devices and on desktop browsers you have to click the arrow indicates to open the submenus. That’s how the theme is designed to work.
On mobile devices, the main navigation turns into the mobile menu (displayed by clicking/tapping the hamburger icon). This icons (and the menu) appear to be properly displayed on your entire site. Which pages/sections are you missing it on?
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.March 26th, 2018 at 13:42 #61328In reply to: Disable only Responsive Menu
Zed
Cryout Creations mastermindDifferent responsiveness features cannot be disabled independently.
How should the main navigation be displayed on the smaller mobile devices (under 720px when it no longer fits in one line)?
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.March 26th, 2018 at 13:29 #61323In reply to: How to enable H1 tag in Tempera home page
Zed
Cryout Creations mastermindThe post title in a single post section uses the H1 tag.
Post titles in a posts list (which the homepage is) use the H2 tag. On the homepage the H1 tag is used only by the site title (which natura-medioambiental.com does not display).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.March 26th, 2018 at 12:54 #61311Zed
Cryout Creations mastermindThe theme displays the assigned featured image in lists (categories, archives, search results).
For the single views (single post or single page), images can be inserted directly in the content (at the desired location and with the wanted size).
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.Hi,
Pardon An error by the codes of the theme twenty Fourteen but twenty Seventeen, sorry./* Gallery Columns */ .gallery-item { max-width: 25%; } .gallery-columns-1 .gallery-item { max-width: 100%; } .gallery-columns-2 .gallery-item { max-width: 50%; } .gallery-columns-3 .gallery-item { max-width: 33%; } .gallery-columns-4 .gallery-item { max-width: 25%; }
You have to adapt the code to your code
** * 5.4 Galleries * ---------------------------------------------------------------------------- */ .gallery { margin-bottom: 20px; margin-left: -4px; } .gallery-item { float: left; margin: 0 4px 4px 0; overflow: hidden; position: relative; } .gallery-columns-1.gallery-size-medium, .gallery-columns-1.gallery-size-thumbnail, .gallery-columns-2.gallery-size-thumbnail, .gallery-columns-3.gallery-size-thumbnail { display: table; margin: 0 auto 20px; } .gallery-columns-1 .gallery-item, .gallery-columns-2 .gallery-item, .gallery-columns-3 .gallery-item { text-align: center; } .gallery-columns-4 .gallery-item { max-width: 23%; max-width: calc(25% - 4px); } .gallery-columns-5 .gallery-item { max-width: 19%; max-width: calc(20% - 4px); } .gallery-columns-6 .gallery-item { max-width: 15%; max-width: calc(16.7% - 4px); } .gallery-columns-7 .gallery-item { max-width: 13%; max-width: calc(14.28% - 4px); } .gallery-columns-8 .gallery-item { max-width: 11%; max-width: calc(12.5% - 4px); } .gallery-columns-9 .gallery-item { max-width: 9%; max-width: calc(11.1% - 4px); } .gallery-columns-1 .gallery-item:nth-of-type(1n), .gallery-columns-2 .gallery-item:nth-of-type(2n), .gallery-columns-3 .gallery-item:nth-of-type(3n), .gallery-columns-4 .gallery-item:nth-of-type(4n), .gallery-columns-5 .gallery-item:nth-of-type(5n), .gallery-columns-6 .gallery-item:nth-of-type(6n), .gallery-columns-7 .gallery-item:nth-of-type(7n), .gallery-columns-8 .gallery-item:nth-of-type(8n), .gallery-columns-9 .gallery-item:nth-of-type(9n) { margin-right: 0; } .gallery-icon { line-height: 0; } .gallery-caption { position: absolute; bottom: 0; left: 0; font-size: .9em; color: #fff; text-align: left; line-height: 1.3; background-color: rgba(0, 0, 0, 0.7); margin: 0; max-height: 50%; opacity: 0; padding: 2px 8px; width: 100%; cursor: default; -webkit-transition: opacity 400ms ease; transition: opacity 400ms ease; } .gallery-item:hover .gallery-caption { opacity: 1; } .gallery-columns-7 .gallery-caption, .gallery-columns-8 .gallery-caption, .gallery-columns-9 .gallery-caption { display: none; }
Thank you
March 15th, 2018 at 18:54 #60962In reply to: Landing Page Slider not responsive
The css worked beautifully to solve this issue on my static landing page except now when reducing the screen size before it gets to phone sized it crops the top of my image where the logo is displayed.
Website: agapebulldogs.com
-
This reply was modified 7 years ago by
goldfishflake.
March 8th, 2018 at 12:04 #60663In reply to: Iframe Integration
Yes, on this site (http://blogs.geo.fr/) other pages display correctly with same iframe integration I think.
Ex : http://blogs.geo.fr/to/I76#http://blueashestravel.com/fr/itineraire-voyage-en-solo-mexique/Thanks for helping ! 🙂
Website: www.dumondedanslobjectif.com
March 7th, 2018 at 15:36 #60628In reply to: Defects in Anima menus
Zed
Cryout Creations mastermindYour menu items and site title/tagline are too many/too long to fit in the available space, so the menu jumps lower on a second row. Limit your menu items or your site title/tagline to the available space to be displayed properly.
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.March 7th, 2018 at 14:12 #60607In reply to: How to enable H1 tag in Tempera home page
Zed
Cryout Creations mastermind@Wakachuli, post title in posts lists use the H2 tag (and the site title, if displayed, has the H1 tag). Post titles in single post sections use the H1 tag.
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.March 7th, 2018 at 14:02 #60594In reply to: Video Background On Frontpage
Zed
Cryout Creations mastermindDepending on what you’re currently displaying on the homepage, that would be simple or not.
If you’re displaying a static page, then it should be no different than the rest of the singe pages you added the background on.If you’re displaying the posts list (or the theme’s presentation page feature which is an extension of the posts list), this behaves like a category/archive. Did you add the background video on other categories/archives? How?
Doesn’t the plugin provide a general way of setting a background video site-wide (CSS and/or script)?
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.February 28th, 2018 at 03:45 #60327kvalentk
Power UserThank you for replying, Keymaster. The problem that remained after I solved initial stuff by adding /#primary was with category pages, where you don’t set the Read More link manually. So every time the user selects one of these (for example at http://settingForth.pub > Help Me Write > Self-Help > category page display) the page reloads, goes to the top, and all that displays is the image.
I have found a workaround that I’m implementing now. It’s a plugin called Collapse-o-Matic that initially loads the entirety of each page/post, but with a specified portion hiddne. The user then clicks to display the hidden portion, and no reload takes place. This may cause a category page to load less quickly, so I’ll need to specify that fewer posts load, but that’s easy.
If there is a solution to this problem that I can make work on a category page, this will save me the trouble of having to open almost 100 posts and manually specify the portion of each that is to be hidden.
I would think that the solution to this should be included in an upgrade to Kahuna; it does seem an obvious need.
Thanks.
February 27th, 2018 at 19:08 #60281In reply to: [Simple] HTTPS support
Zed
Cryout Creations mastermindLinks are not part of Septera. And which plugins are you referring to?
All the links which are displayed in content are part of the content added to the site (menu, widgets, pages/posts) so they are under your control.
Those used by WordPress (for the styles, scripts, some media, so on) are dependent on the URL you installed WordPress at and can be updated to use HTTPS if needed.
You can find information for this procedure in the official WordPress.org forums and the documentation:
https://make.wordpress.org/support/user-manual/web-publishing/https-for-wordpress/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.February 27th, 2018 at 18:41 #60276In reply to: I don't see any of widgets in header
Zed
Cryout Creations mastermindThe header widget area is displayed on top of the header image and requires the header image to be used and visible to activate.
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.February 27th, 2018 at 18:30 #60273Zed
Cryout Creations mastermindThe landing page’s (static) slider image and the header image are two separate images (set to the same graphical content by default). The static slider is part of the landing page feature and only visible on it. The header image does not display a caption.
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.February 27th, 2018 at 18:01 #60270In 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.February 22nd, 2018 at 17:48 #60119In reply to: Removing theme's images
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.
February 20th, 2018 at 22:51 #60077In reply to: Featured image is not on top of the article
Hello, i have the same issue with Kahuna 1.1.0. The selected featured image is only displayed in the posts list. In the single post section the featured image is ignored. Instead one of the header images is displayed.
Website: www.ff-karroesten.at
February 20th, 2018 at 16:28 #60059PS: cropped helps but it displays the header image incorrect that way.
February 18th, 2018 at 19:31 #60005In reply to: Sidebar drop to bottom of page
Zed
Cryout Creations mastermindThat is expected behaviour – the sidebars are displayed under the content on narrower screens (mobile devices) for improved content readability.
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.February 18th, 2018 at 17:56 #59995In reply to: Removing theme's images
Zed
Cryout Creations mastermindYou probably have enabled the general header image and also selected to display random images from the theme’s suggested list. You can select or disable the header image from WordPress Site Identity > Header Image panel (in the customizer).
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.February 18th, 2018 at 17:50 #59992Zed
Cryout Creations mastermind1. 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.February 18th, 2018 at 17:28 #59986In reply to: how to create a sidebar, or column?
Zed
Cryout Creations mastermindThe landing page feature of the theme is not designed to display sidebars.
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.February 18th, 2018 at 17:27 #59985In reply to: Featured image size
Zed
Cryout Creations mastermindThe image sizes registered by the theme are not directly controllable, but they can be disabled by commending out/removing the appropriate code in the theme’s includes/setup.php file.
Keep in mind that the theme will most likely display the wrong size images in all locations after doing 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.February 18th, 2018 at 16:56 #59976In reply to: Centralize header widget title and content
Zed
Cryout Creations mastermindI 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.February 18th, 2018 at 16:31 #59967In reply to: Search field appears instead of Slider
Zed
Cryout Creations mastermindIf you’re referring to the search box displayed in the menu (at the right end), that’s configurable from the theme’s Graphics 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. -
This reply was modified 7 years ago by
-
AuthorSearch Results