ioslides:将标题徽标放在右侧

ioslides: place title logo on the right side

我正在使用 ioslides (Rmarkdown) 制作演示文稿。由于我们大学的企业设计规则规定徽标应位于右侧(因此两个面孔会看到文档)如果有人可以通过 css 或帮助我调整 ioslide 主题,我会很高兴在 pandoc 模板中。

图像和灰框应该从右边进来。我做不到。我所能做的就是让灰色长到到达右侧(这也移动了徽标,因为它在我看来相对放置在灰色框的右端)。

这是我已经找到并试验过的一些 CSS 代码:

.gdbar img {
  width: 150px !important;
  height: 150px !important;
  margin: 8px 8px;
}

.gdbar {
  width: 90% !important; # with 250px instead of 90% it produces the image posted below
  height: 170px !important;
}

这是编织后产生的代码:https://box.hu-berlin.de/f/d3d9e907fcef41a0bbf1/

一开始我不明白 gdbar 代码在哪里。也会很高兴在这里得到提示。

编辑:我现在已经完成了 CSS 设置并且即将完成。只有标志要向左移动一点。

.gdbar img {
  width: 150px !important;
  height: 150px !important;
  margin: 8px 8px;
}

.gdbar {
  width: 250px !important;
  height: 170px !important;
}

aside.gdbar {
  left: initial;
  right: 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 10px;
  background-position: right;
}

此致,西蒙

您的元素有 left: -1px 属性 确保它总是在左边。如果你设置 left 为 initial:

aside.gdbar {
 left: initial;
 right: 0;
}

或者您删除此 left 设置,然后您的元素将向右移动。