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 添加了 AddThis!Joomla 的模块。问题是我不能让它向左浮动。例如,这个站点在左侧有AddThis按钮,并且在滚动时它保持在同一个位置。我希望它在我的 Joomla 网站中完全一样。在 Joomla 的AddThis的模块管理器中,没有选项可以执行此操作。
任何人都可以在这件事上提供帮助吗?
要在页面左侧修复某些内容,请打开 CSS 文件并在文件底部替换以下内容:
.joomla_add_this { float:left; }
有了这个:
.joomla_add_this { position: fixed; left: 0; top: 100px; }
您可以更改top: 0;which 定义模块离顶部的距离。如果您想将其固定在底部,请bottom: 0;改用。
top: 0;
bottom: 0;
希望这可以帮助