mosher27 Posted August 25, 2012 Share Posted August 25, 2012 (edited) I need help removing the vertical lines separating "login", "your account", and "cart" in the userinfo module. I cannot find where these are in the code. <!-- Block user information module HEADER --> <div id="header_user"> <ul> <li id="header_user_info"> {l s='Welcome' mod='blockuserinfo'}, {if $cookie->isLogged()} <span>{$cookie->customer_firstname} {$cookie->customer_lastname}</span> <a href="{$link->getPageLink('index.php')}?mylogout" class="button" title=>{l s='Log out' mod='blockuserinfo'} {else} <a href="{$link->getPageLink('my-account.php', true)}" class="button" title=>{l s='Log In' mod='blockuserinfo'}</a></li> {/if} <li id="your_account"><a href="{$link->getPageLink('my-account.php', true)}"class="button" title={l s='Your Account' mod='blockuserinfo'}">{l s='Your Account' mod='blockuserinfo'}</a></li> <li id="shopping_cart"> {if !$PS_CATALOG_MODE} <a href="{$link->getPageLink("$order_process.php", true)}" class="button" title="{l s='Your Shopping Cart' mod='blockuserinfo'}">{l s='My Cart' mod='blockuserinfo'}</a> <span class="ajax_cart_quantity{if $cart_qties == 0} hidden{/if}">{$cart_qties}</span> <span class="ajax_cart_product_txt{if $cart_qties != 1} hidden{/if}">{l s='product' mod='blockuserinfo'}</span> <span class="ajax_cart_product_txt_s{if $cart_qties < 2} hidden{/if}">{l s='products' mod='blockuserinfo'}</span> {* {if $cart_qties >= 0} <span class="ajax_cart_total{if $cart_qties == 0} hidden{/if}"> {if $priceDisplay == 1} {assign var='blockuser_cart_flag' value='Cart::BOTH_WITHOUT_SHIPPING'|constant} {convertPrice price=$cart->getOrderTotal(false, $blockuser_cart_flag)} {else} {assign var='blockuser_cart_flag' value='Cart::BOTH_WITHOUT_SHIPPING'|constant} {convertPrice price=$cart->getOrderTotal(true, $blockuser_cart_flag)} {/if} </span> {/if} *} <span class="ajax_cart_no_product{if $cart_qties > 0} hidden{/if}">{l s='(0)' mod='blockuserinfo'}</span> {/if} </li> </ul> </div> <!-- /Block user information module HEADER --> Edited August 25, 2012 by mosher27 (see edit history) Link to comment Share on other sites More sharing options...
fernandokerber Posted August 26, 2012 Share Posted August 26, 2012 I need help removing the vertical lines separating "login", "your account", and "cart" in the userinfo module. I cannot find where these are in the code. <!-- Block user information module HEADER --> <div id="header_user"> <ul> <li id="header_user_info"> {l s='Welcome' mod='blockuserinfo'}, {if $cookie->isLogged()} <span>{$cookie->customer_firstname} {$cookie->customer_lastname}</span> <a href="{$link->getPageLink('index.php')}?mylogout" class="button" title=>{l s='Log out' mod='blockuserinfo'} {else} <a href="{$link->getPageLink('my-account.php', true)}" class="button" title=>{l s='Log In' mod='blockuserinfo'}</a></li> {/if} <li id="your_account"><a href="{$link->getPageLink('my-account.php', true)}"class="button" title={l s='Your Account' mod='blockuserinfo'}">{l s='Your Account' mod='blockuserinfo'}</a></li> <li id="shopping_cart"> {if !$PS_CATALOG_MODE} <a href="{$link->getPageLink("$order_process.php", true)}" class="button" title="{l s='Your Shopping Cart' mod='blockuserinfo'}">{l s='My Cart' mod='blockuserinfo'}</a> <span class="ajax_cart_quantity{if $cart_qties == 0} hidden{/if}">{$cart_qties}</span> <span class="ajax_cart_product_txt{if $cart_qties != 1} hidden{/if}">{l s='product' mod='blockuserinfo'}</span> <span class="ajax_cart_product_txt_s{if $cart_qties < 2} hidden{/if}">{l s='products' mod='blockuserinfo'}</span> {* {if $cart_qties >= 0} <span class="ajax_cart_total{if $cart_qties == 0} hidden{/if}"> {if $priceDisplay == 1} {assign var='blockuser_cart_flag' value='Cart::BOTH_WITHOUT_SHIPPING'|constant} {convertPrice price=$cart->getOrderTotal(false, $blockuser_cart_flag)} {else} {assign var='blockuser_cart_flag' value='Cart::BOTH_WITHOUT_SHIPPING'|constant} {convertPrice price=$cart->getOrderTotal(true, $blockuser_cart_flag)} {/if} </span> {/if} *} <span class="ajax_cart_no_product{if $cart_qties > 0} hidden{/if}">{l s='(0)' mod='blockuserinfo'}</span> {/if} </li> </ul> </div> <!-- /Block user information module HEADER --> Hi.. Can you post your site url?\ I dont know what vertical lines youre talking about but it seems to be a CSS question. Have you ever tried to modify the Global.css file? Search for "blockuserinfo" or maybe "header_user" Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now