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

Home / Forums / Search / Search Results for 'Page'

Viewing 20 results - 32,841 through 32,860 (of 53,646 total)
  • Author
    Search Results
  • In forum: Virtue Theme
    #97962

    Hello
    Im working on this site http://www.piese-auto.info
    On home page i used image menu items to create 4 buttons to products categories.
    When i go with my mouse over the buttons title (pompe de injectie, injectoare…) the color change from red to black.
    All is ok but i want this change when i go with my mouse over the button, not only when i go over title.
    Ty for help.

    Catalin

    #97959

    Hi

    I’m adding a new products to a new category products, but the page is not showing the products (the product link is working if you hover the mouse).

    Take a look:

    An older category the products is shown normally.

    Take a look:

    The products (older and newer) have the same configuration.

    Can anyone help me ?

    Thanks

    #97958

    Hi

    I’m adding a new products to a new category products, but the page is not showing the products (the product link is working if you hover the mouse).

    Take a look:

    An older category the products is shown normally.

    Take a look:

    The products (older and newer) have the same configuration.

    Can anyone help me ?

    Thanks

    In forum: Virtue Theme

    Topic: Center Vimeo

    #97932

    Hi, is there a way to center the video inserted with the kad_vimeo shortcode? I tried to put a text-align:center around it, but it had no effect.

    <p style=”text-align: center;”>[kad_vimeo url=” width=”640″ height=”360″ maxwidth=”800″]</p>

    I have the video in a Visual Editor inside a Page Builder row.

    Thanks!

    #97926

    Also a thing about rev slider templates. You have to purchase a direct license from rev slider if you want access to there “premium” features. But you can use this page to download some templates to try out: https://revolution.themepunch.com/free-slider-exchange/

    Ben

    #97925

    Just so you know the best option is to use pinnacle for a layout like this since it’s designed specifically for this type of thing.

    Here is some css to force it on the home page:

    .home #kad-banner {
        position: absolute;
        width: 100%;
        top: 0;
        z-index: 1000;
    }
    .home #kad-banner-sticky-wrapper {
        height: 0 !important;
    }

    Ben

    In forum: Virtue Theme

    In reply to: Site Border Colors

    #97910

    Hi Ben, I’ve tried this code to get the “Latest from the blog” borders around the article’s blog previews (in home page) transparent
    but I couldn’t achieve my goal. Is there a different target name for that border in CSS code?

    Simone

    In forum: Pinnacle Theme

    In reply to: Kadence Import Tool

    #97907

    Hi Hannah,

    No worries, I will follow the tutorial above.

    What I mean is that when I use the import tool, that will set all my pages to the demo immediately, I do not want it to do this on the live website.

    I need this to show for me as I will need to edit pages/pictures to suit before wanting to make the premium theme live to customers.

    If I was to set all the premium theme up with images/pages on another website/server which I am using to test things, do you know if it would be possible transfer that over to my live website?

    Thanks

    In forum: Pinnacle Theme

    In reply to: Kadence Import Tool

    #97905

    Gotcha! All your theme options and posts/pages will be saved upon upgrading. As long as you have no directly updated the theme files you should be golden. Just follow the above tutorial 🙂

    Hannah

    In forum: Virtue Theme

    In reply to: Portfolio images

    #97886

    Hey Allan,
    In your portfolio post edit page under Portfolio Post Options have you set a Max Image/Slider Height and Width?

    Hannah

    #97878

    Hi there

    I have purchased the virtue premium theme but when
    I add the icon with variations code to the custom css classes box they disappear.
    It works fine if I add the simple code like “icon-home”
    but not with “icon icon=icon-alarm size=40px style=square color=#fff background=#444”
    or any of the other bits of code supplied on the virtue theme icon page.
    Here is the link to my site

    Thanks 🙂

    In forum: Virtue Theme
    #97877

    Dear All,

    would like to know if where is a possibility to make the LOGO on the top of my Homepage over the complete screan

    Thanks for helping

    Jenny

    #97875

    Hi,

    We would like to be able to click on a product thumbnail on a single product page and it will replace the main gallery image. I know it is possible as the colour variations change the main image depending on what is selected.

    Any help would be great.

    Thanks,

    Marcus

    #97874
    This reply has been marked as private.
    #97873

    Hi Ben, Hannah, Kevin

    I’m using a plugin called “Powie’s Random Post shortcode” to generate a random post each time a link is clicked.

    The posts were created using PageBuilder.
    The random posts are filtered by category.

    I’ve got two issues:

    1. When the random post loads via the shortcode on a certain page, the layout of the random post isn’t as it should be.

    2. The post title is showing – I don’t want the post titles to show. (I’ve hidden the post titles by adding this code to the advanced settings):
    .single-article .post header {display: none;}
    .page-header {
    display: none;
    }

    In forum: Virtue Theme
    #97871

    Hi there
    I designed my portfolio images to be 350 px square and they used to display correctly at the top of my posts but for some reason they are now displaying at full page width. I don’t know when this happened but it could have been when I updated the theme. I can’t seem to find the portfolio image/slider height settings that are shown in the documentation. A sample page is and I need to fix this urgently because potential clients are looking at my site.
    Thank you
    Allan

    In forum: Virtue Theme

    In reply to: Structured Data Errors

    #97863

    Hey,
    Thats not how this kind of thing works. It’s not meta tags that you just add to a page. Structured content is a organized why to define for google search what to use when displaying page as a news article or some other search result item (aside from a normal page). For there to be no “errors” in your structured data you have to have all the items google wants as actual content for the page in question.

    I really suggest reading about googles structured content. It could be really helpful for you to talk with an SEO expert as well since this is more in there arena and you might find that you actually don’t want to abide by the structured data rules.

    Ben

    #97862

    Hey,

    I’m not seeing the slider showing that way? can you send a screen shot?

    http://postimage.org/

    I see an empty slider on the shop page (theme options > shop settings)?

    Here is in the css for the footer:

     .footernav ul li a,.footercredits p {
        font-size: 14px;
    }

    Ben

    #97861

    It’s not possible unless you were to code it out yourself.

    Adding a sidebar to type pages will require a child theme. You will need to add a function into the functions.php file of the child theme.

    function kad_sidebar_portfolio_type($sidebar) {
      if (is_tax( 'portfolio-type' )) {
        return true;
      }
      return $sidebar;
    }
    add_filter('kadence_display_sidebar', 'kad_sidebar_portfolio_type');

    Ben

    #97860

    Breadcrumbs appear with the page title (which has a background image but is not a slider). If you override the page title with a slider then the breadcrumb function isn’t called. So you can add into the page content using this shortcode which you can place in the content area.

    [kt_breadcrumbs]

    Ben

Viewing 20 results - 32,841 through 32,860 (of 53,646 total)