简体   繁体   English

WordPress的新主题问题

[英]Wordpress New Theme Issue

I made new Theme in Wordpress But i am getting 1 issue. 我在Wordpress中制作了新主题,但我遇到了1个问题。 When i add Images in Post Editor WP Backend. 当我在Post Editor WP Backend中添加图像时。 I align some images to Right. 我将一些图像向右对齐。 Then On Front End The Images becomes only on Left side and Center. 然后在前端,图像仅在左侧和中间。 Images are not aligning properly. 图像未正确对齐。

Please help me to make these well aligned. 请帮助我使这些保持一致。

You probably didn't include the CSS for WordPress generated elements: 您可能没有包括用于WordPress生成的元素的CSS:

https://codex.wordpress.org/CSS#WordPress_Generated_Classes https://codex.wordpress.org/CSS#WordPress_Generated_Classes

WordPress aligns images using the alignleft , alignright , aligncenter etc. classes. WordPress使用alignleftalignrightaligncenter等类对齐图像。 If you don't include any styling for those classes then images that are aligned in the editor will not be aligned on the frontend. 如果您不为这些类添加任何样式,则在编辑器中对齐的图像将不会在前端对齐。

Edit your theme file style.css and add the following lines: 编辑主题文件style.css并添加以下行:

.alignright {
    float:right;
    margin: 5px 0 20px 20px;
}

Good luck1 祝你好运1

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM