• Everytime I select some text in the editor and createa link of words, it renders on screen to put the link on it’s own line.

    For an example see the below sentence…

    Here is a sentence and this is the link. Here is another sentence which should NOT be forced to start on a new line.

    So what happens? The word ‘link’ set as a link would move everything immediately after the word ‘link’ to the next line, so it would format like this…

    Here is a sentence and this is the link
    . Here is another sentence which should NOT be forced to start on a new line.

    Any ideas what is going on here? Thanks in advance.

Viewing 1 replies (of 1 total)
  • Thread Starter lowercase001

    (@lowercase001)

    My css…

    @charset "utf-8";
    
    #container {
    	margin-right: auto;
    	margin-left: auto;
    	text-align: center;
    	clear: both;
    	width: 840px;
    	padding: 0px;
    }
    
    #header {
             margin-top: 300px;
    }
    
    #content {
    	clear: both;
    	text-align: left;
    	padding-left: 30px;
    	padding-right: 30px;
    	padding-top: 0px;
    	padding-bottom: 0px;
    	float: left;
    	width: 615px;
    }
    
    #menu {
    	width: 142px;
    	margin: 0px;
    	margin-right: 15px;
    	padding: 0px;
    	float: right;
    }
    
    #footer {
    	margin-right: auto;
    	margin-left: auto;
             margin-top: 30px;
    	clear: both;
    	background-image: url(images/footer.png);
    	background-repeat: no-repeat;
             text-align: right;
    }
    
    body {
    	margin: 0;
    	background-image: url(images/background.jpg);
    	background-repeat: no-repeat;
    	background-position: center top;
    	background-color: #6b969a;
    }
    
    body,td,th {
    	font-family: Arial, Helvetica, sans-serif;
    	font-size: 14px;
    	color: #ffffff;
    	line-height: 20px;
    }
    
    h1, h1 a, h1 a:visited, #headerimg .description {
    	font-family: Arial, Helvetica, sans-serif;
    	font-size: 24px;
    	color: #bbe4e8;
    	letter-spacing:-2px;
    	font-weight: bold;
             text-decoration: none;
             margin-top: 40px;
    }
    
    h1 a:hover {
    	font-family: Arial, Helvetica, sans-serif;
    	font-size: 24px;
    	color: #ffffff;
    	letter-spacing:-2px;
    	font-weight: bold;
             text-decoration: none;
    }
    
    a {
    	color: #bbe4e8;
    	text-decoration: none;
    }
    a:hover {
    	color: #bbe4e8;
    	text-decoration: underline;
    }
    
    img {
             border-style: none;
    }
    
    .menu {
    	list-style:none;
    	width: 112px;
    	margin:30px;
    	padding: 0px;
    }
    
    .menu li, a {
    	display:block;
    }
    
    .menu li a span {
    	display:none;
    }
    
    li.home a {
    	height:27px;
    	background-image: url(images/menu_home.png);
    }
    li.home a:hover {
    	background-position: -112px 0;
    }
    li.home a.active {
    	background-position: -224px 0;
    }
    
    .vvqbox {
             padding: 5px;
    	background-image: url(images/img_background.png);
    	background-repeat: repeat;
    }
    
    .commentlist li {
     	padding: 5px 20px 5px 20px;
    	margin-top:15px;
    	background-image: url(images/img_background.png);
    	list-style:none;
    }
    
    .commentlist cite {
    	font-style:normal
    }
    
    .commentlist cite a:link, .commentlist cite a:visited {
    	color:#bbe4e8;
    	text-decoration:none;
             display:block;
    }
    
    .commentlist cite a:hover, .commentlist cite a:active {
    	color:#FFF;
    	text-decoration:underline;
    }
    ol {
             margin: 0px;
             padding: 0px;
             list-style-position: inside;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘All text links forcing line break problem’ is closed to new replies.