if I click Insert Horizontal Line with Firefox/Internet Explorer, no line are added in edit Content.
Insert Horizontal Line Problem
Insert Horizontal Line Problem
Hi
if I click Insert Horizontal Line with Firefox/Internet Explorer, no line are added in edit Content.
if I click Insert Horizontal Line with Firefox/Internet Explorer, no line are added in edit Content.
Re: Insert Horizontal Line Problem
hmm, it might be that FCKeditor adds a tag which is hidden in default stylesheets for accessibility functions.
Re: Insert Horizontal Line Problem
Hi
thnx for reply, Is there fix to make horizonal line visible in view content?
thnx for reply, Is there fix to make horizonal line visible in view content?
Re: Insert Horizontal Line Problem
you could take hr {display:none;} our from stylesheets
or add something like div#content hr { display:block; } so that only hr:s inside div with id content will be visible
hope this helps
or add something like div#content hr { display:block; } so that only hr:s inside div with id content will be visible
hope this helps
Re: Insert Horizontal Line Problem
Hi
sorry I dont understand exacly.
Can you make instruktion?
add this in Stylesheet?
{display:none;}
div#content hr { display:block; }
sorry I dont understand exacly.
add this in Stylesheet?
{display:none;}
div#content hr { display:block; }
Re: Insert Horizontal Line Problem
in stylesheets there already is a rule
if you take it out all hr:s will become visible, but it might not look too good as cmsms default temlates add some hr:s for accessibility in text browsers.
so you can add this to your stylesheets to only show hr:s inside div with id=content
its basic css first part (div#content hr) means that this rule applies to all hr elements inside div with id=content and the part inside {} is the style to be applied.
hope this helps
Code: Select all
hr { display:none }so you can add this to your stylesheets to only show hr:s inside div with id=content
Code: Select all
div#content hr { display:block; }hope this helps
Re: Insert Horizontal Line Problem
thnx, but I cant get it work, it was display Navigation Text displayed outside the content.
Can you do it for me? Need which stylesheets?
Sorry about this.
Can you do it for me? Need which stylesheets?
Sorry about this.

