• Resolved turbo857

    (@turbo857)


    How’s it going? I’m using Dreamweaver to construct tables in html before I drop the code onto a page using this theme.

    But I cannot eliminate the white shading that displays on each alternate row.

    Is there a way I can eliminate this shading?

    Thanks

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

Viewing 4 replies - 1 through 4 (of 4 total)
  • Theme Author Alexander Agnarson

    (@alxmedia)

    In /js/scripts.js on line 69-71 you will see:

    
    /*  Table odd row class
    /* ------------------------------------ */
    $('table tr:odd').addClass('alt');
    

    Remove that and the alt class for each alt row will be gone.

    Or do the simpler custom css:

    
    .entry table tr.alt { background: transparent; }
    
    Thread Starter turbo857

    (@turbo857)

    Works like charm! The only thing now is removing the white shading, leaves behind white horizontal lines at the top and bottom of the rows that previously contained white shading.

    Is there any way to remove these white lines as well?

    Should be smooth sailing after this.

    Theme Author Alexander Agnarson

    (@alxmedia)

    Try:

    
    .entry table td { border-bottom: 0; }
    .entry table th { border-top: 0; border-bottom: 0; }
    
    Thread Starter turbo857

    (@turbo857)

    Perfect, thanks again Alex!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Tables inserted display white shading on alternate rows, how do I get rid of it’ is closed to new replies.