Forums

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

Home Forums CSS Generate by CSS or Table

  • This topic is empty.
Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #32117
    intodesign
    Participant

    What’s the point by making your slice tool in photoshop and generate it to CSS?
    I would like that my text will be dynamic no matter how much text i’ll put, I want the footer will repeat

    for example this picture:
    http://fashionaki.com/blog/new/example/example.jpg

    here the footer is going down automatically with tables:
    http://fashionaki.com/blog/new/example/example2.jpg

    how can i make it also in CSS?

    #55099
    richtestani
    Member

    If I understand what you want, you need to repeat your background image vertically so when new content is added, the background continues.

    http://www.w3schools.com/css/pr_background.asp

    review the background property which is what you will use.

    #55040
    intodesign
    Participant

    in your example i see a image that does not move.

    my example is like this:
    http://fashionaki.com/blog/new/example/example3.jpg

    i would like that the text like in the picture,
    and the footer (which it’s another div tag) will go down every time i’m putting more text…

    Any Idea?

    #54021
    richtestani
    Member

    Make your header a single image – the top part including the rounded corners.
    No need to cut it up so much.

    The main portion should be a horizontal strip that is from the very left edge (including shadows) to the very right edge (including shadows), then you repeat this vertically.

    Here’s an example from a site I created some years ago.

    http://www.themoviepostersite.com/images/bgmain.png

    The image is just a strip of the layout.

    #53486
    intodesign
    Participant

    Ok, but what is the code to make it repeat when I’m putting the main text?

    #53449
    DogsGhost
    Member

    selectorNameHere {
    background: url(../images/bgImageName.jpg) repeat-y;
    }

    #52913
    intodesign
    Participant

    I tried it but not sure what it’s not working…
    Have you done this before, can i PM you or something?
    because that’s very important for me and i don’t know where can i find an answer…

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