Viewing 9 replies - 16 through 24 (of 24 total)
  • Thread Starter raptrex

    (@raptrex)

    ok didnt check this until now
    but now a little problem, maybe
    https://raptrex.googlepages.com/screen8.png

    i cant simply change the class of it for the front page because the plugin outputs it 1 way
    any suggestions?

    raptrex, the BOTH look really great!

    either works, providing they work for you.

    K

    Thread Starter raptrex

    (@raptrex)

    since i dont like the star rating on the index, im going to make it different

    in css, can i put a class, with a class? like
    .classone.classtwo { …

    and the htmls like
    <div class=”classone”>
    <div class=”classtwo”>stars are here
    </div></div>

    how do i do something like that?
    and this is the html my ratings are in

    https://raptrex.googlepages.com/star.PNG

    the .watever is the class

    simple ones are…

    CSS
    .classone{}
    .classtwo{}

    html
    <div class=”classone”>
    <div class=”classtwo”>star info here</div>
    </div>

    or

    CSS
    #classone .classtwo {}

    HTML
    <div id=”classone” class=”classtwo”>star info here</div>

    from your png it goes like this?

    html
    body
    <div id=”everything”>
    <div id=”wrapper”>
    <div id=”container class=”narrowcolumn”>
    <div id=”content”>
    <div id=”box”>
    <div id=”post-9 class=”post”>
    <div id=”post-metadata”>
    <div id=”post-ratings-9 class=”ratings”>
    <div id=”classone” class=”classtwo”>
    star rating stuff here
    </div>
    </div>x8 because there was 8 div’s
    /body
    /html

    does that help?

    PS: don’t forget when using dual coding ie: <div id & class> in the same code, you MUST leave a space in the css.

    ie:

    #classone[space].classtwo {}

    Thread Starter raptrex

    (@raptrex)

    yes your post explained alot
    thx ill try it
    yay i got it to work, the problem was, i was editing the wrong class ??

    Unkown is not a word. Try unknown.

    Thread Starter raptrex

    (@raptrex)

    hmm ok my header image is shown with css

    div#header {
    margin: 0;
    background: white url(‘images/header.png’) no-repeat top center;
    height: 90px;
    }

    and i want to make it a link
    how would i do that?
    any other way instead of using html like
    <img src=image></img>

    I don’t know if this will help but…

    https://www.ads-software.com/support/topic/24403

    Thread Starter raptrex

    (@raptrex)

    i saw this
    Change line 59, from <div id=”header”> to <div id=”header” onclick=”location.href=’https://siteaddress/&#8217;;” style=”cursor: pointer;”></div>. This will make the entire header a link.

    so i changed my header like that and it disorted my site
    i think ill just make it a image link

Viewing 9 replies - 16 through 24 (of 24 total)
  • The topic ‘My design : feedbacks needed!’ is closed to new replies.