jarektheme
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Kale] Font Size of List with a PostHi @mafanslau
To add those changes to the page, you need to add this style:
.container .page .page-content { font-size: 18px; } .container .page .page-content li { font-size: 18px; }
Kind regards
Forum: Themes and Templates
In reply to: [Elara] Polylang pluginHi @lumestudio
Polylang works with Elara, however we found that there are some issues in Customizer if you want to add different content according to chosen language. Apparently the strings from Customizer don’t show up in translation strings in Polylang.
There is some workaround which requires some changes in theme file and it only works when homepage is set as static page. That means your blog feed (recent posts) section will be displayed on posts page, not on front page because static front page don’t have this section build in. I’m not sure if this is what you want.
Kind regards
Forum: Themes and Templates
In reply to: [Juliet] Header image brightnessOnly a pleasure ??
@dubareid Could you mark the thread as resolved when you find some time?Forum: Themes and Templates
In reply to: [Juliet] Header image brightnessHi @dubareid
Instead of adding CSS you can also disable header overlay in Appearance → Customize → Front Page → Banner / Slider section by turning off the “Show Color Overlay/Filter?” option
Best
Forum: Themes and Templates
In reply to: [Ariel] New Color for LinksIf you want to remove all orange(ish) color on link hover you need to add this style:
a:hover, a:visited, a:active, a:focus, .sidebar-column .widget ul a:focus, .sidebar-column .widget ul a:hover, .footer-row-columns .widget ul a:focus, .footer-row-columns .widget ul a:hover, .navbar-default .navbar-nav>.current_page_item>a, .navbar-default .navbar-nav>.current_page_item>a:hover, .navbar-default .navbar-nav>.current_page_item>a:focus, .navbar-default .navbar-nav>.current-menu-parent>a, .navbar-default .navbar-nav>.current-menu-parent>a:hover, .navbar-default .navbar-nav>.current-menu-parent>a:focus, .navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:hover, .navbar-default .navbar-nav>.active>a:focus, .navbar-default .navbar-nav>.open>a, .navbar-default .navbar-nav>.open>a:hover, .navbar-default .navbar-nav>.open>a:focus, .navbar-default .navbar-nav>li>a:focus, .navbar-default .navbar-nav>li>a:hover { color: #d93175; }
Hope that helps.
Forum: Themes and Templates
In reply to: [Kale] Show featured images of next posts at bottom of postYou don’t need to change every single post but our theme doesn’t support this so we need to modify single.php theme file to do that. If you want, you can send us customization request here: https://lyrathemes.com/customization
Best
Forum: Themes and Templates
In reply to: [Kale] Padding between slider and menu/textHi there,
Thank you for getting in touch with us.
Please go to Appearance → Customize → Additional CSS and add the following css:
.header-row-3 { margin-bottom: 20px; } .frontpage-slider { margin-bottom: 20px; }
Kind regards
Forum: Themes and Templates
In reply to: [Kale] Show featured images of next posts at bottom of postHi Brittany,
Thank you for getting in touch with us.
The only way to add featured image to post navigation on single post page is to modify single.php file.
Kind regards
Forum: Themes and Templates
In reply to: [Kale] Featured Image not showingHi @wynnekatherine
I found your post in our forum and I noticed that Sinisa sent you response few hours ago. There are some issues with login details. Could you check out your emails and contact us via Support forum here: https://www.lyrathemes.com/support/
Best
Forum: Themes and Templates
In reply to: [Kale] Feature image issuesThe best image size for featured images in Kale is 1200x800px so all featured images in demo page are rectangles. It seems that your images have 400x400px size so if you want to keep consistent size you need to add images with the same size.
Best
Forum: Themes and Templates
In reply to: [Kale] Image rotator on free version?Thank you for your kind words. We appreciate it ??
Please remember to mark this thread as resolved.
Forum: Themes and Templates
In reply to: [Kale] Feature image issuesHi there,
Thank you for getting in touch with us.
If you want to hide the featured image on single post page then open Appearance → Customize → Posts section and disable “Show Featured Image” option.
Kind regards
Forum: Themes and Templates
In reply to: [Kale] Image rotator on free version?Hi Nate,
Thank you for getting in touch with us.
Kale free version allows you to add Posts Slider where featured images from these posts will rotate. In order to use it you need to open Appearance → Customize → Front Page → Banner / Slider section and select the category you would like to display. Please make sure to select category that has at least the selected number of posts. See this screenshot as reference: https://prntscr.com/mjfvuw
Kale Pro allows you to create custom slider where you can upload images with header, description and link.Kind regards
Hi there,
Thank you for getting in touch with us.
The above code set the maximum width of single post content to 600px and center it. If you want to center align all text you can change it like this:
.single-post .main-column .post .single-content { max-width: 600px; margin: 0 auto; text-align: center; }
The max-width 600px applies to the content of single post but the width of wrapped column is still 75% so the sidebar stays in the same position. The only way to move the sidebar closer to the post content is to change its width like this:
@media (min-width: 992px) { .single-post .main-column { width: 60%; } .single-post .sidebar { width: 40%; } }
Kind regards
Forum: Themes and Templates
In reply to: [Kale] Change color on links@ashleighrose It seems that your site is using ST Blog theme, not Kale so please contact ST Blog support.
Best