• Resolved edzuss99

    (@edzuss99)


    Hello!Could you please help me?I have problem with two things.
    a)When I make a new table,the Lines are white(invisible) ,same is in the calendar,when I open all month review,all lines are white.I suppose,that’s because my “Base Color” is white(I want to keep everything white,except table and calendar lines).
    b)Is there any way to disable default mobile version,because I want to use plugin mobile app.
    I would be really thankful,if you could help me,because my programming skills are really weak in php or css.

Viewing 8 replies - 1 through 8 (of 8 total)
  • Theme Author nobita

    (@nobita)

    Hi edzuss99

    When I make a new table,the Lines are white(invisible) ,same is in the calendar,when I open all month review,all lines are white.I suppose,that’s because my “Base Color” is white

    Base Color, set the trend of the entire site of the color scheme. This color settings, also include such as the border color of the table, it will affect the color of the part of all of the site.

    but

    You can change color using Custom CSS for This Entry and Site-wide CSS

    write below style rules at Custom CSS for This Entry

    table th, table td{
        border:1px solid red;
    }

    Borders of the post only in the table will be in red.

    write below style rules at Site-wide CSS
    ( Dashboard / Appearance / Customize / Advanced )

    .entry-content table th,
    .entry-content table td{
                border:1px solid red;
    }

    Borders of all the tables that you have written in the post will be in red

    Is there any way to disable default mobile version,because I want to use plugin mobile app.

    Dashboard / Appearance / Customize /
    presentation / Layout and Sidebars / Document Width

    Set below ,
    750px centered or 950px centered or 974px

    this setting is no responsive static width settings

    Thank you.

    Thread Starter edzuss99

    (@edzuss99)

    For tables it is almoust fixed,but still,I can’t see the lines in calendar(http://imgur.com/TkG9LAd).
    And is there any different method,to remove mobile version,because making my website smaller,doesn’t look good…

    Theme Author nobita

    (@nobita)

    About Page width ( static )

    functions.php line 1 add.

    <?php
    $raindrops_page_width = 1280; // Add only this line
    /**
     *
     *
     * @package Raindrops
     * @since Raindrops 0.1
     */

    1280 is page width (px)

    About Borders of Monthly Archives

    Please tell me color type and base color

    Thread Starter edzuss99

    (@edzuss99)

    Mobile version is fixed,thanks!
    Color type:light
    Base color:White

    Theme Author nobita

    (@nobita)

    Example

    .datetable #date_list td,
    .datetable #raindrops_year_list td,
    .datetable #month_list td li,
    .datetable #month_list td {
        border-bottom:1px solid #ccc;
    }
    .datetable #date_list,
    .datetable table#raindrops_year_list,
    .datetable table#month_list{
        border:2px solid #ccc;
        box-sizing:border-box;
    }
    .datetable #date_list .time,
    .datetable #raindrops_year_list .month-name,
    .datetable #month_list .month-date{
        border:1px solid #ccc;
        text-align:center;
    }
    Thread Starter edzuss99

    (@edzuss99)

    Where do I have to paste it ?

    Theme Author nobita

    (@nobita)

    at Site-wide CSS
    ( Dashboard / Appearance / Customize / Advanced )

    Thread Starter edzuss99

    (@edzuss99)

    Huge thanks,you are the best from the best! 🙂 😀

Viewing 8 replies - 1 through 8 (of 8 total)

The topic ‘Problem with lines and mobile version’ is closed to new replies.