• Hi!

    First of all there are some strange things going on:
    – When opening my website on Internet Explorer (instead of Chrome) the pictures and logo are very unsharp
    – Second of all, the footer doesn’t show. In Internet Explorer it doens’t show at all (it has a red written logo with the words ‘Rich City Fortune’. In Chrome it shows but in the middle of the page, very weird.

    Then on to the changes I would like to make:
    – When you click a product, like the pants, above the red word description you can see a white version of the word above it. How can I delete that?
    – When you click about or contact, I want the text to start at the same height as ‘SHOP’, not at the complete top of the page
    – In another topic someone already send me some code to get my menu items left aligned instead of centre aligned, but that got them a bit to close to the left border. I would like the left side of logo and the left side of the menu items to be aligned, if possible!

    Hope someone can me help me :):)

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hey,
    1. In your theme options, > shop settings turn off the theme image ratio for products and then in your woocommerce customizer settings change the image size to 600x600px that will make it work where you have set the product images to be so large.

    2. In your theme options > custom css you are adding custom CSS to force the footer into a absolute position on your page. Remove this:

    @media (min-width: 992px) {
    html, body {
    height: 100%;
    background: #fff;
    }
    html body.wide #wrapper.container {
    min-height: 100%;
    position: relative;
    padding-bottom: 88px !important;
    }
    #containerfooter {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    }
    }

    Or change it to this:

    @media (min-width: 992px) {
    html, body {
    height: 100%;
    background: #fff;
    }
    html body #wrapper.container {
    min-height: 100%;
    position: relative;
    padding-bottom: 88px !important;
    }
    #containerfooter {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    }
    }

    3. I don’t see this? Can you send a screen shot?

    4. I don’t see this? Can you send a screen shot?

    5. you can add this css:

    .kad-relative-vertical-content ul.sf-menu.sf-vertical {
        margin-left: -5px;
    }

    In the furture it’s really helpful if you post in the correct theme forms, it appears you are using ascend so these:

    https://wordpress.org/support/theme/ascend/

    Thanks!

Viewing 1 replies (of 1 total)

The topic ‘Multiple questions about small alterations website’ is closed to new replies.