CSS Customisation
-
Hi,
I have some clarifications.when i press open a post, there are two columns: left for image and right for write ups. Is it possible to make the left side smaller?
Is there also a way to make the instagram and blog follow button widget, appear on top?
Thanks!
The blog I need help with is: (visible only to logged in users)
-
Hi there, we can do this with the following custom CSS, but it will require the WordPress.com Premium Plan upgrade.
You can try out and preview custom CSS before you buy as explained here. This is the CSS you would need. Since below 1200px in width, the image goes to a narrower width, I’ve limited this change to 1201px and wider screens using a Media Query. Let me know what you think.
@media screen and (min-width: 1201px) { .is-singular:not(.home) .site-inner { width: 65% !important; } .is-singular .entry-media, .is-singular .entry-header { width: 35% !important; } }
- The topic ‘CSS Customisation’ is closed to new replies.