Rico Mossesgeld
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Kale] Responsive header left and rightHi @mquelal, @ricotheque from LyraThemes here.
Kale uses a framework called Bootstrap that collapses the menus into an accordion on smaller screens. Changing this would require developer customization of the theme.
We also don’t recommend keeping the menus open on mobile screens, because they will take up too much.
Hope this Helps,
Hi @haukuopexob, @ricotheque from LyraThemes here. Kudos to your initiative with using that 1 pixel image!
You can make the image banner disappear on mobile phones by adding this to your Appearance > Customize > Additional CSS:
@media (max-width: 767px) { .frontpage-banner { display: none; } }Hope this helps!
Forum: Themes and Templates
In reply to: [Kale] MailChimp Pop Up Subscriber Code IntegrationHello again @bcallaway!
We’d recommend using MailChimp’s official plugin. It adds a widget that you can place in your home page sidebar.
More details here: https://wordpress.org/plugins/mailchimp-for-wp/#installation
Forum: Themes and Templates
In reply to: [Kale] Post archiveHey @marcomaleco, @ricotheque from LyraThemes here.
Here are some ways you can display a list of all your blog posts on a page. Personally, I prefer the template code route (Method #3), but the plugins featured in the link should also do what you want.
Hope this helps!
Forum: Themes and Templates
In reply to: [Kale] Change font size for blog post titleNo problem @bcallaway!
If you’re liking the theme, would you mind leaving a review here? We’d really appreciate it! 🙂
Forum: Themes and Templates
In reply to: [Kale] Change font size for blog post titleHey @bcallaway, @ricotheque from LyraThemes again.
You can just modify what @jarektheme shared. Please use this for your Appearance → Customize → Additional CSS:
.single .entry-content { font-size: 14px; }Just replace “14px” with the font size of your choice.
Forum: Themes and Templates
In reply to: [Kale] Large White Space on HomepageHi @bcallaway, @ricotheque here from LyraThemes. I’ve double-checked your slider and it seems that not all of your featured images are the same size. The slider will always make itself as tall as your tallest image.
You can use a plugin like Regenerate Thumbnails, to “standardize” all of your image sizes.
Hope this helps!
Forum: Themes and Templates
In reply to: [Kale] How To Limit Recent Posts?Hi @roro1990, I’m @ricotheque from LyraThemes. What @eugemac said will work. We have more details in our theme documentation.
Hope this helps!
Forum: Themes and Templates
In reply to: [Kale] How to delete the comments section?Hey @navsessa7, I’m @ricotheque from LyraThemes. You’ll need to install and use a plugin like Disable Comments.
If you’d like to disable comments for new posts instead, you can do so by unchecking “Allow people to post comments on new articles” through Settings > Discussion.
Hope this helps!
Forum: Themes and Templates
In reply to: [Vega] remove the page title in the header imageHappy that you found the way, @donhoyt111. Enjoy your time with Vega! 🙂
Forum: Themes and Templates
In reply to: [Kale] Slider colour overlay not workingHi @elliemorgan, I’m @ricotheque from LyraThemes.
To change the overlay’s appearance, add this to your Appearance > Customize > Additional CSS:
.frontpage-banner:before, .frontpage-slider .owl-carousel-item:before { opacity: X }Just replace X with a number between 0 (completely transparent) to 1 (complete opaque). You can use decimals like
0.1or0.5.You can also make the text “pop” by adding a shadow to it. Here’s an example you can use in your Additional CSS:
.frontpage-slider .caption h2 { text-shadow: 1px 1px #000; }Hope this helps!
Forum: Themes and Templates
In reply to: [Vega] One Page Home Page HelpHi @pfischer, I’m Rico from LyraThemes.
Would it be possible to get your site’s URL? This will help me understand what you’d like to do.
Thanks!
Forum: Themes and Templates
In reply to: [Kale] Text wide spaces on “Post” in Home pageHi @fajaan,
I’m Rico from LyraThemes. Please try this in your Additional CSS:
.frontpage-featured-posts hr { display: none; } .row.two-columns + hr { display: none; }Hope this helps!
Forum: Themes and Templates
In reply to: [Vega] remove the page title in the header imageHi Don,
I’m Rico from LyraThemes. If you’re talking about the Adventurous Retirees title on your site, you can try this to make the text small enough to fit on mobile:
@media (max-width: 767px) { a.navbar-brand.text-logo { font-size: 18px; } }Hope this helps!
Forum: Themes and Templates
In reply to: [Kale] Match layout category pages with homepage@emmelie025, as I suspected: The CSS classes “.home” and “.frontpage-featured-posts” limited your changes to your home page.
You can remove these parts to make your changes apply to the rest of your site. If you’d like the changes to apply to only parts of your site however, here’s a helpful link on finding what classes to use for your Additional CSS: http://kb.oboxthemes.com/articles/how-to-get-css-styles-for-elements/