Important Notice from AspDotNetStorefront
It is with dismay that we report that we have been forced, through the action of hackers, to shut off write-access to this forum. We are keen to leave the wealth of material available to you for research. We have opened a new forum from which our community of users can seek help, support and advice from us and from each other. To post a new question to our community, please visit: http://forums.vortx.com
Results 1 to 7 of 7

Thread: Changing Product description text on the product pages

  1. #1
    kevin@mkbtechnology.com is offline Junior Member
    Join Date
    Jan 2012
    Posts
    8

    Smile Changing Product description text on the product pages

    I'm trying to change the product description text 'increase font size, make bold' on the product page. I know I can do this on each of the products in the product management page with the built-in HTML editor. But I want to change all the product descriptions to the same thing and don't want to have to do each one. Anybody know where I can do this??

    thanks

  2. #2
    BFG 9000 is offline Senior Member
    Join Date
    Oct 2006
    Location
    South UK
    Posts
    882

    Default

    Should be fairly straightforward to edit the css.

    If you want to post a link to your site I'll take a look.



    TTFN

    BFG

  3. #3
    kevin@mkbtechnology.com is offline Junior Member
    Join Date
    Jan 2012
    Posts
    8

    Default www.eoptionsonline.com

    Yes, I agree... I've made changes there for the product title and price, but just have had no luck finding or where to add description.

  4. #4
    BFG 9000 is offline Senior Member
    Join Date
    Oct 2006
    Location
    South UK
    Posts
    882

    Default

    Can you point me to a product that actually has a description?

  5. #5
    kevin@mkbtechnology.com is offline Junior Member
    Join Date
    Jan 2012
    Posts
    8

  6. #6
    BFG 9000 is offline Senior Member
    Join Date
    Oct 2006
    Location
    South UK
    Posts
    882

    Default

    Refurbished HP Proliant DL580G2 1.4Ghz-512
    Condition: RF
    Is that the description?

    If so - you'll need to modify your xmlpackage.

    Look for something like this :-
    C#/VB.NET Code:
    <xsl:value-of select="$pDescriptiondisable-output-escaping="yes"/> 
    & replace it with this :-
    C#/VB.NET Code:
    <div class="prod-desc"><xsl:value-of select="$pDescriptiondisable-output-escaping="yes"/></div
    & then add something like the following to your css file :-

    Code:
    .prod-desc {
    font-weight: bold;
    font-size: 1.5em;
    color: black;
    }

    TTFN

    BFG

  7. #7
    kevin@mkbtechnology.com is offline Junior Member
    Join Date
    Jan 2012
    Posts
    8

    Default

    OK, That worked perfect. Thanks for your time, appreciate it!!