Viewing 4 replies - 1 through 4 (of 4 total)
  • seems to be a browser problem;

    as the breaking is introduced by this style:

    /* Primary Sidebar, Footer Sidebar */
    
    .widget {
    	font-size: 14px;
    	-webkit-hyphens: auto;
    	-moz-hyphens:    auto;
    	-ms-hyphens:     auto;
    	hyphens:         auto;
    	line-height: 1.2857142857;
    	margin-bottom: 48px;
    	width: 100%;
    	word-wrap: break-word;
    }

    try to overwrite it the same way:

    .widget {
    -webkit-hyphens: none;
    -moz-hyphens:    none;
    -ms-hyphens:     none;
    hyphens:         none;
    word-wrap: normal; }
    Thread Starter Shaunrafuse

    (@shaunrafuse)

    Still no luck..

    I had that whole block, besides the ‘word-wrap: normal;’ in there, currently looks like this

    .entry-content,
    .entry-summary,
    .page-content,
    .nav-links,
    .comment-content,
    .widget
    .primary-sidebar {
    
       -webkit-hyphens: none;
       -moz-hyphens:    none;
       -ms-hyphens:     none;
       hyphens:         none;
    word-wrap:	  normal;
    }

    But still it’s not working..

    please try to clear your browser cache;

    ‘CTRL F5’ or ‘reload’ the web page (a few times) or check the instructions for your browser…

    Thread Starter Shaunrafuse

    (@shaunrafuse)

    Cleared but still the same. I.E. is hopeless, in Chrome it’s fixed though. Thanks alchymyth.. No more I.E. I guess.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Word Breaking Sidebar!’ is closed to new replies.