Announcement

Collapse
No announcement yet.

Request to center come image

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Request to center come image

    Hi all,

    I had just install a new feature in my web site, it s the "BestSellingList"
    the picture is here :



    I m looking for a way to center my image with the
    HTML Code:
    style="text-align:center"
    parameter in my code here :

    Code:
    <p class="text_product_small_info_heading"><actinic:variable formatting="font(Size|10|Color|000000)" encoding="actinic" name="ProductName" /></p>
       <div class="product_image_cost">style="text-align:center"
          <actinic:block if="%3cactinic%3avariable%20name%3d%22ProductImageFileName%22%20%2f%3e%20%21%3d%20%22%22">
    			
    				<a href="<actinic:variable name="SearchCGIURL" />?PRODREF=<actinic:variable Name="ProductID" />&amp;NOLOGIN=1<actinic:block if="%3cactinic%3avariable%20name%3d%22IsHostMode%22%20%2f%3e">&amp;SHOP=<actinic:variable name="ShopID" /></actinic:block>">
    				<img style="border: 0;" src="<actinic:variable name="ProductImageFileName" />" width="150" alt="<actinic:variable name="ProductName" encoding="strip"/>"/>
    			</a>
          </actinic:block>
       </div>
       <div>
    		<!-- fixed width design - left aligned 
    
          <p class="text_product_small_info_price">
          <Actinic:PRICES PROD_REF="<actinic:variable Name="ProductID" />" RETAIL_PRICE_PROMPT="<Actinic:Variable Name="ProductPriceDescription"/>">
             <actinic:variable value="Marketing Price List" name="PriceListRetail" />
          </Actinic:PRICES>
          </p>-->
          <p class="text_product_small_info"><actinic:variable name="ProductDescription" /><br>
          <a href="<actinic:variable name="SearchCGIURL" />?PRODREF=<actinic:variable Name="ProductID" />&amp;NOLOGIN=1<actinic:block if="%3cactinic%3avariable%20name%3d%22IsHostMode%22%20%2f%3e">&amp;SHOP=<actinic:variable name="ShopID" /></actinic:block>"></a></p>
       </div>
    After that my second problem is about the space for the short description product, because the description is cut by the sqare like here :

    I had put a red circle to show u the problem



    If someone could give me the correct way to input those code

    Thanks a lot

    Arnaud
    --
    IDOLS Rock Merchandising

    Spécialiste de la vente de produits et mode US/UK depuis 1986 sur Avignon, PACA.
    Adresse : 52 rue carnot 84000 AVIGNON FRANCE
    Tel : 04 90 82 24 41. Ouvert du mardi au samedi de 10H/12H - 15H/19H

    Site internet :
    http://www.idols.fr
    http://www.lonsdalefrance.fr
    http://www.westcoastchoppers.fr

    Vous y trouverez les marques :
    Fred Perry, Lonsdale, Dr Martens, West Coast Choppers, Guinness, New Rock, Black Label Society, Hardcore United...

    #2
    Hi Arnaud,

    Code:
    <div class="product_image_cost">style="text-align:center"
    The above line in your code should be changed to:

    Code:
    <div class="product_image_cost" style="text-align:center">
    ********************
    Tracey
    SellerDeck

    Comment

    Working...
    X