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 'sidebar'

Home / Forums / Search / Search Results for 'sidebar'

Viewing 20 results - 1,021 through 1,040 (of 5,356 total)
  • Author
    Search Results
  • In forum: Ascend Theme

    In reply to: Content Offset

    #231042

    Hi Ben

    Its the sidebar, when I use a sidebar it shoots way right, same with single blog posts.

    In forum: Ascend Theme

    In reply to: Content Offset

    #231032

    Thank Ben,

    Is there any way to align this to the left of the page beside the sidebar instead of centre?

    Mark

    In forum: Ascend Theme
    #231006

    Hello again!

    I’m trying to offset my post list and individual blog posts to the left. The width of the site will be 1216PX and I would like the content for those pages aligned left beside the left sidebar and approximately 640PX in width.

    I’ve inputted the below CSS which sort of works.

    .postlist .post {
    padding-right: 357px;
    }
    .single-post div#ktmain {
    padding-right: 357px;
    }

    The problem is before collapsing to tablet view it gets very small when shrinking the browser. Is there any way to maintain the width before collapsing to other views?

    The site is digitalflightwire.com

    Thank you so much, I apologize for the possible multiple questions today, I am trying to make some big changes to the site.

    Cheers,

    Mark

    #230981

    Hey Mark,
    Try adding this to your custom css:

    @media (min-width: 992px) {
    aside#ktsidebar {
        width: 20%;
        padding-right: 10px;
    }
    div#ktmain.kt-sidebar {
        width: 80%;
        padding: 0;
    }
    }

    Hope that works for you!

    Hannah

    #230969

    Hello!

    I’m trying to reduce the width of the sidebar as well as spacing between the sidebar and content.

    If it matters, I’ve already inputted the below CSS to hide the sidebar in mobile and tablet views.


    @media
    (max-width: 992px) {
    aside#ktsidebar {
    display: none;
    }
    }

    The test page(s) is although this will be applicable to all other pages with a sidebar. Please note, the page width will be increased when fully implemented.

    Thank you so much, you guys are the best!

    Mark

    #230902

    i have a post without sidebar, i want it full length.
    at the end of the post i used this code

    [blog_posts items=”6″ orderby=”date” cat=”beaches”]
    [kad_modal btntitle=”some header” btncolor=”#ffffff” title=”some title” btncolor=”#ffffff”]

    [blog_posts items=”70″ orderby=”date” cat=”category-name”]

    [/kad_modal]

    the problem is that inside the modal the layout is like in the end of the post, related posts have the picture as a portait and not as a landscape which i s what i want.
    If i add a sidebar in the post it is ok, but is there any way to overcome this as i dont like to add a sidebar.

    Thank you

    #230867

    Hi there

    I’ve used this theme for several sites so I don’t know if I’m missing something obvious.

    I have added 6 pages as sub-menu items to the Services page. However, when I hover or even click on Services the submenu doesn’t appear.

    Also, as I’m asking you a question, how can I change the background colour of the Send button in the sidebar?

    http://www.wolverhampton-roofing.co.uk/

    thanks

    In forum: Ascend Theme

    In reply to: Blog archive offset

    #230642

    Hey Mark,
    In your blog edit page have you chosen to show a sidebar? That might be overriding your theme options settings.

    Hannah

    #230640

    Hello,

    I just noticed my blog archive is offset for a sidebar although in the Blog Category/Archive Defaults no sidebar layout is selected.

    For example –

    Any input would be appreciated!

    Cheers,

    Mark

    In forum: Ascend Theme
    #230084

    To get the exact widgets from your sidebar you would need to use a page builder. Have you worked with Elementor? https://wordpress.org/plugins/elementor/

    Hannah

    In forum: Ascend Theme
    #230081

    ok ive done this, but not happy with how it looks, i would like it to display like the widget in the sidebar, can we do this also?

    In forum: Ascend Theme
    #230080

    This css would hide your sidebar from mobile:

    @media (max-width: 992px) {
    .post-type-archive.woocommerce aside#ktsidebar {
        display: none;
    }
    }

    If you want to add content on top of your products on mobile simply add whatever content you want to your shop edit page. Then let me know when you’ve done this and I can provide css to hide it from desktop screens.

    Hannah

    In forum: Ascend Theme
    #230028

    Hi Hannah,

    Im having the same problem, could you help me with the css to remove the side bar from mobile and tablet view?

    And above you say to add sidebar content to the content area? could you explain this to me?

    In forum: Ascend Theme
    #229935

    Theme options > Default title options, scroll down to “Smaller Device Title Height” you have it set to 95

    Screen-Shot-2019-07-04-at-10-27-39-AM

    In your custom css you are missing a closing bracket:

    Screen-Shot-2019-07-04-at-10-29-07-AM

    You have this:

    @media (min-width: 992px){
        .kad-sidebar.col-lg-3 {
        width: 25%;
    }
    .main.col-lg-9 {
        width: 75%;
    }

    and it should be this:

    @media (min-width: 992px){
        .kad-sidebar.col-lg-3 {
        width: 25%;
    }
    .main.col-lg-9 {
        width: 75%;
    }
    }

    All the css that comes after is effected by that and only shows with a minimum height of 992 pixels.

    Ben

    In forum: Virtue Theme

    Topic: Topbar layout

    #229491

    Hi Team,

    A site I am replacing has this in the Virtue topbar (see screenshot).

    On mobile, it behaves nicely and remains in one row as long as it can:

    I previously achieved this by modifying header-topbar.php but would like to try and do it properly.
    Modification to em>header-topbar.php looked like this:
    <div class="col-md-6 topbar-left">
    <span style="float:left;">
    <h5>Phone: 0800-399-674</h5>
    </span>
    </div>
    <div class="col-md-6 topbar-right">
    <span style="float:right;">
    <div id="topbar-search" class="topbar-widget">
    <?php if(kadence_display_topbar_widget()) { if(is_active_sidebar('topbarright')) { dynamic_sidebar('topbarright'); } }
    else { if(kadence_display_top_search()) {get_search_form();} } ?>
    </div>
    </span>
    </div>

    Additions in style.css look like this:
    /* TOPBAR */
    /* Make sticky */
    #topbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    }
    .admin-bar #topbar {top:32px;} /* was 28px. Increased 31/7/18 */
    /* Styling */
    #topbar h5, #topbar a {color:#fff;}
    /* #topbar a:hover {color:#edcda1;}*/
    .headerclass {margin-top: 44px;} /* was 30px. Increased 31/7/18 */
    .topbar-right {padding-right:0px;}
    /* Increase size of search box */
    #topbar-search form {margin:2px 0px;}
    #topbar-search input[type="text"] {height:40px;font-size:18px;}
    #topbar-search .search-icon {height:40px;width:40px;font-size:18px;}

    @media
    (max-width: 462px){
    #topbar .topbar-right > span {float: left !important;}
    }

    Please could you advise how to go about this without modifying template files?
    Thanks,
    Phil.

    #229479

    Hey Joseph,
    I’m located in Missoula, Montana. I speak English 🙂

    Ever time you wrote: “portfolio page” not portfolio posts. I tried to explain how those two can be different. I’m sorry my explanation didn’t make sense.

    From your topic title, Create custom sidebar – page template not found

    And that you linked to documentation about pages and a specific page template, it seemed like a good idea to clarify before I wrote a custom widget for you since the code would have to be different.

    Step 1: download this plugin I created for you: https://www.kadencewp.com/wp-content/uploads/2019/06/kadence-portfolio-list-widget.zip

    Step 2: install this plugin on your site by going to plugins > add new.

    Step 3: Go to theme options > misc settings and create a new sidebar.

    Step 4: go to appearance > widgets and add the “ascend: portfolio list” widget into that newly created sidebar widget area.

    Step 5: Assign that sidebar to your single portfolio posts.

    Please let me know if that accomplishes want you want.

    Ben

    #229475

    > You did not clarify if you are talking about pages or you talking about single portfolio posts?

    What are you talking about? I keep using the word Portfolio over and over. I have not referred to pages. I keep saying that I want to create a sidebar on the Portfolio. This has absolution nothing to do with WordPress Pages. Are you using some sort of translation program? I can’t possible type a more clearly worded message than my last one.

    > – I’m using the Ascend Them
    > – Ascend has a type of item called “Portfolio”
    > – There is an attribute/field on Portfolio items called “Portfolio Type”. I have two types and all of my portfolio items are in one of these two types.
    > – I want a custom sidebar that only shows on the Portfolio page, nowhere else on the site
    > – I want the content of that sidebar to be a simple list (with links) of all of the other portfolio items for same type as the portfolio record.

    If this can’t be done with the existing features of the theme that please post information about how I can achieve my goal by wring a function or plugin.

    > I’m sorry it’s making you so frustrated and upset.

    I’m using emphasis for clarity only as you seem to have a hard time understanding what I’m posting. I’m not sure if we are speaking different languages or if something else is going on, but I write a simple sentence and you seem to be confused about every word.

    Once again for clarity: I want to create a custom sidebar that shows portfolio items that contain a specific portfolio tag value. I want that sidebar to be displayed on the portfolio item/page (the webpage for the portfolio item, not the entity that WordPress uses to refer to Pages).

    If you can’t understand what I need to do, if you can’t post some simple instructions on how to accomplish this, then please stop responding.

    I’ve been working with this theme for about a week and I was happy and excited to give you folks some money. Now that I’ve dealt with your customer service process I regret that decision.

    #229470

    Hey,
    The page you linked to was out of date, but it was not and did not have anything to do with being able to edit a sidebar on a single page. It was only a way to assign a sidebar. The reason it’s out of date is simply that you don’t need to use a template to be able to assign a sidebar. You can do it with any page.

    Nothing was removed only improved upon.

    I am doing my best to help you. I’m sorry it’s making you so frustrated and upset.

    There is no widget that does what you are asking. I would be happy to create a widget for you in a custom child theme or plugin.

    You did not clarify if you are talking about pages or you talking about single portfolio posts?

    You keep writing page but it kind of sounds like you actually mean portfolio posts.

    A page is something you create through the admin under “pages” and there you can assign a portfolio template to output a portfolio page: http://themes.kadencethemes.com/ascend-premium-4/projects/

    A single portfolio post is where you edit the post under the portfolio menu in your admin and it outputs just the content of that one portfolio post: http://themes.kadencethemes.com/ascend-premium-4/portfolio/fabric-bag/

    #229456

    > What goes inside of sidebars are controlled in the appearance > widgets area of your admin, they are not controlled in the page editing screen. I’m not aware of any theme, plugin that changes that.

    The only reason I was trying to do what was because of the document I linked to on your site. The reason I purchased the premium version of the theme is because I found that page with instructions through a simple Google search. It’s kind of insulting that as soon as you take my money you tell me that the document is out of date and should be deleted. How much of the rest of your documentation is out of date?

    I don’t really care how this is done, I just want to accomplish a simple goal. I have described it three times now but I guess you need me to spell every single detail out.

    – I’m using the Ascend Them
    – Ascend has a type of item called “Portfolio”
    – There is an attribute/field on Portfolio items called “Portfolio Type”. I have two types and all of my portfolio items are in one of these two types.
    – I want a custom sidebar that only shows on the Portfolio page, nowhere else on the site
    – I want the content of that sidebar to be a simple list (with links) of all of the other portfolio items for same type as the portfolio record.

    #229451

    Hey Joseph,

    I’m sorry we haven’t been able to connect. I’m sure we can help. Please give us grace as we try to get on the same page with what you want.

    What goes inside of sidebars are controlled in the appearance > widgets area of your admin, they are not controlled in the page editing screen. I’m not aware of any theme, plugin that changes that.

    BUT, if you want to use page builder by siteorigin you can fake a sidebar by creating a two column layout, one column for your content and the other for your “sidebar” where you can place whatever you want into that part of your page.

    Is that what you are looking for?

    Or if instead do what to use a sidebar you can add conditional loading for specific widgets allowing you to select which widgets you show on which pages, see this plugin: https://wordpress.org/plugins/widget-options/

    This is all assuming you have a widget in mind that you want to add, there is no theme widget that outputs a list of portfolio items based on portfolio type. The closest would be the “ascend: post grid” which can output a small grid of portfolio posts based on category. So perhaps you are not asking about sidebars at all but asking how to create this widget? If so you will need to use a child theme and code it in, I can help with that if you send me a link to an example of how you want it to look.

    This also assumes you are talking about “pages” and not the single portfolio posts. The language around that can be tricky and confusing. I have been assuming you are asking about portfolio pages, for example http://themes.kadencethemes.com/ascend-premium-4/projects/

    And not portfolio posts for example http://themes.kadencethemes.com/ascend-premium-4/portfolio/fabric-bag/

    Further clarification from you will help me greatly and I know we can help you get what you want.

    Ben

Viewing 20 results - 1,021 through 1,040 (of 5,356 total)