Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想为 Joomla 中的文章设置最大宽度,以便在宽屏上更容易阅读。到目前为止,我所做的一切都导致了整个模板的宽度发生了变化,这是我不想要的。
文章的宽度在哪里定义?
非常感谢您的帮助!
只要你继续使用 T3 框架和内容中的 HTML 标签文章,设置 max-width like (eg 200px) 是安全的
#t3-mainbody article { max-width: 200px; }
另外,如果您只想访问它们的段落,则将标题留在最大宽度之外
#t3-mainbody article p{ max-width: 200px; }