Topic Resolution: Not Resolved
    Denzel Chia
    Moderator
    Posts: 2656
    September 9, 2015 at 11:12 am #20538

    Hi,

    Please use the following codes in Theme Options -> Custom CSS

    This will set the image width to 500px, change according to your preference.
    .single-product #content div.product div.images img {
    width: 500px !important;
    }

    This will decrease your product title font size to 25px, change according to your preference.
    .single-product .product_title.entry-title {
    font-size: 25px !important;
    }

    The following code will reduce the width of the container for product title, product price.. etc. Notice the margin-left, that is for setting the gap between image and product title container.

    .single-product .summary-container {
    margin-left: 100px;
    width: 250px !important;
    }

    The combine result screenshot of the above codes. http://prntscr.com/8ea5dv

    Thanks!

    Graham Newell
    Spectator
    Posts: 104
    September 9, 2015 at 11:29 am #20540

    Excellent, thanks Denzel.

    Graham Newell
    Spectator
    Posts: 104
    September 9, 2015 at 11:31 am #20541

    Can you tell me. Is it worth me buying a Woocommerce layout plugin or will all the setting be over written by the theme?

    http://codecanyon.net/item/woocommerce-products-layouts/7384574

    For example.

    Graham Newell
    Spectator
    Posts: 104
    September 9, 2015 at 11:42 am #20542

    Me again, but nearly there I think.

    When I add a product to the cart a box appears to tell me that I have added a product. How can I change the background colour of this box? It’s too light to see. Is there a list of these variable so I can work out what I want to change myself?

    G

    Denzel Chia
    Moderator
    Posts: 2656
    September 9, 2015 at 11:58 am #20543

    Hi,

    Please use the following codes in your Theme Options -> Custom CSS

    .woocommerce-message {
    background: #999999 none repeat scroll 0 0 !important;
    border: 1px solid #999999 !important;
    }

    Result screenshot. http://prntscr.com/8eagiu

    Sorry, I have never use that plugin you mention, in fact, I have never use any of the woocommerce premium plugins. Sorry, I have no idea if it will work with our theme.

    Thanks!

    Graham Newell
    Spectator
    Posts: 104
    September 9, 2015 at 12:50 pm #20545

    OK, that’s great.

    One more thing . . . . sorry.

    How can I display a grid of products (same as a category grid) on the home page. I want to display a random selection, or the most popular, or the latest as soon as the page comes up.

    Thanks Denzel, I appreciate your patience.

    Graham Newell
    Spectator
    Posts: 104
    September 9, 2015 at 6:29 pm #20550

    OK, All I need now is to be able to move the product page title nearer to the product image. The container seems to be wider than the image inside it.

    Ta.

    Denzel Chia
    Moderator
    Posts: 2656
    September 10, 2015 at 7:23 am #20563

    Hi,

    Sorry for the bold text in my previous reply, it was a HTML error, I forgot to close the strong tag. I forgotten to take a look after I posted.
    I wasn’t loosing my patience and shouting. 🙂

    To display a grid of products, you can use woocommerce shortcode recent_products

    For example.

    [recent_products per_page="12" columns="3" orderby="date" order="desc"]

    For more information. Please read the following article http://docs.woothemes.com/document/woocommerce-shortcodes/#section-5

    For the page title, please use the following codes.
    It should affect only desktop monitor.
    Increasing -100px will move the title further to the left.

    @media screen and (min-width: 768px){
    .product_title.entry-title {
    left: -100px;
    position: relative;
    width: 500px !important;
    }
    }

    Thanks!
    Denzel

    Graham Newell
    Spectator
    Posts: 104
    September 10, 2015 at 10:37 am #20579

    Thanks Denzel,

    PS. Can I extent my online support with Alora and Evolve?

    PPS. Cam I have a different style menu with Alora than the one I have without changing the header layout to a pre-designed style?

    G.

    Denzel Chia
    Moderator
    Posts: 2656
    September 10, 2015 at 9:24 pm #20588

    Hi,

    If you need customization, Please contact us via this page https://theme4press.com/theme-customization-service/ or hire a developer from http://jobs.wordpress.net/

    Thanks!