New Landing How can we help? Themeforest Theme Support Neighborhood Change position of product name and remove breadcrumb on product detail page

Viewing 9 posts - 1 through 9 (of 9 total)
  • #308672
    gflwrg
    Member
    Post count: 113

    Hello,

    I have been battling with removing title and breadcrumbs from product pages. I will like to have the titles on detail page in UPPERCASE as well as moving the title to the right hand side.

    Could really do with some assistance please.

    Attachments:
    You must be logged in to view attached files.
    #308676
    gflwrg
    Member
    Post count: 113

    Would really like the product titles to sit above the price and also forced in uppercase. ๐Ÿ™

    #308682
    David Martin – Support
    Moderator
    Post count: 20834

    You can change the single shop heading, using this:

    .single-product .page-heading {
        display: none;
    }
    .woocommerce div.product .entry-title {
        font-size: 24px;
        line-height: 34px;
        display: block;
        float: right;
        max-width: 620px;
        width: 100%;
    }

    Ref: http://www.w3schools.com/cssref/pr_text_text-transform.asp

    #308712
    gflwrg
    Member
    Post count: 113

    Hello David, many thanks for your swift response. I used the code you provided above but it makes the product title disappear.

    How can I make the product title show above the price please? Something is preventing it from showing up.

    #308717
    David Martin – Support
    Moderator
    Post count: 20834

    The code I provide does do that, try amending to this:

    .single-product .page-heading {
        display: none;
    }
    .woocommerce div.product .entry-title {
        font-size: 24px;
        line-height: 34px;
        display: block !important;
        float: right;
        max-width: 620px;
        width: 100%;
    }
    #308718
    Rui Guerreiro – SUPPORT
    Keymaster
    Post count: 25779

    Replace this code

    .woocommerce div.product .entry-title {
        font-size: 24px;
        line-height: 34px;
        display: block;
        float: right;
        max-width: 620px;
        width: 100%;
    }

    by this one(just added the !important in the display: block)

    .woocommerce div.product .entry-title {
        font-size: 24px;
        line-height: 34px;
        display: block!important;
        float: right;
        max-width: 620px;
        width: 100%;
    }

    -Rui

    #308720
    gflwrg
    Member
    Post count: 113

    Thank you David it worked like a charm! ๐Ÿ˜€

    #308721
    gflwrg
    Member
    Post count: 113

    Thanks Rui, you’re a star!

    #308722
    Rui Guerreiro – SUPPORT
    Keymaster
    Post count: 25779

    Glad it’s sorted.

    -Rui

Viewing 9 posts - 1 through 9 (of 9 total)

You must be logged in and have valid license to reply to this topic.

License required for one of the following items
Login and Registration Log in · Register