Re: Stop CE inheriting the page styles

  •  07-10-2010, 1:27 AM

    Re: Stop CE inheriting the page styles

    I had the same problem. CE are using some of the default css class that are normally for tables and links etc. ( i really hope they class name all there css on next version).
     
    The solution to your problem is simple = 
     
    inn your css file:
     
    table.YourClassName
    {
       your design code here
    }
    table.YourClassName th
    {
       your design code here
    }
    table.YourClassName td
    {
       your design code here
    }
     
View Complete Thread