我正在Joomla 2.5网站上工作,并且试图在页面上放置html5视频。下图显示了这种情况。我希望视频播放器几乎占据整个页面。使用站点上安装的Joomla扩展,高级模块管理器,我已经检出了模块管理器数据,但看不到如何释放左侧红色区域(位于左侧)中的区域(位置7)。图片。我什至不确定这是正确的方法。

http://staging2.english2theworld.com/templates/beez_20/images/access_pos7.png

任何帮助将非常欢迎,谢谢。

最佳答案

我使用jQuery更改了nav标签上的css,得出了这个解决方案。

  if (window.location.pathname === "/index.php/sg-video-1" ||
      ...
      window.location.pathname === "/index.php/sg-video-8" ||
     ...
      window.location.pathname === "/index.php/toeic/toeic-practice-test/toeic-reading/toeic-end")
  {
     jQuery("div#nav").css("flex-basis","0");
   }


我暂时不会认为这是最好的方法。欢迎任何建议。

09-19 11:53