|
If the e-mail link on your articles is wrapping in IE you can make a fix to the com_content article template. Locate the default.php file in the components/com_content/views/article/tmpl directory. On line 38 change the code as follows:
FROM: "right" width="100%" class="buttonheading">
TO: "right" width="100%" class="buttonheading" nowrap="nowrap">
Now locate the components/com_content/views/category/tmpl/blog_item.php file
Change line 35 from "right" width="100%" class="buttonheading"> to
"right" width="100%" class="buttonheading" nowrap="nowrap">
Now locate the components/com_content/views/section/tmpl/blog_item.php file
Change line 39 from "right" width="100%" class="buttonheading"> to
"right" width="100%" class="buttonheading" nowrap="nowrap">
Now locate the components/com_content/views/frontpage/tmpl/default_item.php file
Change line 37 from "right" width="100%" class="buttonheading"> to
"right" width="100%" class="buttonheading" nowrap="nowrap">
 |