I know this pretty lame but when it comes to CSS and detailing a website, I'm lame I need to know how too remove the underscore using inline style. I think that's the best way but I'm open to other suggestions. Since it is a WordPress site, other CSS is in play. Inline best way to overcome that I think? I'm using Komposer to and tried to force it to go away but I had no luck. Thanks for the help.
U must find your css "text-decoration:" for links and instead of underlane put: text-decoration: none.
Tank Toneek, but using Inline i can change it for the single element. That's what i need but what you told me may be enough to get me there. I'll go to W3C schools and look for how to write that. Thanks.
If you use inline CSS... you write it like this: <a href="wherever" style="text-decoration:none;">wherever</a> Code (markup): It is much better if you use an external CSS ... visit w3schools.com
so you can just simply add <style> a { text-decoration: none; } </style> between your <head></head> tags. This will take off all the underlines from all the links.
I don't need it in the header. I need it INLINE. Here is the code but the dang thing STILL shows the freaking underscore and it looks bad. It looks bad in other ways too. But starting here <span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; font-size: medium; font-family: Georgia;"><span class="Apple-style-span" style="font-size: 22px; text-align: center; text-transform: capitalize;"><br> </span></span> <div style="text-align: center;"><a href="http://expatmanual.com" style="font-family: Georgia; color: rgb(255, 255, 204);"><span class="Apple-style-span" style="border-collapse: separate; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; font-size: medium;"><span class="Apple-style-span" style="font-size: 22px; text-align: center; text-transform: capitalize; text-decoration:none;">Click Here For More information</span></span></a><br> Code (markup): What am I doing wrong? Thanks for the help.
I just need this changed in ONE place. My CSS is very weak, defining a class or style or whatever is beyond me. I posted the code I have for now. I'm going to to play with putting it right in the URL like I think you're trying to tell me.
This is your code. <span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; font-size: medium; font-family: Georgia;"><span class="Apple-style-span" style="font-size: 22px; text-align: center; text-transform: capitalize;"><br> </span></span> <div style="text-align: center;"><a href="http://expatmanual.com" style="font-family: Georgia; color: rgb(255, 255, 204);"><span class="Apple-style-span" style="border-collapse: separate; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; font-size: medium;"><span class="Apple-style-span" style="font-size: 22px; text-align: center; text-transform: capitalize; text-decoration:none;">Click Here For More information</span></span></a><br> Code (markup): Use this instead. <span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; font-size: medium; font-family: Georgia;"> <span class="Apple-style-span" style="font-size: 22px; text-align: center; text-transform: capitalize;"><br> </span></span> <div style="text-align: center;"><a href="http://expatmanual.com" style="font-family: Georgia; color: rgb(255, 255, 204); text-decoration:none;"><span class="Apple-style-span" style="border-collapse: separate; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; font-size: medium;"><span class="Apple-style-span" style="font-size: 22px; text-align: center; text-transform: capitalize; text-decoration:none;">Click Here For More information</span></span></a><br> Code (markup): Hope it helps