• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

having a brain fart. how to open a new browser when clicking a link in css

johneetrash

Diamond Member
im trying to edit the properties of 'a'.. but whats the variable thing to make a link open a new browser?

a { font-family: "Trebuchet MS", Tahoma, Arial; font-size: 10pt; color: #CC0000; text-decoration: none}
 
Originally posted by: Superwormy
Not sure how to do this is CSS, but you could just make your link <a target="_blank" href="...

You can't do this in CSS! CSS is a visual formatting model, not a markup language. As Superwormy says, you need to use target="_blank" in your HTML code.

teknodude
 
Back
Top