Title: charlykingdev's Replies | WordPress.org

---

# charlykingdev

  [  ](https://wordpress.org/support/users/charlykingdev/)

 *   [Profile](https://wordpress.org/support/users/charlykingdev/)
 *   [Topics Started](https://wordpress.org/support/users/charlykingdev/topics/)
 *   [Replies Created](https://wordpress.org/support/users/charlykingdev/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/charlykingdev/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/charlykingdev/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/charlykingdev/engagements/)
 *   [Favorites](https://wordpress.org/support/users/charlykingdev/favorites/)

 Search replies:

## Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)

 *   Forum: [Everything else WordPress](https://wordpress.org/support/forum/miscellaneous/)
   
   In reply to: [accordian tile line up](https://wordpress.org/support/topic/accordian-tile-line-up/)
 *  [charlykingdev](https://wordpress.org/support/users/charlykingdev/)
 * (@charlykingdev)
 * [1 year, 8 months ago](https://wordpress.org/support/topic/accordian-tile-line-up/#post-18040356)
 * Unfortunately this is a common problem with aligning items using float in CSS.
   Each door is in a div called cabinet-panels. I would wrap these all inside one
   div and make use of [flex-box](https://css-tricks.com/snippets/css/a-guide-to-flexbox/)
   instead. For example:
 *     ```wp-block-code
       <div class="cabinet-wrapper">    <div class="cabinet-panels">Your content</div>    <div class="cabinet-panels">Your content</div>    <div class="cabinet-panels">Your content</div></div>
       ```
   
 * Then in your CSS, remove the float property completely.
 *     ```wp-block-code
       .cabinet-panels {    float: left;}
       ```
   
 * Then add this code instead:
 *     ```wp-block-code
       .cabinet-wrapper {    display: flex;    flex-wrap: wrap;}// If you wish to have a specific width on your cabinet panels you can add this in too.cabinet-panels {    width: 25%;}
       ```
   
 *   Forum: [Everything else WordPress](https://wordpress.org/support/forum/miscellaneous/)
   
   In reply to: [How do I center DMCA badge?](https://wordpress.org/support/topic/how-do-i-center-dmca-badge/)
 *  [charlykingdev](https://wordpress.org/support/users/charlykingdev/)
 * (@charlykingdev)
 * [1 year, 8 months ago](https://wordpress.org/support/topic/how-do-i-center-dmca-badge/#post-18040329)
 * There’s a few things that could be influencing the positioning – you would need
   to share a link for us to see 🙂
 *   Forum: [Everything else WordPress](https://wordpress.org/support/forum/miscellaneous/)
   
   In reply to: [Page Jumps and Anchor Links](https://wordpress.org/support/topic/page-jumps-and-anchor-links/)
 *  [charlykingdev](https://wordpress.org/support/users/charlykingdev/)
 * (@charlykingdev)
 * [1 year, 8 months ago](https://wordpress.org/support/topic/page-jumps-and-anchor-links/#post-18035428)
 * You can create page jumps with just a little bit of code…
 * Firstly, find the section of content you wish to jump to and give this an ID.
   Ideally, you want to wrap the content in a div like this:
 *     ```wp-block-code
       <div id="jump">Your content here</div>
       ```
   
 * Notice how we have given the div an ID of “jump”… Then add a link to where you
   want the content to jump from like this:
 *     ```wp-block-code
       <a href="#jump">Your link description here</a>
       ```
   
 * So the link with the ID “jump” will jump to the content you have wrapped in a“
   jump” ID. You can use this markup as much as you want, just ensure you use a 
   different ID for each one as the ID should be unique and only used once per page.

Viewing 3 replies - 1 through 3 (of 3 total)