Notice: These forums are now retired and closed. For active support, please Submit a Ticket or visit our official WordPress.org community pages.
Kadence Theme | Kadence Blocks | Starter Templates | WooCommerce Email Designer | Ascend | Virtue | Pinnacle
Search Results for 'widget area'
-
AuthorSearch Results
-
In forum: Kadence Theme
I still have some of the issues that were not addressed in my previous message.
I am working on a staging copy of the website that I can publish once its ready and all problems are fixed, that’s why my current website looks the same.
I will send a link to staging copy where you can see all the listed problems.I wasn’t able to fix the issue with icons in the footer, they don’t show up. I use icon list widget block. I will attach the screenshots.
The image that is now in the upper right hand corner of the header is very small (marked as a small red rectangle on the photo). I want to stretch it to the entire area from the logo to the right border (marked as a large red rectangle on a photo).
Sidebar:
I set the default option in customizing area with no sidebar, because I am planning to use no sidebar on some pages.
When I add a sidebar to some pages where I want to have it, it doesn’t show up. It shows up on blog posts, but not on the pages.I tried to assign sidebar in the main settings, but then there is no option to not show it on some of the pages, you always have to choose some sidebar.
I still cannot find the option to remove Home Title on the home page. If I remove it in the page editor it removes the entire page title (H1 heading). Is there any css to remove the Home title from showing up on the home page (without removing H1 title from the page)?
Drop down menu goes beyond the screen on smaller monitors. Can I change it in some way other than making the menu thinner?
Is there a way to customize how the page with all blog posts appears? For example, not to show posts preview in columns and make larger images and abstracts.
Thank you!
In forum: Virtue ThemeIn reply to: Increase Portfolio Items on Homepage?
Hi Alison,
You can use a shortcode like this:[portfolio_posts orderby=date excerpt=false columns=4 items=50 height=200 lightbox=true showtypes=true cat=photos]
Just paste that into your static homepage or into a text widget within the home widget area.
Hope it helps!Kindly,
HannahIn forum: Ascend ThemeIn reply to: Top bar area width adjust
Hello Stephen,
Thank you for reaching out to us.
Unfortunately, the topbar settings do not have a built-in option to adjust the width and by default, the Topbar is divided into 2 columns. You can add this custom CSS to make your right widget area’s width 100%:
.kad-topbar-height { display: block; } .kt-topbar-right { width: 100%; }Hope this helps and let us know if we can assist you further.
Regards,
KarlaIn forum: Kadence ThemeIn reply to: Sidebar customization
Hey,
Thanks for reaching out!
1. You can use this css:.primary-sidebar.widget-area .widget-title { font-size: 20px; font-family: sans-serif; }2. Kadence doesn’t add widgets as our other themes do, but you can use a plugin like which allows you to build a reusable block but then add it to a page via a shortcode:https://wordpress.org/plugins/reusable-blocks-extended/
3. This post explains a way to do this: https://www.wpbeginner.com/plugins/how-to-create-a-sticky-floating-sidebar-widget-in-wordpress/
Hope that’s helpful!
Hannah
In forum: Kadence ThemeIn reply to: Display sidebar for tablet screens
February 19, 2021 at 6:36 am #263710Hello,
I just thought you did not want to show your sidebar on mobile in your original question – “Is it possible to show the sidebar for tablet – but to not display the sidebar in mobile?”
This code – @media (max-width: 768px) {.widget-area { display: none; } } hides the sidebar in your mobile. 768px is the breakpoint for mobile in Kadence theme.
Thank you, by the way, for sending an image for the actual looks of your site at every breakpoint.
For the tablet:
@media screen and (max-width: 1024px){
.has-sidebar .content-container.site-container{
display: grid;
grid-template-columns: 5fr 2fr;
grid-gap: var(–global-xl-spacing);
justify-content: center;
}
}
For mobile:
@media screen and (max-width: 768px){
.has-sidebar .content-container.site-container{
display:block;
}
}Let me know how it goes.
Regards,
ChitoIn forum: Kadence ThemeIn reply to: Display sidebar for tablet screens
February 19, 2021 at 5:46 am #263709I appreciate the response. Here is an image of what I am trying to do. I would like the sidebar to stay on the right side of the page in the desktop and tablet.
This code –
@media (max-width: 768px) {.widget-area { display: none; } }Just says says the widget area to disappear if the screen size is smaller than 768 pixels
In forum: Membership ForumsHello Pawel,
Thank you for reaching out to us.
Let me confirm if I understand your question right – you want to show a second different logo on the bottom row of the header only when it is already sticky? If that is the case, instead of using an HTML header item, I would recommend using Widget Area with an Image widget added. Afterward, add this custom CSS code in Customizer > Additional CSS:
.site-bottom-header-wrap .site-header-row-container-inner { display: none; } .site-bottom-header-wrap.item-is-stuck .site-header-row-container-inner { display: block; }Here’s the result for your reference – https://www.loom.com/share/e3ec7d9ec5084e44afbe3b77ca845c30
Hope this helps and let us know if we can assist you further.
Regards,
KarlaIn forum: Kadence ThemeIn reply to: Display sidebar for tablet screens
February 18, 2021 at 10:46 pm #263691Hi,
For the pages, set your Default Page Layout in Appearance > Customize > Page Layout. See – https://share.getcloudapp.com/kpu76ZRJ.
For blog posts, set your Default Post Layout in Appearance > Customize > Blog Posts > Single Post Layout. See – https://share.getcloudapp.com/12uoPlQ8.
These steps will display your sidebar in desktop down to mobile view.
To hide it in mobile view, add this CSS code:
@media (max-width: 768px) {.widget-area { display: none; } }Let me know how it goes.
Regards,
ChitoIn forum: Ascend ThemeTopic: Top bar area width adjust
Hello! Is there a way to adjust the width of the topbar widget area so that the text in the buttons doesn’t wrap? I was looking for a way to adjust the column width but am not seeing it in the css.
In forum: Kadence ThemeIn reply to: Display sidebar for tablet screens
February 18, 2021 at 6:03 am #263662Hello,
If you set it visible in the desktop view by doing this – https://share.getcloudapp.com/nOulvx2e, you’d be able to see it in tablet and mobile view as well.
However, if you’d want to hide it in the desktop view, you need to add this CSS – https://share.getcloudapp.com/12uovYYR, and it will leave a blank space that’s supposed to be for the sidebar.
I’ve made a screencast to show you how exactly it will look like – https://www.loom.com/share/91378085f9b2480daf59b4695610e5bd.
These are the CSS codes you need:
.widget-area {display: none;}
@media (max-width: 1024px) {.widget-area { display: block; } }
@media (max-width: 768px) {.widget-area { display: none; } }Let me know if this is what you want to achieve.
Regards,
ChitoIn forum: Kadence ThemeIn reply to: Display sidebar for tablet screens
In forum: Kadence ThemeIn reply to: Moving from Virtue to Kadence theme
In forum: Ascend ThemeIn reply to: Reposition Second Header Widget
In forum: Kadence ThemeIn reply to: Space between widgets on the sidebar
In forum: Kadence ThemeIn reply to: Space between widgets on the sidebar
February 7, 2021 at 4:18 am #263288Hi Hannah, Clayton and Ben,
Is there a way to update the CSS Code so that we can add a 1px line at the bottom of each section.
Please see the enclosed screenshot.
.primary-sidebar.widget-area .widget {
background: #e9f0f0;
padding: 10px;
}Thanks very much for all your help once again.
John and |Jaki
In forum: Ascend ThemeTopic: Sign up form
Hello,
On my site sevenlocs.com in the above Footer Widget Area I have the email sign up form with email only. I just realized that the imput box is white and the text is white as well. How can I change this so that the text imput is black and visible?
Can I post my mailchimp code so that you can let me know what I need to change on my end?
In forum: Ascend ThemeI initially thought this might be an issue with the cache not being flushed on my iPhone (even after explicitly clearing it), so I grabbed someone else’s phone that had never visited this site (it’s brand new) and the results are the same.
I’ve defined a custom logo for mobile and I’ve also enabled the mobile topbar with icon and widget area and even placed something in the widget area. None of this is showing up. I’ve set parameters for height and width for the mobile header, done everything I can think of. There are no plugins installed other than those that come with Ascend, and I’m running the latest version of everything.
I’m baffled!
In forum: Virtue ThemeTopic: Queries with Customization
February 2, 2021 at 12:25 am #263099Hello Team
Thank you so much for the wonderful theme that you have created. I have developed e-commerce website with Virtue theme. I have few queries with the customization. *Login to see link is my website.
Question 1:
I used Text widget for top bar widget area to display phone number and email. Phone number is displaying fine with android devices & desktop but for iphone phone number is not displaying. I am unable to find a solution for the same.Question 2: Top bar icons are displaying differently in homepage & rest of the pages. Not sure what is making this change
Question 3: I am using elementor for Home page. I would like to use same content as of Shop Page (*Login to see link in my home page products tab. Is there any way I could import shop page content to the Elementor Section.
Will be happy to provide any additional details if requested.
Regards
Ashokkumar MIn forum: Kadence ThemeIn reply to: Moving from Virtue to Kadence theme
Hi,
Thanks for reaching out!1. I am seeing this showing. What browser are you using?
2. When in the customizer, click the edit icon when hovering over the footer as seen in screenshot. Then you’ll see layout options for the footer, including the ability to set the container width.

3. That will pull from your color palette. If you’re wanting something different you can use css.
4. I would suggest using the Icon List block from Kadence Blocks. Then you can use a plugin like the following to add it to your widget area as a shortcode: https://wordpress.org/plugins/reusable-blocks-extended/
5. The same as #2, but for the header instead of the footer.
6. Sorry, can you clarify? Thank you!
7. From the customizer click the edit icon when hovering over the search then open the design tab. There you can add a border and extra padding to create the same look as your current theme.
8. Can you confirm you’re not overriding this setting in your edit pages?
9. Is your homepage a static page? You can remove the page title from your home edit page.
Hope this is helpful!
Best,
HannahIn forum: Membership ForumsIn reply to: Language switcher for mobiles / Kadence Theme
-
AuthorSearch Results




