phpBB Italia chiude!
phpBB Italia ringrazia tutti gli utenti che hanno dato fiducia al nostro progetto per ben 9 anni, e che, grazie al grande lavoro fatto da tutto lo Staff (rigorosamente a titolo gratuito), hanno portato il portale a diventare il principale punto di riferimento italiano alla piattaforma phpBB.

Purtroppo, causa motivi personali, non ho più modo di gestirlo e portarlo avanti. Il forum viene ora posto in uno stato di sola lettura, nonché un archivio storico per permettere a chiunque di fruire di tutte le discussioni trattate.

Il nuovo portale di assistenza per l'Italia di phpBB diventa phpBB-Store.it, cui ringrazio per aver deciso di portare avanti questo grande progetto.

Grazie ancora,
Carlo - Amministratore di phpBB Italia

Cambiare lo sfonfo del sito

Supporto stili in generale.
Avatar utente
xX_Simon_Xx
Utente Pro
Utente Pro
Messaggi: 637
Iscritto il: 25/11/2009, 15:36
Sesso: Maschio
Versione: 3.0.10
Server: UNIX/Linux
PHP: 5.2.13
Database: MySQL(i) 5.1.34
Contatta:

Cambiare lo sfonfo del sito

Messaggio da xX_Simon_Xx » 08/01/2010, 18:04

come faccio a cambiare lo sfondo del mio sito con un'immagine?

vorrei mettere questa immagine:
Immagine

Avatar utente
Astro86
phpBB Expert
phpBB Expert
Messaggi: 924
Iscritto il: 12/08/2009, 14:36
Sesso: Maschio
Versione: 3.2.0
Server: UNIX/Linux
PHP: 5.6
Database: MYSQL
Località: PC. Via localhost N° 82.51.149.40
Contatta:

Re: Cambiare lo sfonfo del sito

Messaggio da Astro86 » 08/01/2010, 18:16

carlino1994 ha scritto:Nei CSS, trova:

Codice: Seleziona tutto

/*  	
--------------------------------------------------------------
Colours and backgrounds for common.css
-------------------------------------------------------------- */

html, body {
e aggiungi dopo:

Codice: Seleziona tutto

	background: url("{T_THEME_PATH}/images/sfondo.jpg") fixed;

Avatar utente
xX_Simon_Xx
Utente Pro
Utente Pro
Messaggi: 637
Iscritto il: 25/11/2009, 15:36
Sesso: Maschio
Versione: 3.0.10
Server: UNIX/Linux
PHP: 5.2.13
Database: MySQL(i) 5.1.34
Contatta:

Re: Cambiare lo sfonfo del sito

Messaggio da xX_Simon_Xx » 08/01/2010, 19:11

non funziona non appare l'immagine:

Codice: Seleziona tutto

    /*  phpBB 3.0 Style Sheet
        --------------------------------------------------------------
       Style name:      PlayStation_User_Style
       Based on style:   proSilver (this is the default phpBB 3 style)
       Original author:   subBlue ( http://www.subBlue.com/ )
       Modified by:    gokin   ( http://www.gokinstudio.com/ )
       
       Copyright 2006 phpBB Group ( http://www.phpbb.com/ )
        --------------------------------------------------------------
    */

    @import url("common.css");
    @import url("links.css");
    @import url("content.css");
    @import url("buttons.css");
    @import url("cp.css");

    #toolbar {
        margin: 0;
        padding: 0;
        height: 30px;
        background: #000 url('{T_THEME_PATH}/images/topmenu2.gif');

    }


    #topmenu {
        margin: 0;
        padding: 0;
        font-family: tahoma, sans-serif;
        font-size: 11px;
    }

    #topmenu ul {
        padding: 0 0 0 5px;
        margin: 0;
        list-style-type: none;
        width: auto;
        float: left;
    }

    #topmenu ul li {
        margin: 0;
        padding: 0;
        display: inline;
    }

    #topmenu ul li a {
        float: left;
        display: block;
        margin: 0 0 0 2px;
        padding: 0 0 0 10px;
        text-decoration: none;
        line-height: 30px;
        color: #fcfcfc;
        background: #313131 url('{T_THEME_PATH}/images/topmenu-l.gif') 0 0 no-repeat;
    }

    #topmenu ul li a span {
        float: left;
        display: block;
        padding: 0 15px 0 7px;
        cursor: pointer;
        background: #313131 url('{T_THEME_PATH}/images/topmenu-r.gif') 100% 0 no-repeat;
    }

    #topmenu ul li a.current {
        color: #000;
        font-weight: bold;
        background: #fff url('{T_THEME_PATH}/images/topmenu-active-l.gif') 0 0 no-repeat;
    }

    #topmenu ul li a.current span {
        display: block;
        width: auto;
        background: #fff url('{T_THEME_PATH}/images/topmenu-active-r.gif') 100% 0 no-repeat;
    }

    #topmenu ul li a:hover {
         color: #000;
        font-weight: none;
        background: #fff url('{T_THEME_PATH}/images/topmenu-active-l.gif') 0 0 no-repeat;
    }

    #topmenu ul li a:hover span {
        display: block;
        width: auto;
        background: #fff url('{T_THEME_PATH}/images/topmenu-active-r.gif') 100% 0 no-repeat;
    }


    /* proSilver Form Styles
    ---------------------------------------- */

    /* General form styles
    ----------------------------------------*/
    fieldset {
       border-width: 0;
       font-family: Verdana, Helvetica, Arial, sans-serif;
       font-size: 1.1em;
    }

    input {
       font-weight: normal;
       cursor: pointer;
       vertical-align: middle;
       padding: 0 3px;
       font-size: 1em;
       font-family: Verdana, Helvetica, Arial, sans-serif;
    }

    select {
       font-family: Verdana, Helvetica, Arial, sans-serif;
       font-weight: normal;
       cursor: pointer;
       vertical-align: middle;
       border: 1px solid #666666;
       padding: 1px;
       background-color: #FAFAFA;
    }

    option {
       padding-right: 1em;
    }

    option.disabled-option {
       color: graytext;
    }

    textarea {
       font-family: "Lucida Grande", Verdana, Helvetica, Arial, sans-serif;
       width: 60%;
       padding: 2px;
       font-size: 1em;
       line-height: 1.4em;
    }

    label {
       cursor: default;
       padding-right: 5px;
       color: #676767;
    }

    label input {
       vertical-align: middle;
    }

    label img {
       vertical-align: middle;
    }

    /* Definition list layout for forms
    ---------------------------------------- */
    fieldset dl {
       padding: 4px 0;
    }

    fieldset dt {
       float: left;   
       width: 40%;
       text-align: left;
       display: block;
    }

    fieldset dd {
       margin-left: 41%;
       vertical-align: top;
       margin-bottom: 3px;
    }

    /* Specific layout 1 */
    fieldset.fields1 dt {
       width: 15em;
       border-right-width: 0;
    }

    fieldset.fields1 dd {
       margin-left: 15em;
       border-left-width: 0;
    }

    fieldset.fields1 {
       background-color: transparent;
    }

    fieldset.fields1 div {
       margin-bottom: 3px;
    }

    /* Specific layout 2 */
    fieldset.fields2 dt {
       width: 15em;
       border-right-width: 0;
    }

    fieldset.fields2 dd {
       margin-left: 16em;
       border-left-width: 0;
    }

    /* Form elements */
    dt label {
       font-weight: bold;
       text-align: left;
    }

    dd label {
       white-space: nowrap;
       color: #333;
    }

    dd input, dd textarea {
       margin-right: 3px;
    }

    dd select {
       width: auto;
    }

    dd textarea {
       width: 85%;
    }

    /* Hover effects */
    fieldset dl:hover dt label {
       color: #000000;
    }

    fieldset.fields2 dl:hover dt label {
       color: inherit;
    }

    #timezone {
       width: 95%;
    }

    * html #timezone {
       width: 50%;
    }

    /* Quick-login on index page */
    fieldset.quick-login {
       margin-top: 5px;
    }

    fieldset.quick-login input {
       width: auto;
    }

    fieldset.quick-login input.inputbox {
       width: 15%;
       vertical-align: middle;
       margin-right: 5px;
       background-color: #f3f3f3;
    }

    fieldset.quick-login label {
       white-space: nowrap;
       padding-right: 2px;
    }

    /* Display options on viewtopic/viewforum pages  */
    fieldset.display-options {
       text-align: center;
       margin: 3px 0 5px 0;
    }

    fieldset.display-options label {
       white-space: nowrap;
       padding-right: 2px;
    }

    fieldset.display-options a {
       margin-top: 3px;
    }

    /* Display actions for ucp and mcp pages */
    fieldset.display-actions {
       text-align: right;
       line-height: 2em;
       white-space: nowrap;
       padding-right: 1em;
    }

    fieldset.display-actions label {
       white-space: nowrap;
       padding-right: 2px;
    }

    fieldset.sort-options {
       line-height: 2em;
    }

    /* MCP forum selection*/
    fieldset.forum-selection {
       margin: 5px 0 3px 0;
       float: right;
    }

    fieldset.forum-selection2 {
       margin: 13px 0 3px 0;
       float: right;
    }

    /* Jumpbox */
    fieldset.jumpbox {
       text-align: right;
       margin-top: 15px;
       height: 2.5em;
    }

    fieldset.quickmod {
       width: 50%;
       float: right;
       text-align: right;
       height: 2.5em;
    }

    /* Submit button fieldset */
    fieldset.submit-buttons {
       text-align: center;
       vertical-align: middle;
       margin: 5px 0;
    }

    fieldset.submit-buttons input {
       vertical-align: middle;
       padding-top: 3px;
       padding-bottom: 3px;
    }

    /* Posting page styles
    ----------------------------------------*/

    /* Buttons used in the editor */
    #format-buttons {
       margin: 15px 0 2px 0;
    }

    #format-buttons input, #format-buttons select {
       vertical-align: middle;
    }

    /* Main message box */
    #message-box {
       width: 80%;
    }

    #message-box textarea {
       font-family: "Trebuchet MS", Verdana, Helvetica, Arial, sans-serif;
       width: 100%;
       font-size: 1.2em;
       color: #333333;
    }

    /* Emoticons panel */
    #smiley-box {
       width: 18%;
       float: right;
    }

    #smiley-box img {
       margin: 3px;
    }

    /* Input field styles
    ---------------------------------------- */
    .inputbox {
       background-color: #FFFFFF;
       border: 1px solid #c0c0c0;
       color: #333333;
       padding: 2px;
       cursor: text;
    }

    .inputbox:hover {
       border: 1px solid #eaeaea;
    }

    .inputbox:focus {
       border: 1px solid #eaeaea;
       color: #4b4b4b;
    }

    input.inputbox   { width: 85%; }
    input.medium   { width: 50%; }
    input.narrow   { width: 25%; }
    input.tiny      { width: 125px; }

    textarea.inputbox {
       width: 85%;
    }

    .autowidth {
       width: auto !important;
    }

    /* Form button styles
    ---------------------------------------- */
    input.button1, input.button2 {
       font-size: 1em;
    }

    a.button1, input.button1, input.button3, a.button2, input.button2 {
       width: auto !important;
       padding-top: 1px;
       padding-bottom: 1px;
       font-family: "Lucida Grande", Verdana, Helvetica, Arial, sans-serif;
       color: #000;
       background: #FAFAFA none repeat-x top;
    }

    a.button1, input.button1 {
       font-weight: bold;
       border: 1px solid #666666;
    }

    input.button3 {
       padding: 0;
       margin: 0;
       line-height: 5px;
       height: 12px;
       background-image: none;
       font-variant: small-caps;
    }

    /* Alternative button */
    a.button2, input.button2, input.button3 {
       border: 1px solid #666666;
    }

    /* <a> button in the style of the form buttons */
    a.button1, a.button1:link, a.button1:visited, a.button1:active, a.button2, a.button2:link, a.button2:visited, a.button2:active {
       text-decoration: none;
       color: #000000;
       padding: 2px 8px;
       line-height: 250%;
       vertical-align: text-bottom;
       background-position: 0 1px;
    }

    /* Hover states */
    a.button1:hover, input.button1:hover, a.button2:hover, input.button2:hover, input.button3:hover {
       border: 1px solid #BCBCBC;
       background-position: 0 100%;
       color: #BCBCBC;
    }

    input.disabled {
       font-weight: normal;
       color: #666666;
    }

    /* Topic and forum Search */
    .search-box {
       margin-top: 3px;
       margin-left: 5px;
       float: left;
    }

    .search-box input {
    }

    input.search {
       background-image: none;
       background-repeat: no-repeat;
       background-position: left 1px;
       padding-left: 17px;
    }

    .full { width: 95%; }
    .medium { width: 50%;}
    .narrow { width: 25%;}
    .tiny { width: 10%;}
    /* proSilver Style Sheet Tweaks

    These style definitions are mainly IE specific
    tweaks required due to its poor CSS support.
    -------------------------------------------------*/

    * html table, * html select, * html input { font-size: 100%; }
    * html hr { margin: 0; }
    * html span.corners-top, * html span.corners-bottom { background-image: url("{T_THEME_PATH}/images/corners_left.gif"); }
    * html span.corners-top span, * html span.corners-bottom span { background-image: url("{T_THEME_PATH}/images/corners_right.gif"); }
    * html div.headerbar span.corners-top { background-image: url("{T_THEME_PATH}/images/corners_left3.gif"); }
    * html div.headerbar span.corners-top span { background-image: url("{T_THEME_PATH}/images/corners_right3.gif"); }

    #wrap { direction: ltr; } /* Fix for breakup of the borders when using IE and RTL */

    * html .inside { float: right; } /* Bottom-right corner fix when using IE6 and RTL */

    .headerbar, #site-description { position: relative; } /* IE headerbar fix */


    table.table1 {
       width: 99%;      /* IE < 6 browsers */
       /* Tantek hack */
       voice-family: "\"}\"";
       voice-family: inherit;
       width: 100%;
    }
    html>body table.table1 { width: 100%; }   /* Reset 100% for opera */

    * html ul.topiclist li { position: relative; }
    * html .postbody h3 img { vertical-align: middle; }

    /* Form styles */
    html>body dd label input { vertical-align: text-bottom; }   /* Align checkboxes/radio buttons nicely */

    * html input.button1, * html input.button2 {
       padding-bottom: 0;
       margin-bottom: 1px;
    }

    /* Misc layout styles */
    * html .column1, * html .column2 { width: 45%; }

    /* Nice method for clearing floated blocks without having to insert any extra markup (like spacer above)
       From http://www.positioniseverything.net/easyclearing.html
    #tabs:after, #minitabs:after, .post:after, .navbar:after, fieldset dl:after, ul.topiclist dl:after, ul.linklist:after, dl.polls:after {
       content: ".";
       display: block;
       height: 0;
       clear: both;
       visibility: hidden;
    }*/

    .clearfix, #tabs, #minitabs, fieldset dl, ul.topiclist dl, dl.polls {
       height: 1%;
       overflow: hidden;
    }

    /* viewtopic fix */
    * html .post {
       height: 25%;
       overflow: hidden;
    }

    /* navbar fix */
    * html .clearfix, * html .navbar, ul.linklist {
       height: 4%;
       overflow: hidden;
    }

    /* Simple fix so forum and topic lists always have a min-height set, even in IE6
       From http://www.dustindiaz.com/min-height-fast-hack */
    dl.icon {
       min-height: 35px;
       height: auto !important;
       height: 35px;
    }

    
    /* Correctly clear floating for details on profile view */
    *:first-child+html dl.details dd {
       margin-left: 30%;
       float: none;
    }

    * html dl.details dd {
       margin-left: 30%;
       float: none;
    }
    /*     
    --------------------------------------------------------------
    Colours and backgrounds for common.css
    -------------------------------------------------------------- */

    html, body {
       
       background: url("http://playstationuser.altervista.org/styles/PlayStation_User_Style/theme/images/sfondo.png") fixed;
	  
	  cursor: url("http://playstationuser.altervista.org/images/cursor.cur"), auto;

       color: #606060;
       background-color: #5F5E5E;
       background-image: url("{T_THEME_PATH}/images/background.gif");
       background-repeat: repeat-x;
    }

    h1 {
       color: #FFFFFF;
    }

    h2 {
       color: #28313F;
    }

    h3 {
       border-bottom-color: #CCCCCC;
       color: #464646;
    }

    hr {
       border-color: #FFFFFF;
       border-top-color: #CCCCCC;
    }

    hr.dashed {
       border-top-color: #CCCCCC;
    }
             


    /* Round cornered boxes and backgrounds
    ---------------------------------------- */
    .headerbar {
       background-color: transparent;
       width: 846px;
       height: 200px;
       color: #9DB92C;
    }
    .headerbar2 {
       background-color: transparent;
       background-image: url("{T_THEME_PATH}/images/logoX.gif");
       background-repeat: no-repeat;
       width: 846px;
       height: 200px;
       color: #9DB92C;
    }

    .navbar {
       background-color: #E5E6E5;
    }

    .forabg, .forumbg {
       background-color: #535353;
       background-image: url("{T_THEME_PATH}/images/bg_list.gif");
    }

    /*
    .forumbg {
       background-color: #7C8891;
       background-image: url("{T_THEME_PATH}/images/bg_header.gif");
    }
    */

    .panel {
       background-color: #ECECEC;
       color: #28313F;
    }

    .post:target .content {
       color: #000000;
    }

    .post:target h3 a {
       color: #000000;
    }

    .bg1   { background-color: #F2F3F2; }
    .bg2   { background-color: #F8F7F7;  }
    .bg3   { background-color: #F1F1F1; }

    .ucprowbg {
       background-color: #E5E6E5;
    }

    .fieldsbg {
       background-color: #E7E8EA;
    }

    span.corners-top {
       background-image: url("{T_THEME_PATH}/images/corners_left.png");
    }

    span.corners-top span {
       background-image: url("{T_THEME_PATH}/images/corners_right.png");
    }

    span.corners-bottom {
       background-image: url("{T_THEME_PATH}/images/corners_left.png");
    }

    span.corners-bottom span {
       background-image: url("{T_THEME_PATH}/images/corners_right.png");
    }

    div.headerbar span.corners-top {
        background-image: url("{T_THEME_PATH}/images/corners_left2.png");
    }

    div.headerbar span.corners-top span {
        background-image: url("{T_THEME_PATH}/images/corners_right2.png");
    }

    /* Horizontal lists
    ----------------------------------------*/

    ul.navlinks {
       border-bottom-color: #FFFFFF;
    }

    /* Table styles
    ----------------------------------------*/
    table.table1 thead th {
       color: #FFFFFF;
    }

    table.table1 tbody tr {
       border-color: #BFC1CF;
    }

    table.table1 tbody tr:hover, table.table1 tbody tr.hover {
       background-color: #F2F2F2;
       color: #000;
    }

    table.table1 td {
       color: #606060;
    }

    table.table1 tbody td {
       border-top-color: #FAFAFA;
    }

    table.table1 tbody th {
       border-bottom-color: #000000;
       color: #333333;
       background-color: #FFFFFF;
    }

    table.info tbody th {
       color: #000000;
    }

    /* Misc layout styles
    ---------------------------------------- */
    dl.details dt {
       color: #000000;
    }

    dl.details dd {
       color: #606060;
    }

    .sep {
       color: #1198D9;
    }

    /* Pagination
    ---------------------------------------- */

    .pagination span strong {
       color: #FFFFFF;
       background-color: #E8E8E8;
       border-color: #E8E8E8;
    }

    .pagination span a, .pagination span a:link, .pagination span a:visited, .pagination span a:active {
       color: #5C758C;
       background-color: #ECEDEE;
       border-color: #B4BAC0;
    }

    .pagination span a:hover {
       border-color: #CADCEB;
       background-color: #CADCEB;
       color: #FFF;
    }

    /* Pagination in viewforum for multipage topics */
    .row .pagination {
       background-image: url("{T_THEME_PATH}/images/icon_pages.gif");
    }

    .row .pagination span a, li.pagination span a {
       background-color: #FFFFFF;
    }

    .row .pagination span a:hover, li.pagination span a:hover {
       background-color: #CADCEB;
    }

    /* Miscellaneous styles
    ---------------------------------------- */

    .copyright {
       color: #a7a7a7;
    }

    .copyright a {
        color: #f4a100 !important;
    }

    .error {
       color: #bc2a4d;
    }

    .reported {
       background-color: #F7ECEF !important;
    }

    li.reported:hover {
       background-color: #ECD5D8 !important;
    }
    .sticky, .announce {
       /* you can add a background for stickies and announcements*/
    }

    div.rules {
       background-color: #ECD5D8;
       color: #bc2a4d;
    }

    p.rules {
       background-color: #ECD5D8;
       background-image: none;
    }

    /*     
    --------------------------------------------------------------
    Colours and backgrounds for links.css
    -------------------------------------------------------------- */

    a:link   { color: #5a5a5a; }
    a:visited   { color: #5a5a5a; }
    a:hover   { color: #336FD3; }
    a:active   { color: #CADCEB; }

    /* Links on gradient backgrounds */
    #search-box a:link, .navbg a:link, .forumbg .header a:link, .forabg .header a:link, th a:link {
       color: #FFFFFF;
    }

    #search-box a:visited, .navbg a:visited, .forumbg .header a:visited, .forabg .header a:visited, th a:visited {
       color: #FFFFFF;
    }

    #search-box a:hover, .navbg a:hover, .forumbg .header a:hover, .forabg .header a:hover, th a:hover {
       color: #7B9028;
    }

    #search-box a:active, .navbg a:active, .forumbg .header a:active, .forabg .header a:active, th a:active {
       color: #000000;
    }

    /* Links for forum/topic lists */
    a.forumtitle {
       color: #5a5a5a;
    }

    /* a.forumtitle:visited { color: #5a5a5a; } */

    a.forumtitle:hover {
       color: #AECE2C;
    }

    a.forumtitle:active {
       color: #5a5a5a;
    }

    a.topictitle {
       color: #5a5a5a;
    }

    /* a.topictitle:visited { color: #CADCEB; } */

    a.topictitle:hover {
       color: #92AD27;
    }

    a.topictitle:active {
       color: #5a5a5a;
    }

    /* Post body links */
    .postlink {
       color: #CADCEB;
       border-bottom-color: #CADCEB;
    }

    .postlink:visited {
       color: #5D8FBD;
       border-bottom-color: #666666;
    }

    .postlink:active {
       color: #CADCEB;
    }

    .postlink:hover {
       background-color: #D0E4F6;
       color: #0D4473;
    }

    .signature a, .signature a:visited, .signature a:active, .signature a:hover {
       background-color: transparent;
    }

    /* Profile links */
    .postprofile a:link, .postprofile a:active, .postprofile a:visited, .postprofile dt.author a {
       color: #5a5a5a;
    }

    .postprofile a:hover, .postprofile dt.author a:hover {
       color: #7E9524;
    }

    /* Profile searchresults */   
    .search .postprofile a {
       color: #5a5a5a;
    }

    .search .postprofile a:hover {
       color: #7E9524;
    }

    /* Back to top of page */
    a.top {
       background-image: url("{IMG_ICON_BACK_TOP_SRC}");
    }

    a.top2 {
       background-image: url("{IMG_ICON_BACK_TOP_SRC}");
    }

    /* Arrow links  */
    a.up      { background-image: url("{T_THEME_PATH}/images/arrow_up.gif") }
    a.down      { background-image: url("{T_THEME_PATH}/images/arrow_down.gif") }
    a.left      { background-image: url("{T_THEME_PATH}/images/arrow_left.gif") }
    a.right      { background-image: url("{T_THEME_PATH}/images/arrow_right.gif") }

    a.up:hover {
       background-color: transparent;
    }

    a.left:hover {
       color: #CADCEB;
    }

    a.right:hover {
       color: #CADCEB;
    }


    /*     
    --------------------------------------------------------------
    Colours and backgrounds for content.css
    -------------------------------------------------------------- */


    ul.forums {
       background-color: #FFFFFF;
       background-image: url("{T_THEME_PATH}/images/gradient.gif");
       background-repeat: repeat-x;
    }

    ul.topiclist li {
       color: #4C5D77;
    }

    ul.topiclist dd {
       border-left-color: #FFFFFF;
    }

    .rtl ul.topiclist dd {
       border-right-color: #fff;
       border-left-color: transparent;
    }

    ul.topiclist li.row dt a.subforum.read {
       background-image: url("{IMG_SUBFORUM_READ_SRC}");
    }

    ul.topiclist li.row dt a.subforum.unread {
       background-image: url("{IMG_SUBFORUM_UNREAD_SRC}");
    }
    li.row {
       background-color: #E8ECEE;
       background-image: url("{T_THEME_PATH}/images/gradient.gif");
       background-repeat: repeat-x;
    }

    li.row strong {
       color: #000000;
    }

    /*
    li.row:hover {
       background-color: #F6F4D0;
    }
    */

    li.row:hover dd {
       border-left-color: #CCCCCC;
    }

    .rtl li.row:hover dd {
       border-right-color: #CCCCCC;
       border-left-color: transparent;
    }

    li.header dt, li.header dd {
       color: #FFFFFF;
    }

    /* Forum list column styles */
    ul.topiclist dd.searchextra {
       color: #333333;
    }

    /* Post body styles
    ----------------------------------------*/
    .postbody {
       color: #333333;
    }

    /* Content container styles
    ----------------------------------------*/
    .content {
       color: #333333;
    }

    .content h2, .panel h2 {
       color: #464646;
       border-bottom-color:  #CCCCCC;
    }

    dl.faq dt {
       color: #333333;
    }

    .posthilit {
       background-color: #F3BFCC;
       color: #92AD27;
    }

    /* Post signature */
    .signature {
       border-top-color: #CCCCCC;
    }

    /* Post noticies */
    .notice {
       border-top-color:  #CCCCCC;
    }

    /* BB Code styles
    ----------------------------------------*/
    /* Quote block */
    blockquote {
       background-color: #EBEADD;
       background-image: url("{T_THEME_PATH}/images/quote.gif");
       border-color:#DBDBCE;
    }

    blockquote blockquote {
       /* Nested quotes */
       background-color:#EFEED9;
    }

    blockquote blockquote blockquote {
       /* Nested quotes */
       background-color: #EBEADD;
    }

    /* Code block */
    dl.codebox {
       background-color: #FFFFFF;
       border-color: #C9D2D8;
    }

    dl.codebox dt {
       border-bottom-color:  #CCCCCC;
    }

    dl.codebox code {
       color: #2E8B57;
    }

    .syntaxbg      { color: #FFFFFF; }
    .syntaxcomment   { color: #FF8000; }
    .syntaxdefault   { color: #0000BB; }
    .syntaxhtml      { color: #000000; }
    .syntaxkeyword   { color: #007700; }
    .syntaxstring   { color: #DD0000; }

    /* Attachments
    ----------------------------------------*/
    .attachbox {
       background-color: #FFFFFF;
       border-color:  #C9D2D8;
    }

    .pm-message .attachbox {
       background-color: #F2F3F3;
    }

    .attachbox dd {
       border-top-color: #C9D2D8;
    }

    .attachbox p {
       color: #666666;
    }

    .attachbox p.stats {
       color: #666666;
    }

    .attach-image img {
       border-color: #999999;
    }

    /* Inline image thumbnails */

    dl.file dd {
       color: #666666;
    }

    dl.thumbnail img {
       border-color: #666666;
       background-color: #FFFFFF;
    }

    dl.thumbnail dd {
       color: #666666;
    }

    dl.thumbnail dt a:hover {
       background-color: #EEEEEE;
    }

    dl.thumbnail dt a:hover img {
       border-color: #CADCEB;
    }

    /* Post poll styles
    ----------------------------------------*/

    fieldset.polls dl {
       border-top-color: #E5E6E5;
       color: #666666;
    }

    fieldset.polls dl.voted {
       color: #000000;
    }

    fieldset.polls dd div {
       color: #FFFFFF;
    }

    .rtl .pollbar1, .rtl .pollbar2, .rtl .pollbar3, .rtl .pollbar4, .rtl .pollbar5 {
       border-right-color: transparent;
    }

    .pollbar1 {
       background-color: #AA2346;
       border-bottom-color: #74162C;
       border-right-color: #74162C;
    }

    .rtl .pollbar1 {
       border-left-color: #74162C;
    }

    .pollbar2 {
       background-color: #BE1E4A;
       border-bottom-color: #8C1C38;
       border-right-color: #8C1C38;
    }

    .rtl .pollbar2 {
       border-left-color: #8C1C38;
    }

    .pollbar3 {
       background-color: #D11A4E;
       border-bottom-color: #AA2346;
       border-right-color: #AA2346;
    }

    .rtl .pollbar3 {
       border-left-color: #AA2346;
    }

    .pollbar4 {
       background-color: #E41653;
       border-bottom-color: #BE1E4A;
       border-right-color: #BE1E4A;
    }

    .rtl .pollbar4 {
       border-left-color: #BE1E4A;
    }

    .pollbar5 {
       background-color: #F81157;
       border-bottom-color: #D11A4E;
       border-right-color: #D11A4E;
    }

    .rtl .pollbar5 {
       border-left-color: #D11A4E;
    }

    /* Poster profile block
    ----------------------------------------*/
    .postprofile {
       color: #666666;
       border-left-color: #FFFFFF;
    }

    .rtl .postprofile {
       border-right-color: #FFFFFF;
       border-left-color: transparent;
    }

    .pm .postprofile {
       border-left-color: #DDDDDD;
    }

    .rtl .pm .postprofile {
       border-right-color: #DDDDDD;
       border-left-color: transparent;
    }

    .postprofile strong {
       color: #000000;
    }

    .online {
       background-image: url("{T_IMAGESET_LANG_PATH}/icon_user_online.gif");
    }

    /*     
    --------------------------------------------------------------
    Colours and backgrounds for buttons.css
    -------------------------------------------------------------- */

    /* Big button images */
    .reply-icon span   { background-image: url("{IMG_BUTTON_TOPIC_REPLY_SRC}"); }
    .post-icon span      { background-image: url("{IMG_BUTTON_TOPIC_NEW_SRC}"); }
    .locked-icon span   { background-image: url("{IMG_BUTTON_TOPIC_LOCKED_SRC}"); }
    .pmreply-icon span   { background-image: url("{IMG_BUTTON_PM_REPLY_SRC}") ;}
    .newpm-icon span    { background-image: url("{IMG_BUTTON_PM_NEW_SRC}") ;}
    .forwardpm-icon span   { background-image: url("{IMG_BUTTON_PM_FORWARD_SRC}") ;}

    a.print {
       background-image: url("{T_THEME_PATH}/images/icon_print.gif");
    }

    a.sendemail {
       background-image: url("{T_THEME_PATH}/images/icon_sendemail.gif");
    }

    a.fontsize {
       background-image: url("{T_THEME_PATH}/images/icon_fontsize.gif");
    }

    /* Icon images
    ---------------------------------------- */
    .sitehome                  { background-image: url("{T_THEME_PATH}/images/icon_home.png"); }
    .icon-faq                  { background-image: url("{T_THEME_PATH}/images/icon_faq.png"); }
    .icon-members               { background-image: url("{T_THEME_PATH}/images/icon_members.png"); }
    .icon-home                  { background-image: url("{T_THEME_PATH}/images/icon_home.png"); }
    .icon-ucp                  { background-image: url("{T_THEME_PATH}/images/icon_ucp.png"); }
    .icon-register               { background-image: url("{T_THEME_PATH}/images/icon_register.png"); }
    .icon-logout               { background-image: url("{T_THEME_PATH}/images/icon_logout.png"); }
    .icon-bookmark               { background-image: url("{T_THEME_PATH}/images/icon_bookmark.png"); }
    .icon-bump                  { background-image: url("{T_THEME_PATH}/images/icon_bump.png"); }
    .icon-subscribe               { background-image: url("{T_THEME_PATH}/images/icon_subscribe.png"); }
    .icon-unsubscribe            { background-image: url("{T_THEME_PATH}/images/icon_unsubscribe.png"); }
    .icon-pages                  { background-image: url("{T_THEME_PATH}/images/icon_pages.png"); }
    .icon-search               { background-image: url("{T_THEME_PATH}/images/icon_search.png"); }

    /* Profile & navigation icons */
    .email-icon, .email-icon a      { background-image: url("{IMG_ICON_CONTACT_EMAIL_SRC}"); }
    .aim-icon, .aim-icon a         { background-image: url("{IMG_ICON_CONTACT_AIM_SRC}"); }
    .yahoo-icon, .yahoo-icon a      { background-image: url("{IMG_ICON_CONTACT_YAHOO_SRC}"); }
    .web-icon, .web-icon a         { background-image: url("{IMG_ICON_CONTACT_WWW_SRC}"); }
    .msnm-icon, .msnm-icon a         { background-image: url("{IMG_ICON_CONTACT_MSNM_SRC}"); }
    .icq-icon, .icq-icon a         { background-image: url("{IMG_ICON_CONTACT_ICQ_SRC}"); }
    .jabber-icon, .jabber-icon a      { background-image: url("{IMG_ICON_CONTACT_JABBER_SRC}"); }
    .pm-icon, .pm-icon a            { background-image: url("{IMG_ICON_CONTACT_PM_SRC}"); }
    .quote-icon, .quote-icon a      { background-image: url("{IMG_ICON_POST_QUOTE_SRC}"); }

    /* Moderator icons */
    .report-icon, .report-icon a      { background-image: url("{IMG_ICON_POST_REPORT_SRC}"); }
    .edit-icon, .edit-icon a         { background-image: url("{IMG_ICON_POST_EDIT_SRC}"); }
    .delete-icon, .delete-icon a      { background-image: url("{IMG_ICON_POST_DELETE_SRC}"); }
    .info-icon, .info-icon a         { background-image: url("{IMG_ICON_POST_INFO_SRC}"); }
    .warn-icon, .warn-icon a         { background-image: url("{IMG_ICON_USER_WARN_SRC}"); } /* Need updated warn icon */

    /*     
    --------------------------------------------------------------
    Colours and backgrounds for cp.css
    -------------------------------------------------------------- */

    /* Main CP box
    ----------------------------------------*/

    #cp-main h3, #cp-main hr, #cp-menu hr {
       border-color: #A4B3BF;
    }

    #cp-main .panel li.row {
       border-bottom-color: #B5C1CB;
       border-top-color: #F9F9F9;
    }

    ul.cplist {
       border-top-color: #B5C1CB;
    }

    #cp-main .panel li.header dd, #cp-main .panel li.header dt {
       color: #000000;
    }

    #cp-main table.table1 thead th {
       color: #333333;
       border-bottom-color: #333333;
    }

    #cp-main .pm-message {
       border-color: #DBDEE2;
       background-color: #FFFFFF;
    }

    /* CP tabbed menu
    ----------------------------------------*/
    #tabs a {
       background-image: url("{T_THEME_PATH}/images/bg_tabs1.gif");
    }

    #tabs a span {
       background-image: url("{T_THEME_PATH}/images/bg_tabs2.gif");
       color: #606060;
    }

    #tabs a:hover span {
       color: #92AD27;
    }

    #tabs .activetab a {
       border-bottom-color: #F1F1F1;
    }

    #tabs .activetab a span {
       color: #333333;
    }

    #tabs .activetab a:hover span {
       color: #000000;
    }

    /* Mini tabbed menu used in MCP
    ----------------------------------------*/
    #minitabs li {
       background-color: #f3e9cf;
    }

    #minitabs li.activetab {
       background-color: #F9F9F9;
    }

    #minitabs li.activetab a, #minitabs li.activetab a:hover {
       color: #333333;
    }

    /* UCP navigation menu
    ----------------------------------------*/

    /* Link styles for the sub-section links */
    #navigation a {
       color: #333;
       background-color: #C3C3C3;
       background-image: url("{T_THEME_PATH}/images/bg_menu.gif");
    }

    #navigation a:hover {
       background-color: #C3C3C3;
       color: #92AD27;
    }

    #navigation #active-subsection a {
       color: #7E9524;
       background-color: #F9F9F9;
       background-image: none;
    }

    #navigation #active-subsection a:hover {
       color: #7E9524;
    }

    /* Preferences pane layout
    ----------------------------------------*/
    #cp-main h2 {
       color: #333333;
    }

    #cp-main .panel {
       background-color: #F9F9F9;
    }

    #cp-main .pm {
       background-color: #FFFFFF;
    }

    #cp-main span.corners-top, #cp-menu span.corners-top {
       background-image: url("{T_THEME_PATH}/images/corners_left2.gif");
    }

    #cp-main span.corners-top span, #cp-menu span.corners-top span {
       background-image: url("{T_THEME_PATH}/images/corners_right2.gif");
    }

    #cp-main span.corners-bottom, #cp-menu span.corners-bottom {
       background-image: url("{T_THEME_PATH}/images/corners_left2.gif");
    }

    #cp-main span.corners-bottom span, #cp-menu span.corners-bottom span {
       background-image: url("{T_THEME_PATH}/images/corners_right2.gif");
    }

    /* Topicreview */
    #cp-main .panel #topicreview span.corners-top, #cp-menu .panel #topicreview span.corners-top {
       background-image: url("{T_THEME_PATH}/images/corners_left.gif");
    }

    #cp-main .panel #topicreview span.corners-top span, #cp-menu .panel #topicreview span.corners-top span {
       background-image: url("{T_THEME_PATH}/images/corners_right.gif");
    }

    #cp-main .panel #topicreview span.corners-bottom, #cp-menu .panel #topicreview span.corners-bottom {
       background-image: url("{T_THEME_PATH}/images/corners_left.gif");
    }

    #cp-main .panel #topicreview span.corners-bottom span, #cp-menu .panel #topicreview span.corners-bottom span {
       background-image: url("{T_THEME_PATH}/images/corners_right.gif");
    }

    /* Friends list */
    .cp-mini {
       background-color: #eef5f9;
    }

    dl.mini dt {
       color: #425067;
    }

    /* PM Styles
    ----------------------------------------*/
    /* PM Message history */
    .current {
       color: #525252 !important;
    }

    /* PM marking colours */
    .pmlist li.pm_message_reported_colour, .pm_message_reported_colour {
       border-left-color: #92AD27;
       border-right-color: #92AD27;
    }

    .pmlist li.pm_marked_colour, .pm_marked_colour {
       border-color: #FF6600;
    }

    .pmlist li.pm_replied_colour, .pm_replied_colour {
       border-color: #A9B8C2;
    }

    .pmlist li.pm_friend_colour, .pm_friend_colour {
       border-color: #5D8FBD;
    }

    pmlist li.pm_foe_colour, .pm_foe_colour {
       border-color: #000000;
    }

    /* Avatar gallery */
    #gallery label {
       background-color: #FFFFFF;
       border-color: #CCC;
    }

    #gallery label:hover {
       background-color: #EEE;
    }

    /*     
    --------------------------------------------------------------
    Colours and backgrounds for forms.css
    -------------------------------------------------------------- */

    /* General form styles
    ----------------------------------------*/
    select {
       border-color: #666666;
       background-color: #FAFAFA;
    }

    label {
       color: #425067;
    }

    option.disabled-option {
       color: graytext;
    }

    /* Definition list layout for forms
    ---------------------------------------- */
    dd label {
       color: #333;
    }

    /* Hover effects */
    fieldset dl:hover dt label {
       color: #000000;
    }

    fieldset.fields2 dl:hover dt label {
       color: inherit;
    }

    /* Quick-login on index page */
    fieldset.quick-login input.inputbox {
       background-color: #F2F3F3;
    }

    /* Posting page styles
    ----------------------------------------*/

    #message-box textarea {
       color: #333333;
    }

    /* Input field styles
    ---------------------------------------- */
    .inputbox {
       background-color: #FFFFFF;
       border-color: #B4BAC0;
       color: #333333;
    }

    .inputbox:hover {
       border-color: #9DB92C;
    }

    .inputbox:focus {
       border-color: #9DB92C;
       color: #0F4987;
    }

    /* Form button styles
    ---------------------------------------- */

    a.button1, input.button1, input.button3, a.button2, input.button2 {
       color: #000;
       background-color: #FAFAFA;
       background-image: url("{T_THEME_PATH}/images/bg_button.gif");
    }

    a.button1, input.button1 {
       border-color: #666666;
    }

    input.button3 {
       background-image: none;
    }

    /* Alternative button */
    a.button2, input.button2, input.button3 {
       border-color: #666666;
    }

    /* <a> button in the style of the form buttons */
    a.button1, a.button1:link, a.button1:visited, a.button1:active, a.button2, a.button2:link, a.button2:visited, a.button2:active {
       color: #000000;
    }

    /* Hover states */
    a.button1:hover, input.button1:hover, a.button2:hover, input.button2:hover, input.button3:hover {
       border-color: #92AD27;
       color: #92AD27;
    }

    input.search {
       background-image: url("{T_THEME_PATH}/images/icon_textbox_search.gif");
    }

    input.disabled {
       color: #666666;
    }

    a:link {
        color: #5F5E5E;
        text-decoration: none;
    }

    a:visited {
        color: #9DB92C;
        text-decoration: none;
    }

    a:hover {
        text-decoration: underline;
    }
    /* Navigation links - for the link tree. */

    .nav, .nav:link, .nav:visited {
        color: #000000;
        text-decoration: none;
    }

    a.nav:hover {
        color: #cc3333;
        text-decoration: underline;
    }

    body {
        background: #5f5e5e url("{T_THEME_PATH}/images/body-bg.gif") 0 0 repeat-x;
        padding: 30px 0 0 0;
        margin: 0;
    }

    #wrapper {
        width: 950px;
        min-width: 720px;
        margin: 0 auto;
        padding: 0;
    }

    #shad-l {
        padding-left: 18px;
        background: url("{T_THEME_PATH}/images/shadow-l.gif") 0 0 no-repeat;
    }

    #shad-r {
        padding-right: 18px;
        background: url("{T_THEME_PATH}/images/shadow-r.gif") 100% 0 no-repeat;
    }

    #header {
        position: relative;
        height: 300px;
        overflow: hidden;
        background: #9DB92C url("{T_THEME_PATH}/images/header-bg.gif") 0 0 repeat-x;
    }

    #head-r {
        height: 376px;
        background: url("{T_THEME_PATH}/images/logo.png") 3% 0 no-repeat;
    }

    #head-l {
        background: url("{T_THEME_PATH}/images/header-l.gif") 0 0 no-repeat;
    }

    #logo {
        position: absolute;
        top: 0px;
        left: 20px;
        display: block;
        width: 700px;
        height: 376px;
        cursor: pointer;

    }

    #userarea {
        height: 73px;
        float: right;
        padding: 12px 25px 0 0;
        text-align: right;
        font-size: 1.0em;
        color: #ddd;
        font-family: tahoma, sans-serif;
    }

    #userarea a:link, #userarea a:visited {
        color: #eee;
    }

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

    #searcharea {
        float: right;
        padding: 5px 25px 0 0;
        margin: 0;
        clear: both;
    }



    #bodyarea {
        padding: 10px;
        margin: 0;
        background: #fcfcfc url("{T_THEME_PATH}/images/bodyarea-bg.gif") 0 0 repeat-x;
    }

    #footer {
        background: #272727 url("{T_THEME_PATH}/images/footer-bg.gif") 0 100% repeat-x;
    }

    #foot-r {
        height: 140px;
        background: url("{T_THEME_PATH}/images/footer-r.gif") 100% 100% no-repeat;
    }

    #foot-l {
        background: url("{T_THEME_PATH}/images/footer-l.gif") 0 100% no-repeat;
    }

    #footerarea {
        text-align: center;
        padding: 10px;
        color: #ccc;
    }

    #footerarea a:link, #footerarea a:visited {
        color: #a0a0a0;
    }

    #footerarea a:hover {
        color: #ccc;
        text-decoration: none;
    }


Avatar utente
Haku
Utente
Utente
Messaggi: 2529
Iscritto il: 22/09/2009, 22:36
Sesso: Maschio
Versione: 3.0.9
Server: UNIX/Linux
Contatta:

Re: Cambiare lo sfonfo del sito

Messaggio da Haku » 08/01/2010, 19:22

Trova questa riga:

Codice: Seleziona tutto

images/body-bg.gif
(è la tua immagine di sfondo di adesso),e cambi con la tua immagine uppata,o la inserisci tramite ftp sostituendo l'originale.

EDIT:vedo dal profilo che hai la board ancora alla 3.0.4.
Ti consiglio di aggiornare all'ultima versione,in modo che possiamo darti supporto più facilmente,dato che alcuni file possono cambiare...

Avatar utente
Sir Xiradorn
Grafico
Grafico
Messaggi: 1659
Iscritto il: 11/08/2009, 12:41
Sesso: Maschio
Versione: 3.2.0
Server: UNIX/Linux
PHP: 5.6.15
Database: MariaDB 10.1.9
Località: Lontano....
Contatta:

Re: Cambiare lo sfonfo del sito

Messaggio da Sir Xiradorn » 08/01/2010, 21:53

Ehm l'immagine sarebbe coperta da diritti visto che l'ho fatta io per la mia board...quindi se volete conoscere il metodo ok ma non potete riprodurre materiale della mia board visto che il taglio e sovrapposizione delle righe obblique si vede che è stato fatto per togliere la scritta xiradorn lab non è proprio una cosa carina......e visto che si potrebbe anche incorrere in qualche piccola conseguenza legale beh magari chiedete il permesso
Sir Xiradorn
Immagine
~ XDojo - Xiradorn Lab Division - xiradorn.it ~
~ GitHub - XiradornLab ~

Immagine
Stargate - phpbb 3.0.x || 3.1.x || 3.2.x

Avatar utente
xX_Simon_Xx
Utente Pro
Utente Pro
Messaggi: 637
Iscritto il: 25/11/2009, 15:36
Sesso: Maschio
Versione: 3.0.10
Server: UNIX/Linux
PHP: 5.2.13
Database: MySQL(i) 5.1.34
Contatta:

Re: Cambiare lo sfonfo del sito

Messaggio da xX_Simon_Xx » 08/01/2010, 22:01

scusa :oops: :oops: :oops: :oops:
io ti avevo chiesto in un mp se me la potevi dare ma tu non hai risposto
scusa ancora :oops: :oops: :oops: :oops:
Ultima modifica di xX_Simon_Xx il 08/01/2010, 22:11, modificato 1 volta in totale.

Avatar utente
Sir Xiradorn
Grafico
Grafico
Messaggi: 1659
Iscritto il: 11/08/2009, 12:41
Sesso: Maschio
Versione: 3.2.0
Server: UNIX/Linux
PHP: 5.6.15
Database: MariaDB 10.1.9
Località: Lontano....
Contatta:

Re: Cambiare lo sfonfo del sito

Messaggio da Sir Xiradorn » 08/01/2010, 22:11

Non si tratta di scusanti si tratta che passate voi i guai. Io vi faccio anche il piacere di avvertire ma se la politica è questa non va bene anche perchè io non vengo nelle vostre board e mi frego pezzi della vostra board su cui avete magari lavoracchiato un po più intensamente del vostro solito. Se volete uno chiedete e due se una cosa ha dei diritti ci starà qualche ragione al max chiedete se ne potreste avere una vostra e ve la faccio pure ma che si prendano cose dalla mia board, senza permesso e soprattutto manomettendole in maniera visibile (per me che sono grafico ancora di più) mi irrita terribilmente

Perdonate l'ot ma volevo essere chiaro.
Sir Xiradorn
Immagine
~ XDojo - Xiradorn Lab Division - xiradorn.it ~
~ GitHub - XiradornLab ~

Immagine
Stargate - phpbb 3.0.x || 3.1.x || 3.2.x

Avatar utente
Astro86
phpBB Expert
phpBB Expert
Messaggi: 924
Iscritto il: 12/08/2009, 14:36
Sesso: Maschio
Versione: 3.2.0
Server: UNIX/Linux
PHP: 5.6
Database: MYSQL
Località: PC. Via localhost N° 82.51.149.40
Contatta:

Re: Cambiare lo sfonfo del sito

Messaggio da Astro86 » 09/01/2010, 2:24

siete stati sgamati :lol:
comunque e vero irrità moltissimo per chi è grafico..

spesso e sottovalutato anche un piccolo lavoro grafico come questo:
Immagine
ma sotto a questa semplice immagine ci sono ore di lavoro con livelli, Tonalità, filtri ecc.
quindi a mia avviso se volete fare la meglio cosa cercate qualche immagine senza (diciamo) copyright o coprite meglio l'inganno :lol: :lol:

Avatar utente
Sir Xiradorn
Grafico
Grafico
Messaggi: 1659
Iscritto il: 11/08/2009, 12:41
Sesso: Maschio
Versione: 3.2.0
Server: UNIX/Linux
PHP: 5.6.15
Database: MariaDB 10.1.9
Località: Lontano....
Contatta:

Re: Cambiare lo sfonfo del sito

Messaggio da Sir Xiradorn » 09/01/2010, 9:26

No nessun coprire meglio l'inganno! Vi prendo a palate nei denti....mi compro una pala di titanio!

Ora torniamo OT
Sir Xiradorn
Immagine
~ XDojo - Xiradorn Lab Division - xiradorn.it ~
~ GitHub - XiradornLab ~

Immagine
Stargate - phpbb 3.0.x || 3.1.x || 3.2.x

Avatar utente
xX_Simon_Xx
Utente Pro
Utente Pro
Messaggi: 637
Iscritto il: 25/11/2009, 15:36
Sesso: Maschio
Versione: 3.0.10
Server: UNIX/Linux
PHP: 5.2.13
Database: MySQL(i) 5.1.34
Contatta:

Re: Cambiare lo sfonfo del sito

Messaggio da xX_Simon_Xx » 11/01/2010, 8:52

va bè aparte questo ne ho fatta una io nuova l' ho messa solo che copre solo mezza pagina e non tutta
perchè??
l'altezza di questa e come qella che c'era prima 500px
allora perchè non copre tutta la pagina?
Immagine

Rispondi

Torna a “Supporto stili”

Chi c’è in linea

Visitano il forum: Nessuno e 35 ospiti