nmsakura: (Default)
Nicole ([personal profile] nmsakura) wrote in [community profile] style_system2011-06-17 08:19 am
Entry tags:

Formatting Cut-Tags?!

I have a question: I would just like to ask how to go about formatting the Cut Tag? I've tried:

span.cuttag a
.cuttag a

and nothing happened. I would like to change the link style and remove the arrow (if possible).

Sorry, if this has been posted elsewhere. My search came up with no results.

Thanks,
- N
allen: (dwdev2)

[personal profile] allen 2011-06-17 03:56 pm (UTC)(link)
The arrow gets inserted via javascript as an img tag. I haven't tested it, but you could probably do something like

span.cuttag a img {
display: none;
}
ninetydegrees: Art: self-portrait (Default)

[personal profile] ninetydegrees 2011-06-17 07:35 pm (UTC)(link)
To style the link:

.cuttag_container a {

}
marahmarie: (M In M Forever) (Default)

[personal profile] marahmarie 2011-06-17 10:17 pm (UTC)(link)
To change the link style (it seems you to want to hide the underline?):

.cuttag_container a {
text-decoration: none;
}