Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Help with Changing Text Color in the Layout I Made

edited September 2013 in General Services
Hi. So I'm slowly but surely learning how to make layouts using a free html learning site. Anyway, I want to change all the text on my page to be red. I managed to figure out how to turn all my links red and how to make "Fine K9s" and the "Net Worth:x amount of vpc" info red,but I need help on how to turn the following things from their current black color(or green color in the case of the "Online Now!") into red as well:<br><br>-At the very top of the page where it says "Wolf Song:Call of the Wild Kennels Owned by Jaromir"<br>-"Online Now!"<br>-The breed,gender,age, and market columns including the titles "Breed","Gender", "Age", "Market", as well as all the info underneath them.<br><br>Thanks so much to anyone who can help me.<br><br>Oh,and here's my kennel link with the layout on it:<br><a href="http://virtualpups.com/viewkennel.php?initial_record=10&sort_post=&sort_direction=DESC&kennel=503532"; target="_blank" class="bb-url">http://virtualpups.com/viewkennel.php?i ... nel=503532</a>
167jcer.png

Disney's Frozen avatar and banner by me.It's an amazing movie. Everyone should totally go see it.

"The cold never bothered me anyway."-Elsa the Snow Queen

Comments

  • It looks to me that you haven't used proper CSS. Copy and paste this.<br>I don't think you can change the color of online now. Not sure.<br><br>
    <br><br><style type="text/css" author="reina"><br>body {<br>color: red;<br>background-image:url('http://i44.tinypic.com/29fcn77.png');<br>background-repeat:repeat;<br>}<br><br>a {<br>color: red;<br>}<br><br>a:hover {<br>color: red;<br>}<br><br>a:visited {<br>color: red;<br>}<br><br>a:hover { <br>color: red;<br>}<br><br></style><br><br>
    "war cry" presas canarios, aryan molossus, and cao.
  • I used html,not css. When I tried to use css, it didn't work so I thought you couldn't use css on layouts on here or something?
    167jcer.png

    Disney's Frozen avatar and banner by me.It's an amazing movie. Everyone should totally go see it.

    "The cold never bothered me anyway."-Elsa the Snow Queen
  • You can use CSS on VP right now. In the future, the types of code you'll be able to use will be different though. You can find really good CSS tutorials online, and CSS is really easy to learn once you get the basics down. I recommend w3schools.com<br><br>Oh, I do want to mention that, when working with any code, you need to make sure it's compatible in several browsers. Often times people only check the compatibility with one browser, and it may look drastically different on a different one. Also, you will want to avoid Internet Explorer (IE)-only or non-standardized code. It's a waste of time to learn those codes for it to only affect poorly handled browsers, such as IE. Typically you'd want to check your code in Google Chrome, Mozilla Firefox, and/or Safari. You could also use Opera and IE. Make sure that your code is checked in at least two browsers, if not more. <br><br>The only thing with the code reina provided you is that "author="reina"" is not necessary. I understand why she added it in, but it is not an essential part of code and you shouldn't use it. It's not copyright infringement as that is a basic CSS set up. You'd have to remove it later on when you started adding your own style tags, so it's better to remove the excess part now rather than later.<br><br>Yes, you can change the online now and other text. My younger brother went in years ago and helped me figure out why 'normal' CSS doesn't affect it. It's easy to add to the style sheet. Below is the code you need to adjust the color of online now/kennel name/everything else text. <br><br>html {<br>background: #000111;<br><span style="font-weight:bold">color: #000;</span><br>}<br><br>font {<br><span style="font-weight:bold">color: #000;</span><br>}<br><br><br>The portions in bold are to remain the exact same color, unless you want two different colors for the kennel name/online now text. You can alter the background portion to set a background image, repeated or no, etc. Again, once you look at some CSS tutorials, you'll get to understand what each bit of code means.<br><br>Remember that all CSS code is to be contained within a style tag. <style type="text/css"> </style> Remember that all tags and styles must be contained, or else you will get non-functioning code. <br><br>If you want help learning CSS or anything else, you can always message me. If I don't know it, two of my family members are professional programmers/designers/engineers and they'd know the answer.
    35ea329b-0292-43cf-beb5-41d1eb59699a_zpsc271b0c6.jpg
    On an indefinite hiatus.
Sign In or Register to comment.