 #  Content - Orbit Documentation 

 

- Extension Page: [Content - Orbit](/software/joomla/plugins/content-orbit)

## Overview

Content - Orbit is a Joomla content plugin that transforms your articles, images, or modules into a stunning 3D rotating carousel. Unlike traditional sliders, Orbit displays all items simultaneously in a 3D circle, with each item dynamically positioned in 3D space for a captivating user experience. Built on David DeSandro’s foundational 3D transforms (https://3dtransforms.desandro.com/carousel), Orbit offers flexible configuration through global settings or per-carousel data- attributes, plus robust scripting controls for developers. Compatible with Joomla 4.x and 5.x, Orbit is lightweight and optimized for performance.

## Content - Orbit Installation

1. Download: Get the latest version of Content - Orbit from richeyweb.com or the Joomla Extensions Directory.
2. Install: Log in to your Joomla admin panel, navigate to System &gt; Install &gt; Extensions, and upload the plugin file.
3. Enable: Go to System &gt; Manage &gt; Plugins, search for “Content - Orbit,” and enable the plugin.
 
## Configuration

Content - Orbit offers flexible configuration through the plugin’s settings in the Joomla admin panel. You can set global defaults for all carousels or override them for individual carousels using the optional data- attributes (see Usage below). Omitting data- attributes cause the plugin to use the defaults set in plugin configuration. The following options are available:

- Aspect Ratio: (data-aspectratio="NxN") Set the aspect ratio of carousel items, affecting their display size and shape. Options include 1x1, 4x3, 16x9, 21x9, or custom NxN (e.g., 2x1). When using the data-aspectratio attribute, replace the colon with an ‘x’ (e.g., data-aspectratio="16x9").
- Timer: (data-timer="N") Set the time interval (in milliseconds) for automatic rotation. Enter a value (e.g., 3000 for 3 seconds) or 0 to disable auto-rotation, allowing manual control via buttons or custom scripts.
- Orientation: (data-orientation="\[horizontal|vertical\]") Choose Horizontal or Vertical to determine the carousel’s rotation axis.
- Direction: (data-direction="\[forward|backward\]") Select Forward or Backward to set the rotation direction for automatic or manual movement.
- Pause on Hover: (data-pauseonhover="\[0|1\]") Enable (Yes) or disable (No) to pause rotation when users hover over the carousel, improving readability.
 
To configure global settings:

1. Go to System &gt; Manage &gt; Plugins in your Joomla admin panel.
2. Find and edit “Content - Orbit.”
3. Adjust the settings as needed and save.
 
## Content - Orbit Usage

Content - Orbit requires a minimum of three .carousel\_\_cell elements to create a proper 3D carousel display. Add the following structure to your Joomla article, module, or template:

&lt;div class="plg\_content\_orbit" id="orbit1" data-aspectratio="16x9" data-timer="3000" data-orientation="horizontal" data-direction="forward" data-pauseonhover="yes"&gt;  
 &lt;div class="carousel-options"&gt;  
 &lt;button class="previous-button"&gt;Previous&lt;/button&gt;  
 &lt;button class="next-button"&gt;Next&lt;/button&gt;  
 &lt;/div&gt;  
 &lt;div class="scene"&gt;  
 &lt;div class="carousel"&gt;  
 &lt;div class="carousel\_\_cell"&gt;Item 1 Content&lt;/div&gt;  
 &lt;div class="carousel\_\_cell"&gt;Item 2 Content&lt;/div&gt;  
 &lt;div class="carousel\_\_cell"&gt;Item 3 Content&lt;/div&gt;  
 &lt;/div&gt;  
 &lt;/div&gt;  
&lt;/div&gt;

- Class: The outer &lt;div&gt; must have the plg\_content\_orbit class to trigger the plugin’s JavaScript, which transforms the HTML into a 3D carousel.
- ID (Optional): Add an id (e.g., id="orbit1") to easily access the carousel for scripting (see Advanced Customization).
- Data Attributes: Optionally include data- attributes to override global settings: 
    - data-aspectratio="1x1" (or 4x3, 16x9, 21x9, or custom NxN, e.g., 2x1)
    - data-timer="3000" (milliseconds, or 0 to disable auto-rotation)
    - data-orientation="horizontal" (or vertical)
    - data-direction="forward" (or backward)
    - data-pauseonhover="1" (or 0)
- Content: Each &lt;div class="carousel\_\_cell"&gt; can contain text, images, HTML, or Joomla modules. A minimum of three .carousel\_\_cell elements is required for the 3D effect to render correctly.
 
After adding the structure, ensure the plugin is enabled, publish your content, and the carousel will display automatically.

## Adding Navigation Buttons

The .carousel-options div is entirely optional. If included for previous and next buttons, it must be a direct child of the .plg\_content\_orbit div (placed before or after the .scene div):

&lt;div class="carousel-options"&gt;  
 &lt;button class="previous-button"&gt;Previous&lt;/button&gt;  
 &lt;button class="next-button"&gt;Next&lt;/button&gt;  
&lt;/div&gt;

Place this div directly within the .plg\_content\_orbit div. Orbit’s JavaScript will detect and bind these buttons to navigate the carousel. If omitted, the carousel relies on auto-rotation (if enabled) or custom scripting controls.

## Advanced Customization

For developers, Orbit provides powerful scripting controls via the orbit property, automatically assigned to the .plg\_content\_orbit element when the plugin initializes. Access it using any DOM method, such as:

javascript  
const orbit = document.getElementById('orbit1').orbit;

Available methods:

- startTimer(): Starts the timed rotation.
- stopTimer(): Stops the timed rotation.
- prevCell(): Advances to the previous cell.
- nextCell(): Advances to the next cell.
- toCell(N): Advances to the Nth cell in a zero-indexed array (e.g., toCell(0) for the first cell, toCell(2) for the third cell).
- rotateCarousel(): Rotates one cell in the configured direction.
 
Example:

javascript  
// Stop the carousel  
orbit.stopTimer();  
// Move to the third cell  
orbit.toCell(2);  
Create custom controls (e.g., buttons, sliders, or event triggers) by calling these methods. For example:

html

&lt;button onclick="document.getElementById('orbit1').orbit.toCell(0)"&gt;Go to First Item&lt;/button&gt;

The JavaScript dynamically calculates the position of any number of .carousel\_\_cell elements (minimum three) in 3D space, adjusting the radius and angles based on the number of items and the carousel’s dimensions. For styling, target the .plg\_content\_orbit, .scene, .carousel, or .carousel\_\_cell classes in your CSS. Refer to the demo pages on richeyweb.com for examples.

## Troubleshooting

- Carousel not displaying? Ensure the plugin is enabled, the HTML structure includes at least three .carousel\_\_cell elements (required for the 3D effect), and the plg\_content\_orbit class is present.
- Buttons not working? Verify the .carousel-options div, if used, is a direct child of .plg\_content\_orbit and contains .previous-button and .next-button classes.
- Custom ratios not working? Use NxN format (e.g., data-aspectratio="2x1") instead of colons.
- Scripting issues? Ensure the orbit property is accessed after the carousel initializes (e.g., after DOMContentLoaded); check the browser console for errors.
- Performance issues? Minimize the number of items or optimize images for faster loading.
 
For further assistance, visit the support forum on richeyweb.com.

## Compatibility

- Joomla 4.x and 5.x
- Requires modern browsers supporting CSS 3D transforms (e.g., Chrome, Firefox, Safari, Edge).
 
## Content - Orbit Licensing

Content - Orbit is absolutely free to download, use, and customize. No premium or paid features—just powerful 3D carousels for your Joomla site.

## Credits

Content - Orbit is built on the foundational 3D transform calculations by David DeSandro (https://3dtransforms.desandro.com/carousel), adapted for seamless integration with Joomla.



- [      email ](mailto:?subject=Content+-+Orbit+Documentation&body=https%3A%2F%2Fwww.richeyweb.com%2Fsoftware%2Fdocumentation%2Fcontent-orbit)
- [      facebook ](https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Fwww.richeyweb.com%2Fsoftware%2Fdocumentation%2Fcontent-orbit)
- [      x-twitter ](https://twitter.com/intent/tweet?text=Content+-+Orbit+Documentation%3A+https%3A%2F%2Fwww.richeyweb.com%2Fsoftware%2Fdocumentation%2Fcontent-orbit)
- [      linkedin ](http://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fwww.richeyweb.com%2Fsoftware%2Fdocumentation%2Fcontent-orbit&title=Content+-+Orbit+Documentation&summary=Overview+Content+-+Orbit+is+a+Joomla+content+plugi...)
- [      pinterest ](http://pinterest.com/pin/create/button/?url=https%3A%2F%2Fwww.richeyweb.com%2Fsoftware%2Fdocumentation%2Fcontent-orbit&media=https%3A%2F%2Fcdn.joomla.org%2Fimages%2Fjoomla-org-og.jpg&description=Content+-+Orbit+Documentation)
 


 

   [  Previous article: Content - MooAccordion Documentation   Content - MooAccordion Documentation ](/software/documentation/content-mooaccordion) [  Next article: Content - YouTube (No Cookies)  Content - YouTube (No Cookies)  ](/software/documentation/content-youtube-no-cookies)  

##### We Value Your Privacy

 

We use cookies to enhance your experience and for traffic analysis. By continuing to visit this site you agree to our use of cookies.

[Privacy Policy](/privacy-policy)

 Details 

###### Google Tag Manager Items

- Ad Storage
- Ad User Data
- Ad Personalization
- Analytics Storage
- Functionality Storage
- Personalization Storage
- Security Storage
 
 

 

 

 

 

 Decline Accept
```json
{"@context":"https://schema.org","@graph":[{"@type":"Organization","@id":"https://www.richeyweb.com/#organization","name":"RicheyWeb","url":"https://www.richeyweb.com/","logo":{"@type":"ImageObject","url":"https://www.richeyweb.com/images/logo/richeyweb.svg","contentUrl":"https://www.richeyweb.com/images/logo/richeyweb.svg","width":{"@type":"QuantitativeValue","value":38,"unitCode":"PX"},"height":{"@type":"QuantitativeValue","value":38,"unitCode":"PX"},"@id":"https://www.richeyweb.com/#logo"},"image":{"@id":"https://www.richeyweb.com/#logo"},"sameAs":["https://x.com/ComRicheyweb","https://www.facebook.com/RicheyWebDev/","https://www.youtube.com/channel/UCxnVG8BwOvQRO7hVqNX7T2g","https://community.joomla.org/service-providers-directory/listings/115:richeyweb.html"],"description":"RicheyWeb is a custom software developer specializing in Joomla extensions.","ContactPoint":[{"@type":"ContactPoint","url":"https://www.richeyweb.com/contact-us","telephone":"903-873-8460","contactType":"Owner/Administrator","areaServed":["United States",{"@type":"Country","name":"United States","sameAs":["https://en.wikipedia.org/wiki/United_States","https://www.wikidata.org/wiki/Q30","https://g.co/kg/m/09c7w0"]},"European Union",{"@type":"AdministrativeArea","name":"European Union","sameAs":["https://en.wikipedia.org/wiki/European_Union","https://www.wikidata.org/wiki/Q458","https://g.co/kg/m/0_6t_z8"]},"United Kingdom",{"@type":"Country","name":"United Kingdom","sameAs":["https://en.wikipedia.org/wiki/United_Kingdom","https://www.wikidata.org/wiki/Q145","https://g.co/kg/m/07ssc"]},"Australia",{"@type":"Country","name":"Australia","sameAs":["https://en.wikipedia.org/wiki/Australia","https://www.wikidata.org/wiki/Q408","https://g.co/kg/m/0chghy"]},"Canada",{"@type":"Country","name":"Canada","sameAs":["https://en.wikipedia.org/wiki/Canada","https://www.wikidata.org/wiki/Q16","https://g.co/kg/m/0d060g"]},"Russia",{"@type":"Country","name":"Russia","sameAs":["https://en.wikipedia.org/wiki/Russia","https://www.wikidata.org/wiki/Q159","https://g.co/kg/m/06bnz"]},"China",{"@type":"Country","name":"China","sameAs":["https://en.wikipedia.org/wiki/China","https://www.wikidata.org/wiki/Q148","https://g.co/kg/m/0d05w3"]}],"availableLanguage":"en"},{"@type":"ContactPoint","url":"https://www.richeyweb.com/bugs","telephone":"903-873-8460","contactType":"Technical Support","areaServed":["United States",{"@type":"Country","name":"United States","sameAs":["https://en.wikipedia.org/wiki/United_States","https://www.wikidata.org/wiki/Q30","https://g.co/kg/m/09c7w0"]},"European Union",{"@type":"AdministrativeArea","name":"European Union","sameAs":["https://en.wikipedia.org/wiki/European_Union","https://www.wikidata.org/wiki/Q458","https://g.co/kg/m/0_6t_z8"]},"United Kingdom",{"@type":"Country","name":"United Kingdom","sameAs":["https://en.wikipedia.org/wiki/United_Kingdom","https://www.wikidata.org/wiki/Q145","https://g.co/kg/m/07ssc"]},"Australia",{"@type":"Country","name":"Australia","sameAs":["https://en.wikipedia.org/wiki/Australia","https://www.wikidata.org/wiki/Q408","https://g.co/kg/m/0chghy"]},"Canada",{"@type":"Country","name":"Canada","sameAs":["https://en.wikipedia.org/wiki/Canada","https://www.wikidata.org/wiki/Q16","https://g.co/kg/m/0d060g"]},"Russia",{"@type":"Country","name":"Russia","sameAs":["https://en.wikipedia.org/wiki/Russia","https://www.wikidata.org/wiki/Q159","https://g.co/kg/m/06bnz"]},"China",{"@type":"Country","name":"China","sameAs":["https://en.wikipedia.org/wiki/China","https://www.wikidata.org/wiki/Q148","https://g.co/kg/m/0d05w3"]}],"availableLanguage":"en"}],"knowsAbout":["Computer programming",{"@type":"Thing","name":"Computer programming","sameAs":["https://en.wikipedia.org/wiki/Computer_programming","https://www.wikidata.org/wiki/Q80006","https://g.co/kg/m/01mf_"]},"PHP",{"@type":"Thing","name":"PHP","sameAs":["https://en.wikipedia.org/wiki/PHP","https://www.wikidata.org/wiki/Q59","https://g.co/kg/m/060kv"]},"JavaScript",{"@type":"Thing","name":"JavaScript","sameAs":["https://en.wikipedia.org/wiki/JavaScript","https://www.wikidata.org/wiki/Q2005","https://g.co/kg/m/02p97"]},"arduino","Computer forensics",{"@type":"Thing","name":"Computer forensics","sameAs":["https://en.wikipedia.org/wiki/Computer_forensics","https://www.wikidata.org/wiki/Q878553","https://g.co/kg/m/02wxbd"]},"White hat",{"@type":"Thing","name":"White hat","sameAs":["https://en.wikipedia.org/wiki/White_hat_(computer_security)","https://www.wikidata.org/wiki/Q7995625","https://g.co/kg/m/03ns_5"]},"Search engine optimization",{"@type":"Thing","name":"Search engine optimization","sameAs":["https://en.wikipedia.org/wiki/Search_engine_optimization","https://www.wikidata.org/wiki/Q180711","https://g.co/kg/m/019qb_"]},"Search engine marketing",{"@type":"Thing","name":"Search engine marketing","sameAs":["https://en.wikipedia.org/wiki/Search_engine_marketing","https://www.wikidata.org/wiki/Q846132","https://g.co/kg/m/06mw8r"]},"Digital marketing",{"@type":"Thing","name":"Digital marketing","sameAs":["https://en.wikipedia.org/wiki/Digital_marketing","https://www.wikidata.org/wiki/Q1323528","https://g.co/kg/g/122hcnps"]},"Web hosting service",{"@type":"Thing","name":"Web hosting service","sameAs":["https://en.wikipedia.org/wiki/Web_hosting_service","https://www.wikidata.org/wiki/Q5892272","https://g.co/kg/m/014pz4"]},"Email hosting service",{"@type":"Thing","name":"Email hosting service","sameAs":["https://en.wikipedia.org/wiki/Email_hosting_service","https://www.wikidata.org/wiki/Q5368818","https://g.co/kg/m/09w60m"]},"Internet hosting service",{"@type":"Thing","name":"Internet hosting service","sameAs":["https://en.wikipedia.org/wiki/Internet_hosting_service","https://www.wikidata.org/wiki/Q1210425","https://g.co/kg/m/09w5yw"]},"Virtual hosting",{"@type":"Thing","name":"Virtual hosting","sameAs":["https://en.wikipedia.org/wiki/Virtual_hosting","https://www.wikidata.org/wiki/Q588365","https://g.co/kg/m/024mvh"]},"Web performance",{"@type":"Thing","name":"Web performance","sameAs":["https://en.wikipedia.org/wiki/Web_performance","https://www.wikidata.org/wiki/Q7978612","https://g.co/kg/m/0gfj3f1"]},"Web content management system",{"@type":"Thing","name":"Web content management system","sameAs":["https://en.wikipedia.org/wiki/Web_content_management_system","https://www.wikidata.org/wiki/Q45211","https://g.co/kg/m/0615s2"]},"Content management system",{"@type":"Thing","name":"Content management system","sameAs":["https://en.wikipedia.org/wiki/Content_management_system","https://www.wikidata.org/wiki/Q131093","https://g.co/kg/m/0k23c"]},"General Data Protection Regulation",{"@type":"Thing","name":"General Data Protection Regulation","sameAs":["https://en.wikipedia.org/wiki/General_Data_Protection_Regulation","https://www.wikidata.org/wiki/Q1172506","https://g.co/kg/m/0pk_7xs"]},"SERP",{"@type":"Thing","name":"SERP","sameAs":["https://en.wikipedia.org/wiki/SERP","https://www.wikidata.org/wiki/Q2205811","https://g.co/kg/g/11c5szp7kc"]},"Artificial intelligence",{"@type":"Thing","name":"Artificial intelligence","sameAs":["https://en.wikipedia.org/wiki/Artificial_intelligence","https://www.wikidata.org/wiki/Q11660","https://g.co/kg/m/0mkz"]},"Prompt engineering",{"@type":"Thing","name":"Prompt engineering","sameAs":["https://en.wikipedia.org/wiki/Prompt_engineering","https://www.wikidata.org/wiki/Q108941486","https://g.co/kg/g/11p6kpgt_n"]},"E-learning",{"@type":"Thing","name":"E-learning","sameAs":["https://en.wikipedia.org/wiki/E-learning_(theory)","https://www.wikidata.org/wiki/Q182250","https://g.co/kg/g/122czm1f"]},"Sharable Content Object Reference Model",{"@type":"Thing","name":"Sharable Content Object Reference Model","sameAs":["https://en.wikipedia.org/wiki/Sharable_Content_Object_Reference_Model","https://www.wikidata.org/wiki/Q827811","https://g.co/kg/m/06_40"]},"Experience API",{"@type":"Thing","name":"Experience API","sameAs":["https://en.wikipedia.org/wiki/Experience_API","https://www.wikidata.org/wiki/Q7807728","https://g.co/kg/g/1yw9ktxr8"]},"Joomla",{"@type":"Thing","name":"Joomla","sameAs":["https://en.wikipedia.org/wiki/Joomla","https://www.wikidata.org/wiki/Q13167","https://g.co/kg/m/07qb81"]},"Nginx",{"@type":"Thing","name":"Nginx","sameAs":["https://en.wikipedia.org/wiki/Nginx","https://www.wikidata.org/wiki/Q306144","https://g.co/kg/m/02qft91"]},"MySQL",{"@type":"Thing","name":"MySQL","sameAs":["https://en.wikipedia.org/wiki/MySQL","https://www.wikidata.org/wiki/Q850","https://g.co/kg/m/04y3k"]}],"areaServed":["United States",{"@type":"Country","name":"United States","sameAs":["https://en.wikipedia.org/wiki/United_States","https://www.wikidata.org/wiki/Q30","https://g.co/kg/m/09c7w0"]},"European Union",{"@type":"AdministrativeArea","name":"European Union","sameAs":["https://en.wikipedia.org/wiki/European_Union","https://www.wikidata.org/wiki/Q458","https://g.co/kg/m/0_6t_z8"]},"United Kingdom",{"@type":"Country","name":"United Kingdom","sameAs":["https://en.wikipedia.org/wiki/United_Kingdom","https://www.wikidata.org/wiki/Q145","https://g.co/kg/m/07ssc"]},"Australia",{"@type":"Country","name":"Australia","sameAs":["https://en.wikipedia.org/wiki/Australia","https://www.wikidata.org/wiki/Q408","https://g.co/kg/m/0chghy"]},"Canada",{"@type":"Country","name":"Canada","sameAs":["https://en.wikipedia.org/wiki/Canada","https://www.wikidata.org/wiki/Q16","https://g.co/kg/m/0d060g"]},"Russia",{"@type":"Country","name":"Russia","sameAs":["https://en.wikipedia.org/wiki/Russia","https://www.wikidata.org/wiki/Q159","https://g.co/kg/m/06bnz"]},"China",{"@type":"Country","name":"China","sameAs":["https://en.wikipedia.org/wiki/China","https://www.wikidata.org/wiki/Q148","https://g.co/kg/m/0d05w3"]}],"memberOf":["Mensa International",{"@type":"Organization","name":"Mensa International","sameAs":["https://en.wikipedia.org/wiki/Mensa_International","https://www.wikidata.org/wiki/Q184194","https://g.co/kg/m/0140pf"]},"National Rifle Association",{"@type":"Organization","name":"National Rifle Association","sameAs":["https://en.wikipedia.org/wiki/National_Rifle_Association","https://www.wikidata.org/wiki/Q863259","https://g.co/kg/m/0j6f9"]},"CompTIA",{"@type":"Organization","name":"CompTIA","sameAs":["https://en.wikipedia.org/wiki/CompTIA","https://www.wikidata.org/wiki/Q597534","https://g.co/kg/m/040shq"]},"ISFCE LLC",{"@type":"Organization","name":"ISFCE LLC","sameAs":["https://isfce.com","https://g.co/kg/g/11wxm5r0rg"]}],"hasCredential":[{"@type":"EducationalOccupationalCredential","name":"Joomla 3 Certified Administrator","credentialCategory":"Certification","description":"Administrator Exam is the first available Joomla! certification exam","recognizedBy":{"@type":"Organization","name":"Open Source Matters, Inc.","sameAs":["https://en.wikipedia.org/wiki/Open_Source_Matters,_Inc.","https://g.co/kg/g/11f00wvjhz"]},"url":"https://certification.joomla.org/certified-user-directory/michael-richey","about":["Content management system",{"@type":"Thing","name":"Content management system","sameAs":["https://en.wikipedia.org/wiki/Content_management_system","https://www.wikidata.org/wiki/Q131093","https://g.co/kg/m/0k23c"]},"Web content management system",{"@type":"Thing","name":"Web content management system","sameAs":["https://en.wikipedia.org/wiki/Web_content_management_system","https://www.wikidata.org/wiki/Q45211","https://g.co/kg/m/0615s2"]},"Joomla",{"@type":"Thing","name":"Joomla","sameAs":["https://en.wikipedia.org/wiki/Joomla","https://www.wikidata.org/wiki/Q13167","https://g.co/kg/m/07qb81"]}],"educationalLevel":"expert","image":{"@type":"ImageObject","url":"https://www.richeyweb.com/images/contact/badge.webp","contentUrl":"https://www.richeyweb.com/images/contact/badge.webp","width":{"@type":"QuantitativeValue","value":300,"unitCode":"PX"},"height":{"@type":"QuantitativeValue","value":86,"unitCode":"PX"},"caption":"Joomla 3 Certified Administrator"}},{"@type":"EducationalOccupationalCredential","name":"Certified Computer Examiner","credentialCategory":"Certification","description":"Internationally recognized computer forensics certifiecation","recognizedBy":{"@type":"Organization","name":"ISFCE LLC","sameAs":["https://en.wikipedia.org/wiki/ISFCE_LLC","https://g.co/kg/g/11wxm5r0rg"]},"url":"https://isfce.com/","about":["Digital forensics",{"@type":"Thing","name":"Digital forensics","sameAs":["https://en.wikipedia.org/wiki/Digital_forensics","https://www.wikidata.org/wiki/Q3246940","https://g.co/kg/m/0cnxzfx"]},"Computer forensics",{"@type":"Thing","name":"Computer forensics","sameAs":["https://en.wikipedia.org/wiki/Computer_forensics","https://www.wikidata.org/wiki/Q878553","https://g.co/kg/m/02wxbd"]},"Mobile device forensics",{"@type":"Thing","name":"Mobile device forensics","sameAs":["https://en.wikipedia.org/wiki/Mobile_device_forensics","https://www.wikidata.org/wiki/Q6887097","https://g.co/kg/m/06zp3tp"]},"Network forensics",{"@type":"Thing","name":"Network forensics","sameAs":["https://en.wikipedia.org/wiki/Network_forensics","https://www.wikidata.org/wiki/Q7001032","https://g.co/kg/m/05pb280"]},"Database forensics",{"@type":"Thing","name":"Database forensics","sameAs":["https://en.wikipedia.org/wiki/Database_forensics","https://www.wikidata.org/wiki/Q5227405","https://g.co/kg/m/0cgqsy"]}],"educationalLevel":"expert","image":{"@type":"ImageObject","url":"https://www.richeyweb.com/images/contact/isfce-cce.webp","contentUrl":"https://www.richeyweb.com/images/contact/isfce-cce.webp","width":{"@type":"QuantitativeValue","value":150,"unitCode":"PX"},"height":{"@type":"QuantitativeValue","value":150,"unitCode":"PX"},"caption":"Certified Computer Examiner"}}],"hasOfferCatalog":{"@type":"OfferCatalog","name":"Web Services","itemListElement":[{"@type":"Offer","itemOffered":{"@type":"Service","name":"Hosting"}},{"@type":"Offer","itemOffered":{"@type":"Service","name":"Development"}},{"@type":"Offer","itemOffered":{"@type":"Service","name":"Search Engine Optimization"}}]}},{"@type":"WebSite","@id":"https://www.richeyweb.com/#website","url":"https://www.richeyweb.com/","name":"RicheyWeb","publisher":{"@id":"https://www.richeyweb.com/#organization"},"potentialAction":{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://www.richeyweb.com/search?q={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string","valueMaxLength":256,"valueMinLength":2,"valuePattern":"^[A-Za-z0-9\\s]+$"}},"creator":{"@id":"https://www.richeyweb.com/#organization"},"copyrightHolder":{"@id":"https://www.richeyweb.com/#organization"}},{"@type":"WebPage","@id":"https://www.richeyweb.com/software/documentation/content-orbit#webpage","url":"https://www.richeyweb.com/software/documentation/content-orbit","name":"Content - Orbit Documentation","description":"Content - Orbit documentation: Learn to create stunning 3D carousels in Joomla with easy setup, configuration, and scripting. Free plugin!","isPartOf":{"@id":"https://www.richeyweb.com/#website"},"about":{"@id":"https://www.richeyweb.com/#organization"},"inLanguage":"en-GB"},{"@type":"Article","headline":"Content - Orbit Documentation","description":"Content - Orbit documentation: Learn to create stunning 3D carousels in Joomla with easy setup, configuration, and scripting. Free plugin!","author":{"@type":"Person","name":"Michael Richey","url":"https://www.richeyweb.com/contact-us","@id":"https://www.richeyweb.com/contact-us#person"},"datePublished":"2025-08-18T00:00:00+00:00","dateModified":"2025-11-24T00:00:00+00:00","about":["Joomla",{"@type":"Thing","name":"Joomla","sameAs":["https://en.wikipedia.org/wiki/Joomla","https://www.wikidata.org/wiki/Q13167","https://g.co/kg/m/07qb81"]},"Content management system",{"@type":"Thing","name":"Content management system","sameAs":["https://en.wikipedia.org/wiki/Content_management_system","https://www.wikidata.org/wiki/Q131093","https://g.co/kg/m/0k23c"]},"Three-dimensional space",{"@type":"Thing","name":"Three-dimensional space","sameAs":["https://en.wikipedia.org/wiki/Three-dimensional_space","https://www.wikidata.org/wiki/Q34929","https://g.co/kg/g/122wtj3c"]},"Slide show",{"@type":"Thing","name":"Slide show","sameAs":["https://en.wikipedia.org/wiki/Slide_show","https://www.wikidata.org/wiki/Q904997","https://g.co/kg/m/0381zh"]},"Technical documentation",{"@type":"Thing","name":"Technical documentation","sameAs":["https://en.wikipedia.org/wiki/Technical_documentation","https://www.wikidata.org/wiki/Q1413406","https://g.co/kg/m/0521g6n"]},"Content - Orbit",{"@type":"Thing","@id":"https://www.richeyweb.com/software/joomla/plugins/content-orbit/#softwareapplication","name":"Content - Orbit","sameAs":["https://extensions.joomla.org/extension/photos-a-images/rotators/content-orbit/","https://en.wikipedia.org/wiki/Content_-_Orbit"]}],"mentions":["David Desandro",{"@type":"Person","name":"David Desandro","sameAs":["https://en.wikipedia.org/wiki/David_Desandro","https://g.co/kg/g/11gg4k6g88"]},"CSS",{"@type":"Thing","name":"CSS","sameAs":["https://en.wikipedia.org/wiki/CSS","https://www.wikidata.org/wiki/Q46441","https://g.co/kg/m/015tjh"]},"Three-dimensional space",{"@type":"Thing","name":"Three-dimensional space","sameAs":["https://en.wikipedia.org/wiki/Three-dimensional_space","https://www.wikidata.org/wiki/Q34929","https://g.co/kg/g/122wtj3c"]},"Google Chrome",{"@type":"Thing","name":"Google Chrome","sameAs":["https://en.wikipedia.org/wiki/Google_Chrome","https://www.wikidata.org/wiki/Q777","https://g.co/kg/m/04j7cyf"]},"Safari",{"@type":"Thing","name":"Safari","sameAs":["https://en.wikipedia.org/wiki/Safari_(web_browser)","https://www.wikidata.org/wiki/Q849944","https://g.co/kg/m/0168s_"]},"Microsoft Edge",{"@type":"Thing","name":"Microsoft Edge","sameAs":["https://en.wikipedia.org/wiki/Microsoft_Edge","https://www.wikidata.org/wiki/Q133247080","https://g.co/kg/m/012kxdw8"]}],"@id":"https://www.richeyweb.com/software/documentation/content-orbit#article","isPartOf":{"@id":"https://www.richeyweb.com/software/documentation/content-orbit#webpage"},"publisher":{"@id":"https://www.richeyweb.com/#organization"},"articleSection":"Documentation","url":"https://www.richeyweb.com/software/documentation/content-orbit"}]}
```
