Avatar billede narkomic Novice
22. september 2010 - 14:34 Der er 6 kommentarer og
1 løsning

phpbb style i adobe dreamweaver cs5

Hej alle experter...

Sider med at lille problem...
Hved ikke om det kan lade sig gøre men her er spørgsmålet...
jeg har et thema/style fra phpbb som jeg gerne vil bruge til min hjemmeside, men hved ikke hvordan jeg bruger det i adobe dreamweaver cs5...

håber der er nogen der kan hjælpe...

MVH Narkomic
Avatar billede Bamma Nybegynder
22. september 2010 - 14:45 #1
disse phpbb styles er de ikke gemt som css filer, så lige inde på deres hjemmeside, og umiddelbart har php et script der finder ud af hvilken browser man har, og derefter smidder den css fil ind som passer til.

prøv kig i phpbb stylen hvilket filer der følger med, du skal sikkert kun bruge .css filerne til dit adobe dreamweaver
Avatar billede narkomic Novice
22. september 2010 - 14:50 #2
i mappen theme er der følgene filer...
Mappe Images
ie7.css
mac.css
safari.css
stylesheet.css
theme.cfg


så der er css filer men hved ikke hvilken jeg skal bruge...
Avatar billede heinzdmx Nybegynder
22. september 2010 - 14:54 #3
Du skal nok bruge den mere generelle stylesheet.css

Bemærk at:

IE7.css er optimeret til Internet explorer 7
mac.css er optimeret til Mac computerer
safari.css er optimeret til Safari browseren
Avatar billede narkomic Novice
22. september 2010 - 15:03 #4
ahh ja det giver jo egentlig menning...;)
Havde ikke tænkt på dem på den måde...
Kan du forklare mig hvordan jeg bruger den i cs5??
Avatar billede narkomic Novice
22. september 2010 - 15:07 #5
dette er den ene side jeg vil have cssen ind på...

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Untitled Document</title>
<style type="text/css">
<!--
body {
    font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
    background: #42413C;
    margin: 0;
    padding: 0;
    color: #000;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
    padding: 0;
    margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
    margin-top: 0;    /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
    padding-right: 15px;
    padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
    border: none;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
    color: #42413C;
    text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
    color: #6E6C64;
    text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
    text-decoration: none;
}

/* ~~ this fixed width container surrounds all other divs ~~ */
.container {
    width: 960px;
    background: #FFF;
    margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
    overflow: hidden; /* this declaration makes the .container understand where the floated columns within ends and contain them */
}

/* ~~ These are the columns for the layout. ~~

1) Padding is only placed on the top and/or bottom of the divs. The elements within these divs have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a div set to float right). Many times, padding can be used instead. For divs where this rule must be broken, you should add a "display:inline" declaration to the div's rule to tame a bug where some versions of Internet Explorer double the margin.

3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar divs could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.

4) If you prefer your nav on the right instead of the left, simply float these columns the opposite direction (all right instead of all left) and they'll render in reverse order. There's no need to move the divs around in the HTML source.

*/
.sidebar1 {
    float: left;
    width: 180px;
    background: #FFF;
    padding-bottom: 10px;
}
.content {

    padding: 10px 0;
    width: 780px;
    float: left;
}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol {
    padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}

/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
ul.nav {
    list-style: none; /* this removes the list marker */
    border-top: 1px solid #666; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
    margin-bottom: 15px; /* this creates the space between the navigation on the content below */
}
ul.nav li {
    border-bottom: 1px solid #666; /* this creates the button separation */
}
ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
    padding: 5px 5px 5px 15px;
    display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
    width: 160px;  /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
    text-decoration: none;
    background: #FFF;
}
ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
    background: #42413C;
    color: #FFF;
}

/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
    float: right;
    margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
    float: left;
    margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the overflow:hidden on the .container is removed */
    clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
-->
</style></head>

<body>

<div class="container">
  <div class="sidebar1">
    <ul class="nav">
      <li><a href="/index.php">Forside</a></li>
      <li><a href="/projekt.php">Projekter</a></li>
      <li><a href="#">Link three</a></li>
      <li><a href="/key">Admin</a></li>
    </ul>
    <p>&nbsp;</p>
    <!-- end .sidebar1 --></div>
  <div class="content">
    <h1 align="center">Velkommen.</h1>
    <p>&nbsp;</p>
    <!-- end .content --></div>
  <!-- end .container --></div>
</body>
</html>


stylesheet.css ser sådan her ud...


/* Layout
------------ */
* {
    /* Reset browsers default margin, padding and font sizes */
    margin: 0;
    padding: 0;
}

html {
    font-size: 100%;
}

body {
    /* Text-Sizing with ems: http://www.clagnut.com/blog/348/ */
    font-family: "Lucida Grande", Verdana, Helvetica, Arial, sans-serif;
    color: #000;
    background: #62646B url(images/body.gif);
    font-size: 10px;
    margin: 0;
    padding: 0 5px;
}
#body-simple {
    background: #F0F1F2;
    padding: 5px;
}

/* Misc stuff */
img {
    border: none;
}

.gen {
    margin: 1px 1px;
    font-size: 1.2em;
}

.genmed {
    margin: 1px 1px;
    font-size: 1.1em;
}

.gensmall {
    margin: 1px 1px;
    font-size: 1em;
}

.titles {
    font-family: "Lucida Grande", Helvetica, Arial, sans-serif;
    font-weight: bold;
    font-size: 1.3em;
    text-decoration: none;
}

.error, table td .error {
    color: #FF2600;
}

.spacer {
    background: #656770 url(images/th.gif) top left repeat-x;
}

hr    { height: 0px; border: solid #4E5159 0px; border-top-width: 1px;}

.pagination {
    padding: 4px;
    font-size: 1em;
    font-weight: bold;
}

/* Links
------------ */
.rtl a {
    direction: rtl;
    unicode-bidi: embed;
}

a {
    color: #4E5159;
    text-decoration: none;
}

a:active,
a:visited {
    color: #4E5159;
    text-decoration: none;
}

a:hover {
    color: #FF2600;
    text-decoration: underline;
}

a.forumlink {
    font-weight: bold;
    font-family: "Lucida Grande", Helvetica, Arial, sans-serif;
    font-size: 1.2em;
}

a.topictitle {
    margin: 1px 0px;
    font-family: "Lucida Grande", Helvetica, Arial, sans-serif;
    font-weight: bold;
    font-size: 1.2em;
}

a.topictitle, .postbody a {
    color: #4E5159;
}
a.topictitle:visited, .postbody a:visited {
    color: #64666E;
}
a.topictitle:visited:hover, .postbody a:visited:hover {
    color: #4E5159;
}
a.topictitle:hover, .postbody a:hover {
    color: #FF2600;
}

/* Header and logo */
#maintable {
    border-style: solid;
    border-width: 0 2px 2px 2px;
    border-color: #42444C;
    margin: 0 auto;
}
#logorow {
    background: url(images/logo_top.gif) top left repeat-x;
    text-align: center;
    padding: 0;
    min-height: 76px;
}
#logotop {
    background: url(images/logo_bottom.gif) bottom left repeat-x;
}

.pm-notify-new, .pm-notify-unread {
    border-left: solid 1px #5B5D65;
    border-right: solid 1px #4E5159;
    border-top: solid 1px #5B5D65;
    border-bottom: solid 1px #4E5159;
    background: #EAEAEC url(images/cell.gif) top left repeat-x;
    margin: 10px 0;
    padding: 10px;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
}
.pm-notify-new a, .pm-notify-new a:visited, .pm-notify-unread a, .pm-notify-unread a:visited { text-decoration: underline; }
.pm-notify-header {
    margin-bottom: 10px;
    color: #666;
}
.pm-notify-new, .pm-notify-unread:hover {
    border-left: solid 1px #FF492A;
    border-right: solid 1px #FF2600;
    border-top: solid 1px #FF492A;
    border-bottom: solid 1px #FF2600;
}
.pm-notify-new { padding: 30px; }

/* Navigation buttons */
.navrow {
    background: url(images/buttons.gif) top left repeat-x;
    height: 23px;
    overflow: hidden;
    color: #FF654A;
    text-align: center;
    font-size: 11px;
    padding-bottom: 2px;
    padding-top: 0;
}
* html .navrow { height: 21px; }
.navrow b, .navrow strong { font-weight: normal; }
.navrow a, .navrow a:visited {
    color: #4E5159;
    text-decoration: none;
}
.navrow a:hover {
    color: #FF2600;
    text-decoration: underline;
}

a.link-new, a.link-new:visited { color: #FF2600; }
a.link-new:hover, a.link-new:visited:hover { color: #64666E; }

/* Content and tables */
#contentrow {
    padding: 5px;
    background-color: #F0F1F2;
}

.tablebg {
    border: solid 1px #4E5159;
    background: #EAEAEC url(images/cell.gif) top left repeat-x;
}

.row1, .row2, .row3, .forumrules, tr.row1 .row, tr.row2 .row, tr.row3 .row, .postbottom {
    border-left: solid 1px #F7F7F7;
    border-right: solid 1px #B1B2B6;
    border-top: solid 1px #F7F7F7;
    border-bottom: solid 1px #B1B2B6;
    background: #EAEAEC url(images/cell.gif) top left repeat-x;
    padding: 4px;
}
th {
    color: #EBEBEC;
    font-size: 11px;
    font-weight: bold;
    background: #656770 url(images/th.gif) top left repeat-x;
    white-space: nowrap;
    padding: 0 5px;
    text-align: center;
    height: 26px;
    border-left: solid 1px #7A7C85;
    border-right: solid 1px #656770;
    border-top: solid 1px #75777F;
    border-bottom: solid 1px #656770;
}
th a, th a:visited {
    color: #EBEBEC !important;
    text-decoration: underline;
}
th a:hover {
    color: #FFF;
    text-decoration: underline;
}

td {
    padding: 2px;
}
td.profile {
    padding: 4px;
}
.catdiv {
    height: 24px;
    padding: 0 3px;
    border-left: solid 1px #F7F7F7;
    border-right: solid 1px #B1B2B6;
    border-top: solid 1px #F7F7F7;
    border-bottom: solid 1px #B1B2B6;
    background: #EBEBEB url(images/cathead.gif) top left repeat-x;
}
.rtl .catdiv {
    background: #EBEBEB url(images/cathead.gif) top left repeat-x;
}

.cat {
    height: 24px;
    padding: 0 3px;
    border-left: solid 1px #F7F7F7;
    border-right: solid 1px #B1B2B6;
    border-top: solid 1px #F7F7F7;
    border-bottom: solid 1px #B1B2B6;
    background: #EBEBEB url(images/cathead.gif) top left repeat-x;
    text-indent: 4px;
}
.cathead {
    background: #EEEEEF url(images/catbottom.gif) top left repeat-x;
    height: 24px;
    padding: 1px 3px;
    border-left: solid 1px #7A7C85;
    border-right: solid 1px #656770;
    border-top: solid 1px #75777F;
    border-bottom: solid 1px #656770;
}

.legend {
    padding: 4px;
}


/* Table header */
caption, .cap-div {
    margin: 0;
    padding: 0;
    background: url(images/hdr_mid.gif) top left repeat-x;
    white-space: nowrap;
    height: 27px;
    text-align: center;
}
.cap-left {
    background: url(images/hdr_left.gif) top left no-repeat;
}
.cap-right {
    background: url(images/hdr_right.gif) top right no-repeat;
    padding-top: 6px;
    height: 21px;
}
caption, caption h1, caption h2, caption h3, caption h4, caption span,
.cap-div, .cap-div h1, .cap-div h2, .cap-div h3, .cap-div h4, .cap-div span {
    font-size: 12px;
    font-weight: bold;
    color: #EAEAEC;
}
caption h1, caption h2, caption h3, caption h4, caption span,
.cap-div h1, .cap-div h2, .cap-div h3, .cap-div h4, .cap-div span {
    display: inline;
}
caption a, caption a:visited, .cap-div a, .cap-div a:visited {
    color: #EAEAEC;
    text-decoration: underline;
}
caption a:hover, .cap-div a:hover {
    color: #FFF;
    text-decoration: underline;
}


/* Footer */
#wrapfooter {
    text-align: center;
    color: #666;
    padding-top: 10px;
}

.copyright {
    color: #666;
    font-weight: normal;
    font-size: 9px;
    line-height: 1.2em;
}
.copyright a, .copyright a:visited {
    color: #444;
    text-decoration: underline;
}
.copyright a:hover { color: #FF2600; }


/* Breadcrumbs */
p.breadcrumbs {
    margin: 0;
    padding: 0;
    float: left;
    color: #AAA;
    font-weight: bold;
    white-space: normal;
    font-size: 1em;
}
.rtl p.breadcrumbs {
    float: right;
}

p.datetime {
    margin: 0;
    padding: 0;
    float: right;
    white-space: nowrap;
    font-size: 1em;
}

.rtl p.datetime {
    float: left;
}

/* Index/viewforum */
.subforum.read {
    background: url(images/sub_old.gif) top left no-repeat;
    padding-left: 12px;
}
.subforum.unread {
    background: url(images/sub_new.gif) top left no-repeat;
    padding-left: 12px;
}
.legend {
    text-align: center;
    margin: 0 auto;
    padding: 2px;
}
.legend-viewforum {
    margin: 0;
    text-align: left;
}

.forumrules {
    padding: 4px;
    font-weight: normal;
    font-size: 1.1em;
    border-left-color: #AAA;
    border-top-color: #AAA;
    border-right-color: #CCC;
    border-bottom-color: #CCC;
    font-family: "Lucida Grande", Verdana, Arial, Helvetica, sans-serif;
}
.forumrules h3 {
    color: #FF2600;
}

/* Post */
.postsubject {
    font-size: 12px;
    font-weight: bold;
    color: #4E5159;
}
td.postbottom {
    background: #D2D2D3 url(images/profile.gif) top left repeat-x;
    font-size: 10px;
    color: #444;
    white-space: nowrap;
    padding: 2px 4px;
    vertical-align: middle;
}
td.postbuttons { padding-top: 3px; }
.postdetails {
    color: #666;
    font-size: 10px;
    text-align: left;
}
.postdetails b {
    color: #444;
}
.posterrank        { font-size: 9px; color: #666; }
.posterprofile    { font-size: 10px; color: #666; }

.postauthor {
    color: #4E5159;
    font-size: 12px;
    margin-bottom: 3px;
    font-weight: bold;
}
.postonline { margin-bottom: 2px; }

.postreported, .postreported a:visited, .postreported a:hover, .postreported a, .postreported a:active {
    margin: 1px 0px;
    color: #FF2600;
    font-weight: bold;
}

.postapprove, .postapprove a:visited, .postapprove a:hover, .postapprove a, .postapprove a:active {
    color: #00FF00;
    font-weight: bold;
}

.postapprove img, .postreported img {
    vertical-align: bottom;
}

.postbody {
    font-size: 12px;
    line-height: 1.4em;
    margin: 3px 0;
}
.signature {
    font-size: 11px;
    color: #888;
    margin-top: 5px;
}
.signature .line { color: #AAA; }

.postbody li, ol, ul {
    margin: 0 0 0 1.5em;
}

.rtl .postbody li, .rtl ol, .rtl ul {
    margin: 0 1.5em 0 0;
}

.posthilit {
    background-color: #4E5159;
    color: #000;
}

.postsubject {
    font-size: 12px;
    font-weight: bold;
    color: #4E5159;
}

.postbody a { text-decoration: underline; }

/* UCP */
.folder-current a, .folder-current a:visited {
    color: #000;
    font-weight: bold;
}
.folder-current a:hover { color: #FF2600; }

td.pm_marked_colour { background: #FF2600; }
td.pm_marked_colour_left { border-left: solid 3px #FF2600; padding-left: 2px; }
td.pm_marked_colour_right { border-right: solid 3px #FF2600; padding-right: 2px; }

td.pm_replied_colour { background: #4E5159; }
td.pm_replied_colour_left { border-left: solid 3px #4E5159; padding-left: 2px; }
td.pm_replied_colour_right { border-right: solid 3px #4E5159; padding-right: 2px; }

td.pm_friend_colour { background: #007700; }
td.pm_friend_colour_left { border-left: solid 3px #007700; padding-left: 2px; }
td.pm_friend_colour_right { border-right: solid 3px #007700; padding-right: 2px; }

td.pm_foe_colour { background: #DD0027; }
td.pm_foe_colour_left { border-left: solid 3px #DD0027; padding-left: 2px; }
td.pm_foe_colour_right { border-right: solid 3px #DD0027; padding-right: 2px; }


/* Form Elements
------------ */
form {
    margin: 0px;
    padding: 0px;
    border: 0px;
}

textarea, select, .post, .btnbbcode, .btnmain, .btnlite, .btnfile, .helpline {
    font-weight: normal;
    font-family: "Lucida Grande", Verdana, Helvetica, sans-serif;
    color: #444;
    border: 1px solid #82848D;
    background-color: #E0E0E2;
}
#helpline { color: #444; }

input {
    font-size: 1.1em;
    padding: 1px;
}
textarea {
    font-size: 1.3em;
    line-height: 1.4em;
    padding: 2px;
}
select {
    font-size: 1.1em;
    padding: 1px;
}

option {
    padding: 0 1em 0 0;
}

.rtl option {
    padding: 0 0 0 1em;
}

.post {
    border-style: solid;
    border-width: 1px;
}

.btnbbcode {
    font-size: 1.1em;
    border: 1px solid #97999E;
}
.btnbbcode:hover {
    border-color: #444;
    color: #000;
}

.btnmain {
    font-weight: bold;
    cursor: pointer;
    padding: 1px 5px;
    font-size: 1.1em;
}

.btnlite {
    font-weight: normal;
    cursor: pointer;
    padding: 1px 5px;
    font-size: 1.1em;
}

.btnfile {
    font-weight: normal;
    padding: 1px 5px;
    font-size: 1.1em;
}

.helpline {
    background-color: transparent;
    color: #444;
    border-style: none;
}

* html textarea, * html select, * html .post, * html .btnmain, * html .btnlite, * html .btnfile {
    border-color: #4E5159;
}
textarea:hover, select:hover, .post:hover, .btnmain:hover, .btnlite:hover, .btnfile:hover {
    border-color: #4E5159;
}
textarea:focus, select:focus, .post:focus, .btnmain:focus, .btnlite:focus, .btnfile:focus {
    border-color: #3C3D43;
    color: #000;
}

label:hover {
    color: #FF2600;
}

textarea.posting-textarea, #ie8#fix {
    width: 98%;
}

/* BBCode
------------ */
.quotetitle, .attachtitle, .codetitle {
    margin: 10px 5px 0px 5px;
    padding: 2px 4px;
    border: solid 1px #4E5159;
    color: #4E5159;
    background-color: #F1F1F2;
    font-size: 0.85em;
    font-weight: bold;
}

.quotetitle .quotetitle {
    font-size: 1em;
}

.quotecontent, .attachcontent {
    margin: 0px 5px 10px 5px;
    padding: 5px;
    border-color: #4E5159;
    border-width: 0px 1px 1px 1px;
    border-style: solid;
    font-weight: normal;
    font-size: 1em;
    line-height: 1.4em;
/*    font-family: "Lucida Grande", "Trebuchet MS", Helvetica, Arial, sans-serif; */
    background-color: #F1F1F2;
    color: #444;
}

.attachcontent {
    font-size: 0.85em;
}

.codecontent {
    direction: ltr;
    margin: 0px 5px 10px 5px;
    padding: 5px;
    border-color: #4E5159;
    border-width: 0px 1px 1px 1px;
    border-style: solid;
    font-weight: normal;
    font-size: 11px;
    font-family: Monaco, 'Courier New', monospace;
    background-color: #F1F1F2;
    color: #444;
}

.quotewrapper, .codewrapper, .attachwrapper {
    clear: both;
    margin: 10px 5px;
    background: #6B6E76 url(images/code_header.gif) top left no-repeat;
    padding-left: 19px;
    border: solid 1px #4E5159;
}
.quotewrapper { background-image: url(images/quote_header.gif); }
.quotewrapper .quotetitle, .codewrapper .codetitle, .attachwrapper .attachtitle {
    margin: 0;
    border-width: 0 0 1px 1px;
}
.quotewrapper .quotecontent, .codewrapper .codecontent, .attachwrapper .attachcontent {
    margin: 0;
    border-width: 0 0 0 1px;
}
.attachcontent, .codecontent {
        overflow: auto;
        overflow-x: auto;
}


.syntaxbg {
    color: #000;
}

.syntaxcomment {
    color: #666;
}

.syntaxdefault {
    color: #000;
}

.syntaxhtml {
    color: #000;
}

.syntaxkeyword {
    color: #FF2600;
}

.syntaxstring {
    color: #4E5159;
}


/* More misc stuff */
h1 {
    font-family: "Lucida Grande", "Trebuchet MS", Verdana, sans-serif;
    font-weight: bold;
    font-size: 1.8em;
    text-decoration: none;
}

h2 {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 1.5em;
    text-decoration: none;
    line-height: 120%;
}

h3 {
    font-size: 1.3em;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 120%;
}

h4 {
    margin: 0px;
    font-size: 1.1em;
    font-weight: bold;
}

p {
    font-size: 1.1em;
}

p.moderators {
    margin: 0px;
    float: left;
    color: #CCC;
    font-weight: bold;
}

.rtl p.moderators {
    float: right;
}

p.linkmcp {
    margin: 0px;
    float: right;
    white-space: nowrap;
}

.rtl p.linkmcp {
    float: left;
}

p.searchbar {
    padding: 2px 0;
    white-space: nowrap;
}

p.searchbarreg {
    margin: 0px;
    float: right;
    white-space: nowrap;
}

.rtl p.searchbarreg {
    float: left;
}

p.forumdesc {
    padding-bottom: 4px;
}

p.topicauthor {
    margin: 1px 0px;
}

p.topicdetails {
    margin: 1px 0px;
}
td.history-current, tr.row1 td.history-current, tr.row2 td.history-current {
    background: #CCC;
}

table.colortable td {
    padding: 0;
}

pre {
    font-size: 1.1em;
    font-family: Monaco, 'Courier New', monospace;
}

.nowrap {
    white-space: nowrap;
}

.username-coloured {
    font-weight: bold;
}

.sep {
    color: #444;
}


/* reset style for file input */
.btnfile, .btnfile:hover, .btnfile:focus {
    border: none;
    background-color: #FFF;
    color: #000;
}
Avatar billede narkomic Novice
23. september 2010 - 16:37 #6
har installeret et cms system nu istedet for...

Men tak for hjælpen til folk...;)
Avatar billede Ny bruger Nybegynder

Din løsning...

Tilladte BB-code-tags: [b]fed[/b] [i]kursiv[/i] [u]understreget[/u] Web- og emailadresser omdannes automatisk til links. Der sættes "nofollow" på alle links.

Loading billede Opret Preview

Log ind eller opret profil

Hov!

For at kunne deltage på Computerworld Eksperten skal du være logget ind.

Det er heldigvis nemt at oprette en bruger: Det tager to minutter og du kan vælge at bruge enten e-mail, Facebook eller Google som login.

Du kan også logge ind via nedenstående tjenester