change the pink hyperlink color in Bueno
-
I am a newbie! Which line and under which catagory to I change the color of the hyperlinks? And frankly, what do I write?
The blog I need help with is: (visible only to logged in users)
-
Does this help ? https://en.forums.wordpress.com/tags/change-font-color
Also note this > When you alter a theme’s stylesheet, you only need to put in the Editor the modification/additions to the CSS, not the entire thing. Read this for more info:
http://csswiz.wordpress.com/2009/10/15/if-you-have-the-wp-com-css-upgrade/ -
It would be here. Just change the hex color code to your desired color.
a:link, a:visited { color: #F3686D; } -
-
-
Here are the lines.
.widget ul li a:link, .widget ul li a:visited { border-bottom: 1px solid #FBDDDF; }And in anticpation, here is the pink widget area at the bottom.
#extended-footer { background-color: #FBDDDF; }And the search box button.
input.submit { background-color: #F3686D; } -
-
-
The post date circle is a PNG image with a transparent background and is here.
.post .date { background: url("default/date.png") no-repeat scroll left top transparent; }It is a 70px x 70px image. You would make a new one, upload it to the media library, get the URL of it and then replace
default/date.pngwith the full URL of your new image.
-
In the CSS tab of custom design, delete all the informational text in the text area and copy and paste the code I have given into the CSS edit window. Then edit the color codes as desired.
And G’day TT!
-
-
-
@TSP
This is a sincere question. Why bother changing the color using CSS when one can choose another color scheme here > Theme Options -
-
@TT, it depends on whether there is a color scheme that has colors you like or not I guess. It could be that they are not quite what you want, and if you have the CSS upgrade, you don’t have to settle for the defaults.
@mybheadsup, which “line” code are you talking about?
-
Never mind, I see what you are talking about. There is another one you need to change.
.widget h3 { border-bottom: 1px solid #FFFFFF; } -
You are awesome ! and the best! Everything is perfect except the pink line under ‘about’. Is there a way to even eliminate it? And this will hopefully be the last question :p
-
i lied not the last question. So column margin is controls if the column goes up and down, right? So what do I need to control the column to get left to right?
-
Two borders defined for the nav. Current/hover and non-hover.
#pagenav a { border-bottom: 4px solid #FBDDDF; } #pagenav li.current_page_item a, #pagenav li.current-menu-item a, #pagenav li a:hover { border-color: #F3686D; }On your last question, could you explain that a little more. I’m not sure what you are wanting.
-
thats question was concerning the positioning. So I researched and learned about ( for example: {postition; relative; top: 15px; left: -10px; } ) So I know how to move stuff around, like I did for the date, now I need the code to move the body of text few px up. You know?
- The topic ‘change the pink hyperlink color in Bueno’ is closed to new replies.