Jump to content

MattJG77

New Members
  • Posts

    4
  • Joined

  • Last visited

    Never

Contact Methods

  • Website URL
    http://lincsdriver.com

Profile Information

  • Gender
    Male
  • Location
    Lincoln, England

MattJG77's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. you download these themes thinking there going to be all sorted out and there turns out to be missing files even.
  2. thanks for the in site. ill look into those issues.
  3. hello. just thought i'd post up a link to our car club website and see what you guys think. the main website is a joomla install with a RocketThemes theme and the forum is a phpBB install also running the same theme. we've been running this website for over a years now and i've been involved in the previus clubs websites for about 5/6 years now. nothing out of the ordinary there untill i tell you im and Painter and Decorator by trade and flunked English at school due to dyslexia. ( am i doing running a website/forum.) anyway, here's the link. i look forward to your constructive criticisms. http://lincsdriver.com
  4. you should use CLASSES for multiple items sharing the same elements, and ID for single instances of an element. css styles should be kept in a separate file so multiple pages can access the same css over and over again. that way you only have to edit one file to affect your howl website. to creat a style sheet just copy everything between <style type="text/css"> and </style> and remove /*<![CDATA[*/ from the beginning and /*]]>*/ from the end. you can call the new style sheet file using the following code in replace. <link rel="stylesheet" href="styles.css" type="text/css" /> styles.css being the name you gave your new file. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Hello!</title> <style type="text/css"> /*<![CDATA[*/ .commonButtonElements { width: 100px; margin: 4px; cursor: pointer; } #button1 { background-color: #339966; color: #FFFFFF; } #button2 { background-color: #FF0066; } #button3 { background-color: #999999; } /*]]>*/ </style> </head> <body> <input type="button" name="field1" value="button1" class="commonButtonElements" id="button1"/> <input type="button" name="field2" value="button2" class="commonButtonElements" id="button2"/> <input type="button" name="field3" value="button3" class="commonButtonElements" id="button3"/> <input type="button" name="field4" value="button4" class="commonButtonElements" id="button4"/> <input type="button" name="field5" value="button5" class="commonButtonElements" id="button5"/> <input type="button" name="field6" value="button6" class="commonButtonElements" id="button6"/> <input type="button" name="field7" value="button7" class="commonButtonElements" id="button7"/> <input type="button" name="field8" value="button8" class="commonButtonElements" id="button8"/> <input type="button" name="field9" value="button9" class="commonButtonElements" id="button9"/> <input type="button" name="field10" value="button10" class="commonButtonElements" id="button10"/> </body> </html>
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.