Remove multiple lines & Display single line after one row

user6378120

we can see 2 rows in below image we have 5-6 horizontal lines after one row.

enter image description here

I want to hide all those lines & want to display single line after one row as like below

enter image description here

#shopping-cart-table .a-center {
    color: #000;
    font-weight: normal;
    font-size: 14px;
}

#cart2 {
    position: relative;
    right: 40px;
}

.cart-table thead th, .cart-table tbody td {
    background-color: transparent;
    padding: 10px 5px;
    font-family: 'Roboto Condensed', sans-serif;
}
Sagar Kodte

just change your existing css to below css.

  @media only screen and (min-width: 1224px){
.cart thead {
    background: #fff;
    box-shadow: 3px -3px 3px #ccc;
    padding-bottom: 13px !important;
    border-bottom: 1px solid #ccc;}
  }

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Remove end of line characters from stdout? Multiple lines into a single line

From Dev

How To Remove Single Blank Line Only - Keep Multiple Blank Lines

From Dev

Assigning multiple column values in a single row of pandas DataFrame, in one line

From Dev

Multiple lines into single line in Python

From Dev

Multiple lines to single line in Linux

From Dev

Select multiple rows into a single row one after the other in Postgres

From Dev

How to remove single line between two lines

From Dev

Multiple lines multiple string to one line

From Dev

Display multiple values in one line

From Dev

Resharper format multiple lines of code to a single line

From Dev

mutiple lines in single line and remove duplicates from some lines

From Dev

How to display one row when table has multiple rows related to Single record in other table?

From Dev

Remove One or More Blank Lines After a String

From Dev

How to remove all single occurring new lines "\n", but not multiple lines

From Dev

remove duplicate entries in one column and linearize the values in multiple rows to a single row

From Dev

Splitting one line of a Csv into multiple lines in PowerShell

From Dev

Replace Multiple New Lines in One New Line

From Dev

How to combine multiple lines in CSV into one line

From Dev

Write multiple lines from one line

From Dev

Collapsing a stream of multiple lines into one line

From Dev

Break one line python code to multiple lines

From Dev

Display multiple yes/no fields in single line

From Dev

remove lines after pattern in multiple files

From Dev

Convert multiple SFTP command lines to a single line command line

From Dev

Combining multiple rows into one single row

From Dev

Move cursor by line number when moving through multiple lines (e.g. `5j`), move by display line when moving through a single line (e.g. `j`)

From Dev

Remove single line breaks but keep empty lines with Vim

From Dev

Display one row for value with multiple categories

From Dev

Combining 3 split lines of bash script into one single line

Related Related

  1. 1

    Remove end of line characters from stdout? Multiple lines into a single line

  2. 2

    How To Remove Single Blank Line Only - Keep Multiple Blank Lines

  3. 3

    Assigning multiple column values in a single row of pandas DataFrame, in one line

  4. 4

    Multiple lines into single line in Python

  5. 5

    Multiple lines to single line in Linux

  6. 6

    Select multiple rows into a single row one after the other in Postgres

  7. 7

    How to remove single line between two lines

  8. 8

    Multiple lines multiple string to one line

  9. 9

    Display multiple values in one line

  10. 10

    Resharper format multiple lines of code to a single line

  11. 11

    mutiple lines in single line and remove duplicates from some lines

  12. 12

    How to display one row when table has multiple rows related to Single record in other table?

  13. 13

    Remove One or More Blank Lines After a String

  14. 14

    How to remove all single occurring new lines "\n", but not multiple lines

  15. 15

    remove duplicate entries in one column and linearize the values in multiple rows to a single row

  16. 16

    Splitting one line of a Csv into multiple lines in PowerShell

  17. 17

    Replace Multiple New Lines in One New Line

  18. 18

    How to combine multiple lines in CSV into one line

  19. 19

    Write multiple lines from one line

  20. 20

    Collapsing a stream of multiple lines into one line

  21. 21

    Break one line python code to multiple lines

  22. 22

    Display multiple yes/no fields in single line

  23. 23

    remove lines after pattern in multiple files

  24. 24

    Convert multiple SFTP command lines to a single line command line

  25. 25

    Combining multiple rows into one single row

  26. 26

    Move cursor by line number when moving through multiple lines (e.g. `5j`), move by display line when moving through a single line (e.g. `j`)

  27. 27

    Remove single line breaks but keep empty lines with Vim

  28. 28

    Display one row for value with multiple categories

  29. 29

    Combining 3 split lines of bash script into one single line

HotTag

Archive