Title: Front end fix builder css
Last modified: August 31, 2016

---

# Front end fix builder css

 *  Resolved [pingram](https://wordpress.org/support/users/pingram3541/)
 * (@pingram3541)
 * [10 years ago](https://wordpress.org/support/topic/front-end-fix-builder-css/)
 * My theme’s base styling is messing with the front end builder and/or some missing
   css for the front end editing.
 * For example, **#kc-footers ul li** should have list-style: none:
 *     ```
       #kc-footers ul li {
           float: left;
           padding: 10px 8px;
           line-height: 28px;
           list-style: inherit; /* fix */
           margin: 0px;
           height: 28px;
           cursor: pointer;
           position: relative;
           z-index: 1;
           box-sizing: content-box;
       }
       ```
   
 * to make sure theme/plugin css doesn’t add bullet points to the row options.
 * Also the **#kc-footers img.empty_guide** max-width is set to 100% so the helper
   img doesn’t line up with the toolbar as it does on the back end due to absolute
   positioning and the container not having a specified width. Setting it’s max-
   width to 1024px same as the ul controls container below it seems to do the trick.
 *     ```
       #kc-footers img.empty_guide {
           position: absolute;
           max-width: 1024px; /* fix */
           bottom: 60px;
           max-height: inherit;
       }
       ```
   
 * [https://wordpress.org/plugins/kingcomposer/](https://wordpress.org/plugins/kingcomposer/)

Viewing 1 replies (of 1 total)

 *  Plugin Author [king-theme](https://wordpress.org/support/users/kingthemes/)
 * (@kingthemes)
 * [10 years ago](https://wordpress.org/support/topic/front-end-fix-builder-css/#post-7389112)
 * Hi,
 * Thank you for letting us know. We’ll take care it.

Viewing 1 replies (of 1 total)

The topic ‘Front end fix builder css’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/kingcomposer_747172.svg)
 * [Page Builder: KingComposer - Free Drag and Drop page builder by King-Theme](https://wordpress.org/plugins/kingcomposer/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/kingcomposer/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/kingcomposer/)
 * [Active Topics](https://wordpress.org/support/plugin/kingcomposer/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/kingcomposer/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/kingcomposer/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [king-theme](https://wordpress.org/support/users/kingthemes/)
 * Last activity: [10 years ago](https://wordpress.org/support/topic/front-end-fix-builder-css/#post-7389112)
 * Status: resolved