Status
Not open for further replies.

stefan-te

Active Member
1,486
2009
493
5,105
ccHZv.png

I want this to be centered, you can check this at (example)

Thanks !:)
 
13 comments
Add a div after div class="meta" and add some css style for it, for example:

[slide]http://i.imgur.com/m4oW5.png[/slide]

Play with the style till you're satisfied and don't forget to clear the cache afterwards.
 
Thanks I sorted it out !:)

Anyway, one more question.

How to enlarge the green thing under the skin ( the shadow)
[slide]http://i.imgur.com/7WSIr.png[/slide]
 
That could be fixed in many ways, fastest would be to add a height value to the post wrapper:

Edit: filmstube/lib/css/skeleton.css (line:30) - add height: 478px; to the style, you'll end up with this

[slide]http://i.imgur.com/ZLuOm.jpg[/slide]
 
My bad, it was line 38.

Change this:
.container .four.columns {
width: 220px;
}

to this:
.container .four.columns {
width: 220px;
height: 478px;
}
 
You can add overflow:hidden to the style, adding this would work:

.tags {
height: 19px;
overflow: hidden;
}

That way, if you have too many tags, only the first line of them will show.
 
Thanks, I'll try..

Anyway, how to clear this 'mess' ? For every posts the image get's uploaded on my server in 3 different sizes + original... how to make the image to be used from external links.. ?

Code:
http://filmstube.org/wp-content/uploads/2012/09/
 
I guess that's just how the theme works, if you want, I can modify it to automatically make a thumbnail from the image/cover that's included in the post, that way you'll save time and bandwidth. PM me if interested. :)
 
Status
Not open for further replies.
Back
Top