LostPhysx
LostPhysx

Reputation: 3641

How to use a custom Style Sheet in WordPress

I want to make links on my WordPress page white. For that I tried to include the css-code into the link like this:

<a href="http://www.google.com" style="a:link{ color: white; }">Google</a>

This did not work. I Can´t see a style editing or style inserting option on my wp_admin. How can I get my stylesheet in?

Upvotes: 2

Views: 111

Answers (2)

Edwin Hernandez
Edwin Hernandez

Reputation: 20

To edityour style sheet you need to go to the Appearance TAB at the left side of your WP_admin. in the TAb Appearance you see the Editior TAb at the Bottom of The TAB Appearence. Click on the tab After Clicking on that tab. After clicking on that tab you see your style sheet from their you can edit or update your style sheet.by the helpof this you easily eidt your stylesheet. But in this you need to find your css as where you properly need to edit.

Upvotes: 1

user1721049
user1721049

Reputation:

That is a problem with the style syntax, please update the code:

<a href="http://www.google.com" style="color: white;">Google</a>

That will fix the problem.

Upvotes: 2

Related Questions