• Resolved diegojock

    (@diegojock)


    Hi!

    First of all, congratulations! This is an amazing plugin.
    How can I align the brand image banner to the left, with the description on its right?

    Can you please help me?

    Regards,

    Diego

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter diegojock

    (@diegojock)

    Array
    (
    [home_url] => https://diegojock.com/editoraveneta
    [site_url] => https://diegojock.com/editoraveneta
    [version] => 3.1.2
    [wp_version] => 4.8.1
    [wp_multisite] =>
    [wp_memory_limit] => 128M
    [wp_debug_mode] =>
    [wp_cron] => 1
    [language] => pt_BR
    [server_info] => Apache
    [php_version] => 5.6.31
    [php_post_max_size] => 128M
    [php_max_execution_time] => 600
    [php_max_input_vars] => 3000
    [max_upload_size] => 134217728
    [default_timezone] => UTC
    [theme] => Array
    (
    [name] => Wowmall Child
    [version] => 1.0.2
    [parent_theme] => Wowmall
    )

    [active_plugins] => Array
    (
    [0] => redux-framework/redux-framework.php
    [1] => Ultimate_VC_Addons/Ultimate_VC_Addons.php
    [2] => admin-menu-editor/menu-editor.php
    [3] => akismet/akismet.php
    [4] => all-in-one-seo-pack/all_in_one_seo_pack.php
    [5] => backwpup/backwpup.php
    [6] => contact-form-7/wp-contact-form-7.php
    [7] => content-views-query-and-display-post-page/content-views.php
    [8] => customer-reviews-woocommerce/ivole.php
    [9] => duplicator/duplicator.php
    [10] => envato-market/envato-market.php
    [12] => foogallery/foogallery.php
    [13] => hlogin/hlogin.php
    [14] => instagram-feed/instagram-feed.php
    [15] => js_composer/js_composer.php
    [17] => loco-translate/loco.php
    [18] => mailchimp-for-wp/mailchimp-for-wp.php
    [19] => most-and-least-read-posts-widget/most_and_least_read_posts.php
    [20] => perfect-woocommerce-brands/main.php
    [21] => print-invoices-packing-slip-labels-for-woocommerce/wf-woocommerce-packing-list.php
    [22] => regenerate-thumbnails/regenerate-thumbnails.php
    [23] => revslider/revslider.php
    [24] => show-hidecollapse-expand/bg_show_hide.php
    [25] => the-events-calendar/the-events-calendar.php
    [26] => w3-total-cache/w3-total-cache.php
    [27] => wc-product-subtitle/wc-product-subtitle.php
    [28] => woo-order-export-lite/woo-order-export-lite.php
    [29] => woo-product-bundle/index.php
    [30] => woocommerce-boleto/woocommerce-boleto.php
    [31] => woocommerce-correios/woocommerce-correios.php
    [32] => woocommerce-extra-checkout-fields-for-brazil/woocommerce-extra-checkout-fields-for-brazil.php
    [33] => woocommerce-gateway-paypal-express-checkout/woocommerce-gateway-paypal-express-checkout.php
    [34] => woocommerce-pagseguro/woocommerce-pagseguro.php
    [35] => woocommerce/woocommerce.php
    [36] => wowmall-icon-importer/wowmall-icon-importer.php
    [37] => wowmall-shortcodes/wowmall-shortcodes.php
    [38] => wp-store-locator/wp-store-locator.php
    )

    [pwb_options] => Array
    (
    [wc_pwb_admin_tab_brand_single_position] => before_title
    [old_wc_pwb_admin_tab_slug] => autores
    [wc_pwb_notice_plugin_review] => 0
    [wc_pwb_admin_tab_slug] => autores
    [wc_pwb_admin_tab_brand_desc] => yes
    [wc_pwb_admin_tab_brands_in_loop] => brand_link
    [wc_pwb_admin_tab_brands_in_single] => brand_link
    [wc_pwb_admin_tab_brand_logo_size] => medium
    )

    )

    Plugin Contributor titodevera

    (@titodevera)

    Hi Diego.

    You can do it with some CSS rules. Simple adjust the widths as you like:

    
    @media all and (min-width: 768px){
      
      .pwb-brand-banner-cont:after{
        content: "";
        display: table;
        clear: both;
      }
      .pwb-brand-banner-cont{
        margin-bottom: 20px;
      }
      .pwb-brand-banner{
        width: 35%;
        float: left;
      }
      .pwb-brand-description{
        width: 60%;
        float: right;
      }
      
    }
    

    Thanks for using PWB ??

    Thread Starter diegojock

    (@diegojock)

    Thanks! You are amazing!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Align brand banner to the left with texto on the right’ is closed to new replies.