Search results

  1. AusQB

    CSS Help

    Another way is to give the parent element a class or id and then set the CSS for the h2 tag underneath it. <div class="parent"> <h2>Test</h2> </div> div.parent { } div.parent h2 { text-align: center; } This means that all instances of the h2 tag within a div with...
  2. AusQB

    I'm New!

    Welcome. That course is exactly what I want to be doing, I love photography.
  3. AusQB

    need replacement for front page

    The most popular programs are Adobe Dreamweaver and Microsoft Expression Web, but there are some good open source solutions, like Aptana Studio.
  4. AusQB

    Problem exporting SVG

    Ok now that that's been sorted, I need a way to export to a distributable SVG file. I see a lot of images uploaded to Wikipedia have the file extension '.svg.png', allowing it to be imported into Photoshop while remaining a scalable vector (I assume). How do I save the image in this format?
  5. AusQB

    Problem exporting SVG

    Ok now that that's been sorted, I need a way to export to a distributable SVG file. I see a lot of images uploaded to Wikipedia have the file extension '.svg.png', allowing it to be imported into Photoshop while remaining a scalable vector (I assume). How do I save the image in this format?
  6. AusQB

    Problem exporting SVG

    Thanks very much.
  7. AusQB

    Problem exporting SVG

    I'm making a fairly simple logo design in CorelDRAW with concentric segmented circles (from using the outline style tool), which is supposed to look like this. However, when exporting as an SVG, the circles become filled again, giving me this. Any ideas?
  8. AusQB

    Fixing buttons in place

    You could try setting the max-height of the element that contains the buttons to the height of the buttons themselves. This should constrain that element and prevent it from changing size.
  9. AusQB

    External Style Sheet v. Internal Style Sheet

    It's always good practice to keep your styles external.
  10. AusQB

    <link/>

    It can only be used in the head element.
  11. AusQB

    Drawing curves

    I ended up going into CorelDraw. To make the wave shape I created an oval, and then cut out the inner area with a circle and the bottom part with a rectangle. Then to get the back part of the wave I created another much larger oval, placed it next to the wave and a rectangle base, so that there...
  12. AusQB

    Drawing curves

    I got bored and decided to experiment with some designs. I wanted to create a simple waveform graphic header for a page. Nothing fancy, just a classic wave shape (maybe cloned to make make 3 depth layers). I have no idea how to go about this. I went into Photoshop and tried the pen tool...
  13. AusQB

    Add to MSN/AIM/etc

    Is there a script I can use whereby clinking on a logo of an IM program (ie. MSN, AIM, Yahoo, etc) will open up that respective program and add a certain contact to the user's list? I just want to avoid putting the actual address on the page.
  14. AusQB

    Sidebar positioning look wierd in MSIE

    LOL Ok I probably wasn't thinking straight when I posted that, seeing as the layout of my latest site was all divs. A simple vertical stacking layout is simple, but when it comes to all sorts of elements spread out around the page I get a little uneasy. Maybe I should give in and...
  15. AusQB

    Page Doesnt Display Correctly

    Try what I said again, but set the min-height of the div (within the iframe) to a fixed height, say 400px.
  16. AusQB

    Sidebar positioning look wierd in MSIE

    The sidebar is enclosed in a div#page. Remove that div and just have the div#sidebar2. I've never really liked laying out my pages purely with divs and positioning them with CSS, I would always create my basic layouts with tables.
  17. AusQB

    Page Doesnt Display Correctly

    I assume you're talking about the iframe in the photography page. The iframe dimensions are fine (although they should ideally be set to width:100% and height:100%), but the dimensions of the div that it is importing is fixed (height: 371px; width: 737px;). Set both of those dimensions to 100%...
  18. AusQB

    Separation of HTML & CSS Code

    It is good practice to put the CSS code in a separate file and link it to the HTML page(s). That way you can manage the styles from that page without having to change all the elements which might share a style class.
  19. AusQB

    Style Attribute

    The style attribute is the most important common attribute as it determines how your site looks and acts. In old standards of HTML, styles would normally be attributed by simply listing individual style elements: <div width="300" bgcolor="black"> In XHTML, the standard is to use the...
  20. AusQB

    Page Doesnt Display Correctly

    You need to enter that link tag for the CSS file between the <head> tags.
Top