• Resolved vioxx2015

    (@vioxx2015)


    Hallo,

    sorry for my bad english.

    First congratulations for this great theme!!!

    But some of the visitors of my website had a problem:

    The text of the site overlapping the right sidebar. the problem is only on pages where a table is inserted. Do you know a solution for this problem?

    best regards

    Vioxx2015

Viewing 7 replies - 1 through 7 (of 7 total)
  • Theme Author tbcrew

    (@tbcrew)

    hi! thanks for compliments and for using our theme. Could you please provide a link to your site, so we can take a live check?
    thanks
    Jimo

    Thread Starter vioxx2015

    (@vioxx2015)

    Thanks for your answer.

    Here the link to my website: table

    best regards

    vioxx2015

    Theme Author tbcrew

    (@tbcrew)

    ok, just add the following to style.css or to the “custom CSS” field in theme options page

    .storycontent table,
    .comment-body table {
    	-webkit-hyphens: auto;
    	-moz-hyphens:    auto;
    	-ms-hyphens:     auto;
    	hyphens:         auto;
    }

    this should work on the recent versions of almost all the major browsers
    At last, since many users still have IE8 (bad bad users 😉 ), you can consider adding the following hack too

    .storycontent {
    	overflow: auto\9;
    }

    Hope it helps

    Thread Starter vioxx2015

    (@vioxx2015)

    sorry, but only Firefox now shows the table correctly. In Opera, Chrome and IE there are no changes. Even your hack has no effect. Maybe I should create a new template without sidebars for wide tables…

    Theme Author tbcrew

    (@tbcrew)

    you’re right, the text hyphenation seems to be a really unsupported property.
    Let’s try something else:

    .storycontent {
    	overflow-x: auto;
    	overflow-y: visible;
    }

    Let me know what happens

    Thread Starter vioxx2015

    (@vioxx2015)

    Well, that’s the solution 🙂

    Thank you very much!

    Theme Author tbcrew

    (@tbcrew)

    you’re welcome

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Overlapping Text’ is closed to new replies.