Search results

  1. ?

    photoshop, make selection at center?

    how can i make a selection that is aligned at the center of the canvas? like with shapes, you can just use the move tool and click on align horizontal/vertical
  2. ?

    html div background width to fill screen?

    ok i just made a simple separator line <div style="background-color:#004488; width:100%; height:2px;"></div> however it does not stretch across the screen entirely, there's a small gap on all sides. how can i make it fill across?
  3. ?

    adding external css to html?

    i cant get the css to work! i have no idea what im doing wrong the css file looks like: div#navbar ul { list-style:none; } and in the html i got: <html> <head> <link rel="stylesheet" type="text/css" href="style.css"/> </head> <body> <div id="navbar"> <ul> <li><a...
  4. ?

    building an html dom tree, java?

    ok so i parsed a simple html file into an arrayList of nodes. the node class is: String s; //name of node ArrayList<node> children; public node(String) { ****this.s = s; ****children = null; } an example arrayList looks like: [<html>, <body>, "oh", <em>, "hi", </em>, "there", </body>, </html>]...
  5. ?

    how to print html dom tree?

    i have a DOM tree of a parsed html file. the tree is made of nodes which hold a string and an arraylist of children nodes. i'm stumped on how to print out the html code equivalent of the tree. for simplicity, the DOM tree doesn't have any complicated stuff, just a few tags and some text. for...
  6. ?

    transparency with a drop shadow, photoshop?

    how do i add transparency to a text image that has a drop shadow? like if i fill it up with a color, then the transparent part obviously looks all jagged and messed up because of the shadow's fade. anyone have a tut for this?
Back
Top