Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #277043

    Hi again and thank you for your great support!! I’m almost ready to launch the online shop on my project but I need some help.
    1. I would like to change the background color of the “Tienda Online” button on the top menu. Is this possible? The rest will remain with the same color… just the Oniine Shop button.
    2. On the product display page I saw there is a deffined widget area for adding widgets called “Single Product Pages” Widget Area. The problem is that these widget area appears at the bottom of the product page. Is not a propper right sidebar… Would it be possible to change from bottom to right side of the product page?
    Thank you in advance and best reagrds,
    Nicolás

    #277314

    Hey nicomad!

    For #1 you can target that specific menu item by its ID:

    
    #menu-item-3123 {
        background: #cccccc;
    }
    #menu-item-3123 a {
        color:#fff;
    }
    

    That will make the link white (#fff) and the background gray (#ccc).

    For #2 yes it is possible though the code example is designed for a child theme: http://kriesi.at/documentation/enfold/change-woocommerce-single-product-page-layout/

    You’ll need to put that in the top of your functions.php file just after

    
    if(isset($avia_config['use_child_theme_functions_only'])) return;

    If you need further adjustment past that however you’ll need to look into a freelance developer as the code snippets we have like this aren’t covered under the support scope.

    Regards,
    Devin

    #277519

    Thank you very much Devin. I’ll try this solutions

    #277522

    One question… in wich file do I have to place this text? In css.style?
    #menu-item-3123 {
    background: #cccccc;
    }
    #menu-item-3123 a {
    color:#fff;
    }

    #277989

    Hi!

    You can add it to the child theme style.css file (at the very bottom) or insert it into the quick css field (Enfold > Theme Options)

    Best regards,
    Peter

Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.