• Resolved akacruiseman

    (@akacruiseman)


    Hello Nobita,
    On the page link below is an example of an issue that I may have messed up on or something.
    I used tables for photo displays. I just made some changes to the site colors.
    Now the tables have that dark brown background color and I cannot figure out why.

    The box for comments and in the Footer the Login Register also is showing brown.

    https://theplacetogo.com/colorizing-photos/

    I do have a work around for the tables though as on https://theplacetogo.com/gallery/
    Thanks,
    Jim

    • This topic was modified 7 years, 9 months ago by akacruiseman.
Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author nobita

    (@nobita)

    Hi @akacruiseman

    table td background color has been applied by Raindrops automatic color

    Automatic color is applied from 10 color colors created based on base color

    ( Dashboard / Appearance / Customize / Presentation / Color Scheme / base color )

    If you change the color in an individual post

    Add style ‘Custom CSS for This Entry’ metabox in the edit post page.

    
    .entry-content td{
        background:transparent;
    }
    

    If you change the all color in the Site

    Add style ( Customize / Additional CSS )

    
    .entry-content td{
        background:transparent;
    }
    

    Note

    
    <table class="auto" style="border: none;" align="left">
    

    align=”left” Alternative method

    
    <table class="auto left" style="border: none;">
    

    Anothor coding style

    When html with the following structure is described, 3 columns can be displayed in one column (smaller than 640px) in the mobile environment.

    
    <div class="line">
        <div class="unit size1of3">
           <!--Your Image-->
        </div>
        <div class="unit size1of3">
           <!--Your Image-->
        </div>
        <div class="unit size1of3">
           <!--Your Image-->
        </div>
    </div>
    

    Thank you

    • This reply was modified 7 years, 9 months ago by nobita.
    Thread Starter akacruiseman

    (@akacruiseman)

    I understand. thanks.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Table BG Colors’ is closed to new replies.