-
AuthorSearch Results
-
April 21st, 2017 at 18:32 #44196
In reply to: Hide Previous Post\Next Post in Posts
Zed
Cryout Creations mastermindTry
#nav-below { display: none; }
-
This reply was modified 8 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.April 21st, 2017 at 18:27 #44194In reply to: Featured Images in Featured Boxes
Zed
Cryout Creations mastermindThe featured boxes require featured images set for these to be displayed.
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 21st, 2017 at 18:18 #44192In reply to: Possible to show header on pages
Zed
Cryout Creations mastermindThe theme has the ability to display a header image for all pages (or posts) that have featured images set. This is controlled from the theme’s Featured Image 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.April 21st, 2017 at 18:13 #44189In reply to: Categories blocks in landing page ?
Zed
Cryout Creations mastermindIn Fluida icon blocks display individual pages while featured boxes display posts (all or from a specific category).
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 21st, 2017 at 17:10 #44176In reply to: Searchbox below menu after changing the fonts?
Zed
Cryout Creations mastermindResponsiveness doesn’t correct for how you choose to display things (by setting a font that makes your menu too wide to fit in the available space).
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 21st, 2017 at 16:48 #44166In reply to: Remove Mobile Header Completely
Zed
Cryout Creations mastermindThe .mobile class is added via JS, so it is not present from the first instant.
I suggest you use media queries in your css to target mobile devices:
@media (max-width: 800px) { body #header-container { 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.April 17th, 2017 at 19:43 #44052In reply to: Header and static image cut by menu
or…if you want the “best” of the two worlds, this works for me:
/* MENU FIX for FLUIDA */ @media (max-width: 1240px) { #masthead.cryout #access {display: none;} #masthead.cryout #nav-toggle {display: block;} #masthead.cryout #sheader {display: none;} } @media (max-width: 1440px) { #masthead.cryout #access {font-size: 0.8em;} }
April 17th, 2017 at 18:42 #44043In reply to: Header and static image cut by menu
While Zed is studying on a way to improve “long menus” display on desktop low resolution screen (or small window)
please feel free to try this CSS code (put it in your custom css file o in the “customize theme/custom CSS” section:/* MENU FIX for FLUIDA */ @media (max-width: 1440px) { /* change 1440px into your needed max-width */ #masthead.cryout #access {display: none;} /* hides the full textual menu */ #masthead.cryout #nav-toggle {display: block;} /* display the mobile menu (stack icon) */ #masthead.cryout #sheader {display: none;} /* hides the social menu, remove this line if u don't have it on the main menu */ }
OBVIOUSLY change 1440px into a resolution which acts as limit for your menu
(think of it as “if my maximum width is XXXXXpx, then switch the full menu into mobile menu)-
This reply was modified 8 years ago by
tamerlaneunreal.
-
This reply was modified 8 years ago by
tamerlaneunreal. Reason: improved code readability
-
This reply was modified 8 years ago by
tamerlaneunreal. Reason: added comments
I use this code :
.main .entry-meta span, .entry-utility span {
display: none !important; }but all meta in post disepeared also
April 9th, 2017 at 17:21 #43860In reply to: Title for posts on frontpage
Thank you for helping on Sunday!!
Sorry but I don’t get it… I tried
h3#custom-title, #front-text1 h2, #front-text2 h2, #front-text5 h2, #front-columns h2 { display: block; float: none; margin: 0px auto; font-size: 45px; line-height: 55px; clear: both; font-weight: 300; }
as well as
h3#custom-title h3, #front-text1 h2, #front-text2 h2,
as well as
h3#custom-title h2, #front-text1 h2, #front-text2 h2, #front-text5 h2, #front-columns h2 { display: block;
as well as to separate it to
h3#custom-title h3 { display: block; float: none; margin: 0px auto; font-size: 45px; line-height: 55px; clear: both; font-weight: 300; }
but the custom-title does not change for one single pixel…
In Firefox console I can adjust font-weight for h3.custom-title but it seems to belong to #pp-afterslider h3 and that is where I get stuck in CSS…
Website: www.weltangucker.de
April 9th, 2017 at 15:29 #43852In reply to: WooCommerce on Multisite : Star Ratings don't appear
Zed
Cryout Creations mastermindNirvana uses placeholders instead of labels in the comment form. Use this CSS to restore labels:
.woocommerce #respond label { display: block; }
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 theme’s presentation page does not 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.April 9th, 2017 at 14:47 #43846Zed
Cryout Creations mastermindYou can do that with CSS:
body.single #nav-above, #nav-below { 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.April 9th, 2017 at 01:09 #43842In reply to: Title for posts on frontpage
So the Sample Title appears at the right place. But I cannot amend styling. My idea was to add #custom-title to the existing list in style.css as styling already exists
Existing CSS
#front-text1 h2,
#front-text2 h2,
#front-text5 h2,
#front-columns h2,
{
display: block;
float: none;
margin: 0px auto;
font-size: 45px;
line-height: 55px;
clear: both;
font-weight: 300;
}amended CSS
#front-text1 h2,
#front-text2 h2,
#front-text5 h2,
#front-columns h2
#custom-title h2,
{
display: block;
float: none;
margin: 0px auto;
font-size: 45px;
line-height: 55px;
clear: both;
font-weight: 300;Unfortunately it doesn’t work. Where am I wrong?
Website: www.weltangucker.de
-
This reply was modified 8 years ago by
Klaus.
April 7th, 2017 at 12:24 #43795In reply to: Post thumbnails not showing up
Zed
Cryout Creations mastermind@newy219, are the theme’s post options set to Excerpt or Full Posts (under Post Excerpt Settings)?
The theme only displays thumbnails when the excerpts are enabled (which appears to not be the case based on the HTML markup used, despite the presence of the continue reading button).
@gardensidestudio, the columns will only display posts that have featured images set (the images are required in the columns).
Featured images are not displayed on full posts (the situation where images in content would also be 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.April 3rd, 2017 at 16:58 #43695In reply to: Featured Icon Blocks not using excerpt?
Something very odd going on. I’ve don’t have a plugin for it, and I’m using your theme and the override for displaying it needs to be placed in the functions.php file.
My other blog, using default twenty fifteen theme, and no plugins (as I don’t use excepts at all on that blog) doesn’t display excepts, but it’s there in the screen options drop down to enable!
April 3rd, 2017 at 10:53 #43683In reply to: How to set a Separate Page for Blog Posts in Septera
Zed
Cryout Creations mastermind@mikah257, check if the static page you’re setting as the homepage has a template assigned. If it does, the landing page will be disabled and only the static page content will be displayed.Edit: This is no longer the case in Septera.
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 3rd, 2017 at 10:14 #43675In reply to: Header image
Zed
Cryout Creations mastermindBy default the theme’s landing page doesn’t display the header image but a separate distinct image (also configurable in the theme’s options) placed in the slider’s location. We call this the static slider image and it’s under the theme’s landing page > slider options.
For all other sections of the site the header image is displayed accordingly.
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 2nd, 2017 at 22:40 #43662Zed
Cryout Creations mastermindYou can try hiding the site title when it no longer fits in:
@media (max-width: 525px) { #branding #site-text { 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.April 2nd, 2017 at 22:19 #43657In reply to: Show name of menu (or name of category)
Zed
Cryout Creations mastermindThe widgets that are used in the sidebars are responsible for displaying a widget title (be it the menu title or custom text) or not. The theme cannot manipulate widget 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.April 2nd, 2017 at 21:25 #43642In reply to: Blurred post images on presentation page
Zed
Cryout Creations mastermindYour featured images were generated at about 150px width but are now displayed at 250px width so it looks like you’ve changed the theme’s featured image size values since the images were uploaded to the site.
You mention installing a thumbnail regeneration plugin, but do not mention using it to actually regenerate the thumbnails.
My personal choice is this plugin, which once installed will add a separate section under Tools from where you can trigger the images regeneration process.By the way, thanks for crediting our 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.April 2nd, 2017 at 20:31 #43635In reply to: No "burger-menu" on mobile device
Hello Zed 🙂
Thank you for the reply!
I tweaked the settings in JetPack and it helped a bit.
I now have these two selected:
“Excerpts
On: Enable excerpts on front page and on archive pages”And
“Featured images
On: Display featured images”The menu is now showing (full, not the burger menu), and the front page is correct with excerpts and featured images, so that helped ALOT!
But still, I don’t have that burger menu, so it still looks funky – Any ideas?
Best!
Line 🙂Website: www.medeno.dk
April 2nd, 2017 at 18:29 #43631In reply to: Hide comments count on presentation page
Zed
Cryout Creations mastermindThe theme doesn’t have an option specifically for this change, but it can be done with custom CSS:
@media (max-width: 650px) { .content-masonry .comments-link { 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.March 25th, 2017 at 12:19 #43505In reply to: Remove Author block in single post pages
Zed
Cryout Creations mastermindThe author block appears when the author has something entered in its bio field (in the settings). You can disable it by leaving the bio empty or you can hide it with CSS:
article #author-info { 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.March 25th, 2017 at 11:49 #43495In reply to: Slider with recent posts
Zed
Cryout Creations mastermindThe theme’s landing page is not designed to display sidebars.
You can insert sliders in a standard (static) page using shortcodes, which will follow the theme’s layout option and display sidebars (if set to).
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 24th, 2017 at 13:52 #43480HI @raftingbatu thanks for that that helps however it also display 2 FF on the Tab in the browser and it looks completely wrong. Is there any other way?
Website: dsfp.annagaudia.uk
March 21st, 2017 at 22:23 #43428In reply to: Remove Continue Reading Bottom from front page posts
Zed
Cryout Creations mastermindThe continue reading button is displayed when posts in lists (homepage, categories, archives) as set to be displayed as excerpts, not full posts.
You could switch the posts to full posts (from the theme’s options) to turn it off, or change its label to nothing (from the theme’s options 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.March 20th, 2017 at 10:01 #43400In reply to: Doesn´t show the date of articles
Zed
Cryout Creations mastermindLooking at your site now the date is visible, so I assume you managed to find the theme’s settings controlling what meta information is displayed.
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 19th, 2017 at 21:54 #43385In reply to: Pagination not showing on mobile
Zed
Cryout Creations mastermindYou have some custom styling that’s too general and applies to the pagination:
/* Our css Custom Options values */ @media only screen and (max-width:479px){ ... nav{ display: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.March 19th, 2017 at 12:29 #43360In reply to: Excerpt on pages
Zed
Cryout Creations mastermindPages do not have excerpts (normally) in WordPress.
The theme permits you to display an automatically shortened intro from page contents or the complete page content. However the areas using pages as source of information are designed for displaying small bits of content and not full pages of text.
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 8 years ago by
-
AuthorSearch Results