How To change the background a table at Insert

Discussion in 'Cloriato WordPress Theme' started by errorman, Mar 6, 2014.

  1. errorman

    errorman New Member

    Joined:
    Dec 24, 2013
    Messages:
    18
    Likes Received:
    0
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .home_text table tbody tr td {
    background: red ! important;
    }
     
    In place of "red" you can put your color or color code.
    This will solve your issue.
     
  3. errorman

    errorman New Member

    Joined:
    Dec 24, 2013
    Messages:
    18
    Likes Received:
    0
    Thank you,I Want to change font style and size too
     
  4. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .home_text table tbody tr td p {
    font-family: symbol;
    color: red;
    }
     
    In place of "symbol" you can put your font and in place of "red" you can put your color or color code.
     
  5. corawu

    corawu New Member

    Joined:
    Mar 5, 2014
    Messages:
    1
    Likes Received:
    0
    How can i change the font size not color?
     
  6. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
     .home_text table tbody tr td p {
    font-size: 18px;
    }
    Thanks & Regards
    Gourav Shrivastava
     

Share This Page