i'm wanting to use this style and i'm not sure the creator is active currently so i was hoping someone here could help. i'm super rusty with css and hesitant to fiddle around too much, so could someone please point me in the right direction for making the entries column wider/more responsive?
alternatively, isn't there some code i could use to force images to fit within the column while still being the proper size if someone clicks through to view the individual entry?
it would also be super handy to have a box that lists top tags and titles of recent entries. where in the code would that element go?
any help for this noob would be much appreciated.
alternatively, isn't there some code i could use to force images to fit within the column while still being the proper size if someone clicks through to view the individual entry?
it would also be super handy to have a box that lists top tags and titles of recent entries. where in the code would that element go?
any help for this noob would be much appreciated.
no subject
Date: 2022-11-15 04:22 pm (UTC)@media only screen and (min-width: 45em) {
#canvas {
padding-left: 15%;
}
#primary {
float: left;
width: 45%;
margin-right: .6em;
}
so if you want it to be wider you can go up to 50% and probably more. as for images, you can inline edit each one by editing the css for the image. for example, if you add an image through rich text or html, either way in the html editor it'll look something like
<*img src="url">, and you can change the width and make it responsive by adding a percentage. it's just another element in the img tag so it'd go something like<*img src="url" width="80%">. remove the asterisks when using these codes of course, i just added them so they won't actually try to display images lol.sadly i don't have an answer for your final question but hopefully someone else can help out!
no subject
Date: 2022-11-15 04:46 pm (UTC)