Back to Examples
Superblog
Enhance your Superblog's layout with customizable CSS snippets. Easily adjust elements, menus, and more for a stunning blog design!
Lines
2,304
Sections
103
Want your own llms.txt file?
Generate a professional, AI-friendly file for your website in minutes!
llms.txt Preview
# CSS Snippets
You can use these snippets to quickly make adjustments to the layout, elements, menus, etc of your superblog. Just add the new CSS in the ["Custom CSS"](./dashboard/settings/#custom-css) section and click the "Deploy" button.
## Manipulate the image's max-width
Increase the image width to exceed the max-width of the blog post's content.
```css
.se-component.se-image-container.__se__float-none img {
max-width: 120%;
width: 120%;
margin-left: -10%;
}
@media (max-width: 768px) {
.se-component.se-image-container.__se__float-none img {
max-width: 100%;
width: 100%;
margin-left: 0;
}
}
```
## Manipulate the iframe's max-width
Increase the iframe width to exceed the max-width of the blog post's content.
```css
.se-component.se-video-container.__se__float-none {
max-width: 140% !important;
width: 140% !important;
margin-left: -20% !important;
position: relative;
}
.se-component.se-video-container.__se__float-none figure {
width: 100% !important;
padding-bottom: 56.25% !important;
margin: 0 !important;
}
.se-component.se-video-container.__se__float-none iframe {
position: absolute !important;
top: 0 !important;
left: 0 !important;
width: 100% !important;
height: 100% !important;
}
@media (max-width: 768px) {
.se-component.se-video-container.__se__float-none {
max-width: 100% !important;
width: 100% !important;
margin-left: 0 !important;
}
}
```
## Center-align the post title
```css
.post-title {
text-align: center;
}
```
<!-- ## Change background color
```css
:root {
--theme-color: #16023E;
--body-bg-color: #FBF6FF;
}
* .footer {
background-color: var(--theme-color) !important;
}
.nav-header {
background: var(--body-bg-color) !important;
}
button#nav-cta {
background-color: #F3C34F !important;
color: #000 !important;
border-radius: 24px !important;
}
.__se__toc-new-container {
background-color: var(--theme-color) !important;
}
.sitebox {
background-color: var(--theme-color) !important;
}
Preview of Superblog's llms.txt file. View complete file (2,304 lines) →
Ready to create yours?
Generate a professional llms.txt file for your website in minutes with our AI-powered tool.
Generate Your llms.txt File