PDA

View Full Version : Aligning problems...


imported_DiPpY^
01-12-2003, 05:07 AM
ive been having som problems with the aligning on the main forums page. this is what it looks like now .. but i want every below the cat. image aligned with it.

See attachment

imported_DiPpY^
01-12-2003, 05:08 AM
here is what i want ... everything inside the red lines and aligned

See attachment

Tony G
01-12-2003, 05:22 AM
Have you used Category Spacing?

imported_DiPpY^
01-12-2003, 03:22 PM
yes

Cypher720
01-12-2003, 06:19 PM
hrm...can you post your code?

imported_DiPpY^
01-12-2003, 07:51 PM
ahh nevermind i found the problem ... my main table width was 75 and my content tablke width was 100 .. so i had to chnage my content table with to 72 to match the cat image.

but if you could help me out and tell me how to make the cat text non underline but a link?

Cypher720
01-12-2003, 10:02 PM
you have to use CSS for that

imported_DiPpY^
01-12-2003, 10:54 PM
do i make a new one??

Cypher720
01-12-2003, 11:05 PM
no - heres how

in the styles section under ACP, edit the head insert.

find #cat A:hover {
COLOR: {categoryfontcolor};
TEXT-DECORATION: underline;

replace that with#cat A:hover {
COLOR: {categoryfontcolor};
TEXT-DECORATION: none;

imported_DiPpY^
01-13-2003, 12:49 AM
i do have #cat A:hover {
COLOR: {categoryfontcolor};
TEXT-DECORATION: none;



and heres what it looks like ( see attachment )

i want it not to be undelined..

Cypher720
01-13-2003, 01:45 AM
i dont know why its not working...hrm

Tony G
01-13-2003, 02:08 AM
Try using this instead:

#cat A:link, #cat A:visited, #cat A:active {
COLOR: {categoryfontcolor};
TEXT-DECORATION: none;
}
#cat A:hover {
COLOR: {categoryfontcolor};
TEXT-DECORATION: underline;
}

That will give it an underline ONLY when you have your mouse cursor over the link.

Cypher720
01-13-2003, 06:41 PM
i thought he didnt want any underline./..??

Tony G
01-13-2003, 10:38 PM
He didn't want one for when it's not hovered over. Taking the underline out when hovered is bad because it will be harder to determine whats text and whats links to some people.

If you still don't want underlines at all after hovering use this:

#cat A:link, #cat A:visited, #cat A:active {
COLOR: {categoryfontcolor};
TEXT-DECORATION: none;
}
#cat A:hover {
COLOR: {categoryfontcolor};
TEXT-DECORATION: none;
}

Cypher720
01-13-2003, 10:45 PM
tru....i thought about that...good going