![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
Hello, I have a line of code below where I want to manipulate the size, style, and alignment of the two words "Mobile Site". I can do this if I wanted Mobile Site to be on a separate line. But, I want it on the same line with the other text. So I don't think I want to use a "p class" or a "div class". Is there a way to setup the CSS so that I can keep Mobile Site on the same line but change the size, style, and make it align left? You can see this at www.usernomics.com but I am using an image instead of text right now. Thanks, Bob ___ div id="lead1"><h1><a href="http://www.usernomics.com/mobile">Mobile Site</a><a href="user-interface-design.html" title="User Interface Design">USER INTERFACE DESIGN</a> - <a href="usability.html" title="Usability">USABILITY</a> - <a href="human-factors.html" title="Human Factors">HUMAN FACTORS</a> - <a href="ergonomics.html" title="Ergonomics">ERGONOMICS</a></h1></div |
#3
| |||
| |||
|
|
Hello, I have a line of code below where I want to manipulate the size, style, and alignment of the two words "Mobile Site". I can do this if I wanted Mobile Site to be on a separate line. But, I want it on the same line with the other text. So I don't think I want to use a "p class" or a "div class". Is there a way to setup the CSS so that I can keep Mobile Site on the same line but change the size, style, and make it align left? You can see this at www.usernomics.com but I am using an image instead of text right now. Thanks, Bob ___ div id="lead1"><h1><a href="http://www.usernomics.com/mobile">Mobile Site</a><a href="user-interface-design.html" title="User Interface Design">USER INTERFACE DESIGN</a> - <a href="usability.html" title="Usability">USABILITY</a> - <a href="human-factors.html" title="Human Factors">HUMAN FACTORS</a> - <a href="ergonomics.html" title="Ergonomics">ERGONOMICS</a></h1></div Do you want to just do the words "Mobile Site" in html text and be rid of the image of this text while leaving the image of the rest of the items on that line in image form? Surely not? So do you want all those items in HTML text, ie. Mobile Site, Job Board, ... ? And now what is exactly the question? How to not let the words wrap? How to position them as a group? The first thing needs to be done is to put them into a horizontal list format and then apply css to the ul and li's. Interested in h=ving a go at this and supplying a url for just the relevant bits you are having trouble with? |
#4
| |||
| |||
|
|
It is the line that says "Mobile Site <space> User Interface Design - Usability - Human Factors - Ergonomics" that I am talking about. This is all text except for Mobile Site that is an image. I want to remove the image in that line. I am not talking about the line that says " Mobile Site - Job Board - Ergonomics Store". These are all images and are OK as is. So, I want to keep it looking the same as it appears at www.usernomics.com but I want the image that now reads Mobile Site to be text rather than an image. That is, the size, font, and position stays the same as it is but is now text rather than an image. I do want the line to be liquid as it now is for smaller screens. |
#5
| |||
| |||
|
|
It is the line that says "Mobile Site <space> User Interface Design - Usability - Human Factors - Ergonomics" that I am talking about. This is all text except for Mobile Site that is an image. I want to remove the image in that line. I am not talking about the line that says " Mobile Site - Job Board - Ergonomics Store". These are all images and are OK as is. So, I want to keep it looking the same as it appears at www.usernomics.com but I want the image that now reads Mobile Site to be text rather than an image. That is, the size, font, and position stays the same as it is but is now text rather than an image. I do want the line to be liquid as it now is for smaller screens. Well, you need to move the <H1> to the left of MOBILE SITE: Something like this: div id="lead1"><h1><a href="http://www.usernomics.com/mobile" title="Mobile Site">MOBILE SITE</a> - <a href="user-interface-design.html" title="User Interface Design">USER INTERFACE DESIGN</a> - <a href="usability.html" title="Usability">USABILITY</a> - <a href="human-factors.html" title="Human Factors">HUMAN FACTORS</a> - <a href="ergonomics.html" title="Ergonomics">ERGONOMICS</a></h1></div -- |
#6
| |||
| |||
|
|
Can you see a way to manipulate My Site alone? |
#7
| |||
| |||
|
|
It is the line that says "Mobile Site <space> User Interface Design - Usability - Human Factors - Ergonomics" that I am talking about. This is all text except for Mobile Site that is an image. I want to remove the image in that line. I am not talking about the line that says " Mobile Site - Job Board - Ergonomics Store". These are all images and are OK as is. So, I want to keep it looking the same as it appears at www.usernomics.com but I want the image that now reads Mobile Site to be text rather than an image. That is, the size, font, and position stays the same as it is but is now text rather than an image. I do want the line to be liquid as it now is for smaller screens. Well, you need to move the <H1> to the left of MOBILE SITE: Something like this: div id="lead1"><h1><a href="http://www.usernomics.com/mobile" title="Mobile Site">MOBILE SITE</a> - <a href="user-interface-design.html" title="User Interface Design">USER INTERFACE DESIGN</a> - <a href="usability.html" title="Usability">USABILITY</a> - <a href="human-factors.html" title="Human Factors">HUMAN FACTORS</a> - <a href="ergonomics.html" title="Ergonomics">ERGONOMICS</a></h1></div -- Hi Again, That is what I tried as a starting point. But that makes the text Mobil Site have the same attributes as the other words. The basis of my question is how to set that up so that I can control the text My Site independently and change it's attributes alone. Right now it is all controlled by the following CSS: #lead1 h1{ /* Used for Top Banner ONLY */ font-size: 99%; color: #f7f0f7; background: #9c989c; text-align: center; margin: 0; padding: 2px 15px; letter-spacing:2px; border-top: 2px solid black; } Can you see a way to manipulate My Site alone? Thanks Again, Bob |
#8
| |||
| |||
|
#9
| |||
| |||
|
|
Hello, |
|
It is the line that says "Mobile Site <space> User Interface Design - Usability - Human Factors - Ergonomics" that I am talking about. |
|
This is all text except for Mobile Site that is an image. |
#10
| |||
| |||
|
|
Something like this: div id="lead1"><h1><a href="http://www.usernomics.com/mobile" title="Mobile Site">MOBILE SITE</a> - <a href="user-interface-design.html" title="User Interface Design">USER INTERFACE DESIGN</a> - <a href="usability.html" title="Usability">USABILITY</a> - <a href="human-factors.html" title="Human Factors">HUMAN FACTORS</a> - <a href="ergonomics.html" title="Ergonomics">ERGONOMICS</a></h1></div |
![]() |
| Thread Tools | |
| Display Modes | |
| |