Monday 17 October 2011

A Simple CSS problem?

I defined a site in dreamweaver. Then i attached a css file to the index page. Then i set the 'font' tag in css to verdana, with size 9.... but when i type something on the index page....i see no change to the font.

I want verdana (with size 9)....in full site. I want that whenever i type anything it automatically becomes of that font. What to do...plzzzzz help...A Simple CSS problem?Your index page and all other pages have to be linked to the CSS file in Dreamweaver and the same when you upload them to your site.



Ron

My web site was ranked high in yahoo search now it is gone from the results. What do I need to change?

In the past a search for Morgan Hill Dance would usually list our site (http://www.geocities.com/morganhilldance) at number three. I recently changed the format and added frames (I used MS Word) and added some Meta key words. The index is now basically just the frame format. I'm not sure where I should put the title and Meta tags anymore so I put them on every page. Is this right or should I just put a title and key words only on the index page. Is yahoo punishing me? Also, did MS Word add too much superfluous junk?My web site was ranked high in yahoo search now it is gone from the results. What do I need to change?Hi, your meta information is improperly formatted...



%26lt;meta%26gt; is not a tag. After your title, you should have the following:



%26lt;META NAME=%26quot;description%26quot; Content=%26quot;Your Page description goes here%26quot;%26gt;

%26lt;META NAME=%26quot;keywords%26quot; Content=%26quot;comma delimited string of keywords here%26quot;%26gt;





that should do it..
My web site was ranked high in yahoo search now it is gone from the results. What do I need to change?
contact yahoo. they may have an explanation.
My web site was ranked high in yahoo search now it is gone from the results. What do I need to change?
You provided yourself with the answer in your question.



You put it into frames.



They are notoriously bad for search engines. The se's like to have some text to get their teeth into and by changing over to a frames based layout you have removed all the text that was on the page.



It would be good to write the page in a different program also. Try to use standard html as the coding is very bad from office / word.

How do I add a background to this web page with this code.?

Ok. Any help would be great. I have a myspace profile page and would like to change the background in my layout from gray to a image I have saved on photobucket.com and my computer (obviously). This is the code at the begining. NOTE: I didnt use any editor online. I used codes from a layout I found so it's different than any myspace page out there.



%26lt;style type=%26quot;text/css%26quot;%26gt;

body {

font-family: helvetica, arial, sans-serif;

font-size: 62.5%;

background-color: 444444;

}



table, td {

background-color: 444444;

}



.main{

position:absolute;

left:50%;

top:125px;

width:800px;

z-index:1;

margin-left:-400px;

}



.main a:link, .main a:active, .main a:visited {

color: a3bdc8;

text-decoration: none;

font-size: 1em;

}



.main a:hover {

color: ffffff;

}



img {

border: 0;

filter:alpha(opacity=80);

-moz-opacity: 0.80;

opacity: 0.80;

}



img:hover{

filter:alpha(opacity=95);

-moz-opacity: 0.95;

opacity: 0.95;

}



p, li {

font-size: 1.2em;

color: f0f0f0;

}



.title1, .title2 {

font-weight: bold;

text-transform: lowercase;

letter-spacing: -1px;

color: dbdbdb;

}



.title1 {

font-size: 1.3em;

}



.title2 {

font-size: 1.2em;

}



.title2 a {

font-size: 1.1em;

}



.sidebar .title2 {

padding: 0 0 0 12px;

}



.newnav {

margin: 11px 0 20px 0;

padding: 0;

text-transform: lowercase;

letter-spacing: -1px;

}



.newnav a {

font-size: 1.2em;

color: d0d0d0 !important;

}



.newnav a:hover {

color: ffffff !important;

}



.newnav .active {

color: ffffff !important;

}



.newnav li {

list-style: none;

display: inline;

margin: 0 0 0 13px;

}



.sidebar {

float: right;

width: 200px;

}



.content {

float: left;

width: 500px;

padding: 0 0 0 28px;

}



.breaker {

clear: both;

margin-top: 25px;

border-top: 1px solid;

border-color: 777777;

background-image: url(%26quot;http://img440.imageshack.us/img440/鈥?br>
background-repeat: repeat-x;

height: 200px;

}



.cell {

float: left;

padding-top: 10px;

margin: 0 0 0 25px;

}



.cell-inner {

width: 225px;

padding: 0 10px 0 0;

}



.bottoms {

clear: both;

padding: 45px 0 0 0;

}



textarea {

background-color: 555555;

border: 1px solid;

border-color: 666666;

color: f0f0f0;

padding: 3px;

overflow: hidden;

}



input {

background-color: 444444;

color: f0f0f0;

border: 1px solid;

border-color: 666666;

}



.askfirst {

clear: both;

text-align: center;

padding: 25px 0 0 0;

}

%26lt;/style%26gt;

%26lt;div class=%26quot;main%26quot;%26gt;

%26lt;table style=%26quot;width:800px; height:800px; cellpadding:0px; cellspacing:0px;background-color:444444;鈥?br>
%26lt;tr%26gt;%26lt;td valign=%26quot;top%26quot;%26gt;

______________________________________鈥?br>


Thats wat I have as the background right now. I'd like to change that to this image html code:



%26lt;a href=%26quot;http://s262.photobucket.com/albums鈥?target=%26quot;_blank%26quot;%26gt;%26lt;img src=%26quot;http://i262.photobucket.com/albums/鈥?border=%26quot;0%26quot; alt=%26quot;Photobucket%26quot;%26gt;%26lt;/a%26gt;



______________________________________鈥?br>


Please help I do not know how to put this code in and would love to learn.How do I add a background to this web page with this code.?Change this:

body {

font-family: helvetica, arial, sans-serif;

font-size: 62.5%;

background-color: 444444;

}



to this:

body {

font-family: helvetica, arial, sans-serif;

font-size: 62.5%;

background-color: 444444;

background-image: url('url where the image is located');

}





see http://www.w3schools.com/css/css_referen鈥?/a>

for more options on background images and css.



^ To the person above, you forgot to put ' around the url.
How do I add a background to this web page with this code.?
Since you are changing the background of your page, you only need to edit the body off the CSS. Change your first 6 lines to the following:





%26lt;style type=%26quot;text/css%26quot;%26gt;

body {

font-family: helvetica, arial, sans-serif;

font-size: 62.5%;

background-image: url(http://i262.photobucket.com);

}





Of course, you need to update the image url located within the ( ) in order for your background to appear correctly. And that should solve your problem.

Php include coding help?

i need to know how do i code the buttons to go to a page within the index page.. i know it was like index.php?page something like that but im not sure. all i know is %26lt;?php include(%26quot;menu.php%26quot;); ?%26gt; which will show another page in the index but how do i set up the buttons to actually change to another page in index.phpPhp include coding help?It's index.php?page=title_of_page_inserted_he鈥?So for example, if you wanted the link to go to a page you named %26quot;links,%26quot; it'd be index.php?page=links
  • rodents
  • lot of gold for sale
  • How to hide ALL comments on myspace?

    Yes i know the code where you hide the comments on the page. but now people can view them just by changing the URL.

    EX.



    profile.myspace.corn/index.cfm?fuseact鈥?br>


    they just change the viewprofile to viewcomments and they are done. is there a setting or anything so they can see your comments at all?How to hide ALL comments on myspace?Of what I know, there's absolutely no way to keep people off your comments completely. You can hide them, but they're still going to be able to change the URL. Granted, not many people know that shortcut, and if they don't learn it, they won't be able to look up your comments. But other than that, there's nothing to hide them.
    How to hide ALL comments on myspace?
    www.pimpwebpage.com
    How to hide ALL comments on myspace?
    No. All the code does is hide it on your page. If they really want to see it they can go into the source and find the link that shows all the comments.
    you could just delete them.... but other then that, i dont think so. sorry mate.

    How to change this myspace page?

    i want my comments and everything on the right side moved next to my picture.

    can anyone tell me how to change it or tell me whats wrong

    here's the link http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile%26amp;friendid=137863441How to change this myspace page?i don't think it has anything to do with your layout,cause my page is looking something like that even though it never was before and its doing it to everyone on my friends list pages too.i think myspace is just working out a bug
    How to change this myspace page?
    It's the layout you have. Try a different one.
    How to change this myspace page?
    change your layout

    How can i add a layout to my blocked page? (myspace)?

    like this:



    http://profile.myspace.com/index.cfm?fus鈥?/a>





    when you click on someones page and its blocked how do you change how that looks





    thanks in advanceHow can i add a layout to my blocked page? (myspace)?You have to use the MySpace Profile Editor:

    http://profileedit.myspace.com/index.cf>



    Keep in mind that the profile editor and copy and paste codes aren't compatible. If you want to change from what you did with the profile editor, you have to either use the editor again, or clear the editor:

    http://returntru.net/?pg=faqs%26amp;ch=clrEdit鈥?/a>