Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS web developing

  • This topic is empty.
Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #38900
    ravi_n
    Member

    Hi to every body. I am very new to the html and css any one help me.i have a problem in html and the css.

    #105927
    ravi_n
    Member

    sorry yar what ever u said url it is in a problem for opening

    #105928
    Paulie_D
    Member

    You’ll have to tell us what the problem is.

    Either show us a link to your page or, alternatively, as krysak4ever said, create it in CodePen

    #105929
    Meta_Ing
    Participant

    If codepen isn’t working, you could also try http://jsfiddle.net.

    #105930
    ravi_n
    Member

    hi to every body!!!!!!!!!!!!
    I am developing a web application.the web application can be divided into three parts. The first part is regarding to head and the second part is regarding to the vertical tabs.Other part is regarding display information about the vertical tags. My problem is when i click on vertical tag. The information regarding to vertical tag display in new window could u please help me. I write the fallowing code (the code must be in html)

    Html


    "http://www.w3.org/TR/html4/loose.dtd">



    RaviProject





    Css

    /*back ground styles*/
    BODY
    {
    margin: 0px;
    padding: 0px;
    background-color: #BBAEAE;
    font-family: Arial, Helvetica, sans-serif;
    color: #4F4938;
    }
    #main
    {
    background: #FDFCFC url(images/background.jpg) repeat-x;
    }
    #main .container
    {
    background-image: url(images/background.jpg.jpg);
    background-repeat: no-repeat;
    min-height: 50px;
    }
    /*
    Header-Styles
    */
    #header
    {
    padding-top: 0px;
    padding-bottom: 0px;
    }
    UL#menu
    {
    margin: 0px;
    padding: 0px;
    position: absolute;
    left: 0px;
    }
    UL#menu LI
    {
    display: inline;
    margin-right: 12px;
    }
    UL#menu LI A
    {
    text-decoration: none;
    color: #716D6A;
    font-family: "Trebuchet MS";
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    width: 80px;
    float: left;
    margin: 10px;
    text-align: center;
    background-color: #E8EAEC;
    }
    UL#menu LI A:hover
    {
    background-color: #758FAF;
    }
    UL#menu LI A.active, UL#menu LI A:hover
    {
    color: #000000;
    }
    #box
    {
    padding-top: 0px;
    padding-bottom: 0px;
    }
    UL#menu1
    {
    margin: 0px;
    padding: 0px;
    position: absolute;
    left: 0px;
    }
    UL#menu1 LI
    {
    display: inherit;
    margin: 12px;
    }
    UL#menu1 LI A
    {
    text-decoration: none;
    color: #716D6A;
    font-family: cursive;
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    width: 100px;
    float: left;
    margin: 10px 0px;
    text-align: left;
    background-color: #B0948A;
    }
    UL#menu1 LI A:hover
    {
    background-color: inherit;
    }
    UL#menu1 LI A.active, UL#menu1 LI A:hover
    {
    color: #000000;
    }

    could u please help me

    #105931
    ravi_n
    Member

    That means here the vertical tag information must display in third part of the web application.(The code must in html)

    #105933
    Meta_Ing
    Participant

    Are you saying that the “vertical tags” are opening in new windows/tabs and that you don’t want them to? If not, could you please explain a bit more what the issue is and/or you’re trying to do?

    Side note: you should wrap blocks of code in <pre><code> … </code></pre> tags, otherwise the html will be parsed like it was above.

    Example:


    Something


    Blah


    This is an example. Notice how the HTML doesn't get parsed in this box.


    #105936
    ravi_n
    Member

    ya what i am saying that the vertical tabs are opening in a new window i want to open in the third part of the web application

    
    "http://www.w3.org/TR/html4/loose.dtd">



    RaviProject





    #105939
    Meta_Ing
    Participant

    If you are using iframes, you can specify the target attribute in the (opening) <a> tags and set the value to the id* of the iframe. For example, the following link: Some Page would open “somepage.html” in an iframe with an id of “blah”, such as

    *Or name, but id is recommended.

    #105940
    ravi_n
    Member

    Thank u very much

    #105969
    namechange
    Member

    iframes are great but you will not rank high with them on a webpage

    #106012
    ravi_n
    Member

    what is the solution could u please explain……………….

Viewing 12 posts - 1 through 12 (of 12 total)
  • The forum ‘CSS’ is closed to new topics and replies.