Customizing SMF > Graphics and Templates
signature problem --> "float bottom" ?
eladio:
First off all, sry on my bad english..
I have problem with signature (smf 2.0.2 - curve theme), and i am not shure how to explain, but i will try...
I need that signature is "aligned"on the bottom of the post.. Two days i try to find a solution for that problem (i am not PRO, but i know a little about CSS), but nothing..
No idea..
I have find solution that help a little for my need with playing with margins of other elements:
#forumposts .reportlinks
{
margin-bottom: 13.5em;
margin-right: 1.5em;
text-align: right;
clear: right;
}
But that solution have problem with empty space on bigger posts..
1. first picture explain my problem
2. second picture show problem of my solution
Ps
..one more thing, i wont to change color for "usernames" (last post column), only for that , any idea?
for example, i have find solution for "title" column:
#messageindex span a
{
color: #ba0526;
}
thanks
mojskuter.com/forum
Antechinus:
The best option is to set a minimum height on the post itself. You will have to adjust this to suit your own preferences.
--- Code: ---.inner
{
padding: 1em 1em 2px 0;
margin: 0 1em 0 0;
border-top: 1px solid #99a;
min-height: 100px;
}
--- End code ---
Second one:
--- Code: ---.topic table .table_grid td.lastpost a
{
color: #000;
}
--- End code ---
eladio:
thanks for the first problem, great idea, solution is easy, THANKS one more time (if you ever come in Croatia, a will buy a beer ;) )
second solution dont work, maybe i have explain it bad,
look a picture, in "last post column" (ok also for main page , and subforums page) i need change color only for usernames...
mashby:
You could just update the color of all links here in this file (line 9):
http://www.mojskuter.com/forum/Themes/default/css/index.css?fin20
Find:
--- Code: ---a:link, a:visited
{
color: #000;
text-decoration: none;
}
--- End code ---
Replace with:
--- Code: ---a:link, a:visited
{
color: #BA0526;
text-decoration: none;
}
--- End code ---
That will make all of the links red that aren't colored already.
Antechinus:
Sorry. Code had a typo in it. This will work:
--- Code: ---.topic_table .table_grid td.lastpost a
{
color: #000;
}
--- End code ---
Navigation
[0] Message Index
[#] Next page
Go to full version