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

ristringere lo stile

Supporto stili in generale.
Rispondi
DOWGR
Utente
Utente
Messaggi: 301
Iscritto il: 25/07/2011, 22:36
Versione: 3.0.10
Server: UNIX/Linux
Contatta:

ristringere lo stile

Messaggio da DOWGR » 02/09/2011, 20:02

raga mi sapete dire che file modificare per poter ristringere la pagina del forum e vedere meglio
il bg_body
grazie

Avatar utente
Tiger
phpBB Expert
phpBB Expert
Messaggi: 1998
Iscritto il: 24/05/2011, 12:37
Sesso: Maschio
Versione: 3.0.12
Server: UNIX/Linux
PHP: 5.3.28
Database: MySQL(i) 5.5.35-cll
Località: Roma
Contatta:

Re: ristringere lo stile

Messaggio da Tiger » 02/09/2011, 21:57

Allora purtroppo il tuo stile e' abbastanza difficile da stringere in termini di .css,ti h trovato una soluzione per vedere l'immagine(bg_body.gif) di sfondo:
Mi raccomando bakup file che andrai a modificare:
Tuo stile /theme/colour.css
cerca:

Codice: Seleziona tutto

html, body {
	color: #555;
	background: url("{T_THEME_PATH}/images/bg_body.gif");
}
Sostituisci con:

Codice: Seleziona tutto

html, body {
   background-image:url("{T_THEME_PATH}/images/bg_body.png"); 
   background-color: #A0A0A0;
   background-position: top center;
   background-attachment: fixed;
   background-repeat: repeat ;
}
Nota bene che ho cambiato gif con png cosi' avrai una qualita' di immagine di sfondo molto migliore
il consiglio per la dimensione dell'immagine:1600x1200
poi cerca :

Codice: Seleziona tutto

#wrap {
	border: 1px solid #ddd;
	background-image: url("{T_THEME_PATH}/images/bg_wrap.gif");
}
Sostituiscilo con:

Codice: Seleziona tutto

#wrap {
	border: 1px solid #ddd;
	background-color: transparent;
}
Da pca poi aggiorni il tema dfel proribbons svuoti la chache
Non hai altro che il tuo stile,con il corpo pero' completamente trasparente e con il fix dell'immagine di sfondo che non si ripete e rimane fissa indipendentemente dallo scrolling forum .Vedi se ti piace come soluzione
calcola che la prova l'ho fatta pero' sul proribbons aggiornato al 3.0.8 diverso dal tuo pero' credo che su quel codice non cambi nulla

DOWGR
Utente
Utente
Messaggi: 301
Iscritto il: 25/07/2011, 22:36
Versione: 3.0.10
Server: UNIX/Linux
Contatta:

Re: ristringere lo stile

Messaggio da DOWGR » 03/09/2011, 14:27

raga come lo ristringo

Avatar utente
lenders
phpBB Expert
phpBB Expert
Messaggi: 713
Iscritto il: 22/06/2010, 14:28
Sesso: Maschio
Versione: 3.0.10
Server: UNIX/Linux
Database: MySQL(i) 5.1.49-community-log
Località: Napoli
Contatta:

Re: ristringere lo stile

Messaggio da lenders » 03/09/2011, 14:49


DOWGR
Utente
Utente
Messaggi: 301
Iscritto il: 25/07/2011, 22:36
Versione: 3.0.10
Server: UNIX/Linux
Contatta:

Re: ristringere lo stile

Messaggio da DOWGR » 03/09/2011, 15:11

lenders ho seguito la tua guida http://www.phpbbitalia.net/forum/guide- ... t2926.html sul forum di prova va benissimo uso lo stesso stile ma sul forum che uso non va si ingrandisce tutto ti allego il file common.css

Codice: Seleziona tutto

/* General pro_ribbons Markup Styles
---------------------------------------- */

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

:focus {
	outline: 0;
}

html {
	font-size: 100%;
	/* Always show a scrollbar for short pages - stops the jump when the scrollbar appears. non-IE browsers */
	height: 101%;
}

body {
	/* Text-Sizing with ems: http://www.clagnut.com/blog/348/ */
	font-family: Verdana, Helvetica, Arial, sans-serif;
	color: #828282;
	/*font-size: 62.5%;			 This sets the default font size to be equivalent to 10px */
	font-size: 10px;
	padding: 5px;
}

h1 {
	/* Forum name */
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	padding: 0.6em 0 0.2em 0;
	text-align: center;
	font-weight: bold;
	font-size: 2em;
}

h2 {
	/* Forum header titles */
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-weight: normal;
	color: #3f3f3f;
	font-size: 2em;
	margin: 0.8em 0 0.2em 0;
}

h2.solo {
	margin-bottom: 1em;
}

h3 {
	/* Sub-headers (also used as post headers, but defined later) */
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	text-transform: uppercase;
	border-bottom: 1px solid #CCCCCC;
	margin-bottom: 3px;
	padding-bottom: 2px;
	font-size: 1.05em;
	color: #989898;
	margin-top: 20px;
}

h4 {
	/* Forum and topic list titles */
	font-family: "Trebuchet MS", Verdana, Helvetica, Arial, Sans-serif;
	font-size: 1.3em;
}

p {
	line-height: 1.3em;
	font-size: 1.1em;
	margin-bottom: 1.5em;
}

img {
	border-width: 0;
	max-width: 99%;
}

hr {
	/* Also see tweaks.css */
	border: 0 none #FFFFFF;
	border-top: 1px solid #CCCCCC;
	height: 1px;
	margin: 5px 0;
	display: block;
	clear: both;
}

hr.dashed {
	border-top: 1px dashed #CCCCCC;
	margin: 10px 0;
}

hr.divider {
	display: none;
}

p.right {
	text-align: right;
}

/* Main blocks
---------------------------------------- */
#wrap {
	padding: 5px;
}

#simple-wrap {
	padding: 6px 10px;
}

#page-body {
	margin: 4px 0;
	clear: both;
}

#page-footer {
	clear: both;
}

#page-footer h3 {
	margin-top: 20px;
}

#logo {
	float: left;
	width: auto;
	padding: 5px;
}

a#logo:hover {
	text-decoration: none;
}

/* Search box
--------------------------------------------- */
#search-box {
	color: #FFFFFF;
	position: relative;
	margin-top: 30px;
	margin-right: 5px;
	display: block;
	float: right;
	text-align: right;
	white-space: nowrap; /* For Opera */
}

#search-box #keywords {
	width: 95px;
	background-color: #FFF;
}

#search-box input {
	border: 1px solid #b0b0b0;
}

/* .button1 style defined later, just a few tweaks for the search button version */
#search-box input.button1 {
	padding: 1px 5px;
}

#search-box li {
	text-align: right;
	margin-top: 4px;
}

#search-box img {
	vertical-align: middle;
	margin-right: 3px;
}

/* Site description and logo */
#site-description span {
	display: block;
	font-size: 1.2em;
	text-align: center;
}

/* Round cornered boxes and backgrounds
---------------------------------------- */
.headerbar {
	background: #ebebeb none repeat-x 0 0;
	color: #FFFFFF;
	margin-bottom: 4px;
	padding: 0 5px;
}

.navbar {
	background-color: #ebebeb;
	padding: 0 10px;
}

.forabg, .forumbg  {
	background: #b1b1b1 none repeat-x 0 0;
	margin-bottom: 4px;
	padding: 0 5px;
	clear: both;
}

.panel {
	margin-bottom: 4px;
	padding: 0 10px;
	background-color: #f3f3f3;
	color: #3f3f3f;
}

.post {
	padding: 0 10px;
	margin-bottom: 4px;
	background-repeat: no-repeat;
	background-position: 100% 0;
}

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

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

.bg1 {background-color: #f7f7f7;}
.bg2 { background-color: #f2f2f2;}
.bg3 { background-color: #ebebeb;}

.rowbg {
	margin: 5px 5px 2px 5px;
}

.ucprowbg {
	background-color: #e2e2e2;
}

.fieldsbg {
	/*border: 1px #DBDEE2 solid;*/
	background-color: #eaeaea;
}

span.corners-top, span.corners-bottom, span.corners-top span, span.corners-bottom span {
	font-size: 1px;
	line-height: 1px;
	display: block;
	height: 5px;
	background-repeat: no-repeat;
}

.headerbar span.corners-top, .headerbar span.corners-bottom, .headerbar span.corners-top span, .headerbar span.corners-bottom span {
	height: 12px;
}

span.corners-top {
	background-image: none;
	background-position: 0 0;
	margin: 0 -5px;
}

span.corners-top span {
	background-image: none;
	background-position: 100% 0;
}

span.corners-bottom {
	background-image: none;
	background-position: 0 100%;
	margin: 0 -5px;
	clear: both;
}

span.corners-bottom span {
	background-image: none;
	background-position: 100% 100%;
}

.headbg span.corners-bottom {
	margin-bottom: -1px;
}

.post span.corners-top, .post span.corners-bottom, .panel span.corners-top, .panel span.corners-bottom, .navbar span.corners-top, .navbar span.corners-bottom {
	margin: 0 -10px;
}

.rules span.corners-top {
	margin: 0 -10px 5px -10px;
}

.rules span.corners-bottom {
	margin: 5px -10px 0 -10px;
}

/* Horizontal lists
----------------------------------------*/
ul.linklist {
	display: block;
	margin: 0;
}

ul.linklist li {
	display: block;
	list-style-type: none;
	float: left;
	width: auto;
	margin-right: 5px;
	font-size: 1.1em;
	line-height: 2.2em;
}

ul.linklist li.rightside, p.rightside {
	float: right;
	margin-right: 0;
	margin-left: 5px;
	text-align: right;
}

ul.navlinks {
	padding-bottom: 1px;
	margin-bottom: 1px;
}

li.icon-home > a:last-child {
	font-weight: bold;
}

ul.leftside {
	float: left;
	margin-left: 0;
	margin-right: 5px;
	text-align: left;
}

ul.rightside {
	float: right;
	margin-left: 5px;
	margin-right: -5px;
	text-align: right;
}

.nav_menu li.rightside, .link_menu li.rightside {
	float: right;
}

/* Table styles
----------------------------------------*/
table.table1 {
	/* See tweaks.css */
}

#ucp-main table.table1 {
	padding: 2px;
}

table.table1 thead th {
	font-weight: normal;
	text-transform: uppercase;
	color: #FFFFFF;
	line-height: 1.3em;
	font-size: 1em;
	padding: 0 0 4px 3px;
}

table.table1 thead th span {
	padding-left: 7px;
}

table.table1 tbody tr {
	border: 1px solid #cfcfcf;
}

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

table.table1 td {
	color: #6a6a6a;
	font-size: 1.1em;
}

table.table1 tbody td {
	padding: 5px;
	border-top: 1px solid #FAFAFA;
}

table.table1 tbody th {
	padding: 5px;
	border-bottom: 1px solid #000000;
	text-align: left;
	color: #333333;
	background-color: #FFFFFF;
}

/* Specific column styles */
table.table1 .name		{ text-align: left; }
table.table1 .posts		{ text-align: center !important; width: 7%; }
table.table1 .joined	{ text-align: left; width: 15%; }
table.table1 .active	{ text-align: left; width: 15%; }
table.table1 .mark		{ text-align: center; width: 7%; }
table.table1 .info		{ text-align: left; width: 30%; }
table.table1 .info div	{ width: 100%; white-space: normal; overflow: hidden; }
table.table1 .autocol	{ line-height: 2em; white-space: nowrap; }
table.table1 thead .autocol { padding-left: 1em; }

table.table1 span.rank-img {
	float: right;
	width: auto;
}

table.info td {
	padding: 3px;
}

table.info tbody th {
	padding: 3px;
	text-align: right;
	vertical-align: top;
	color: #000000;
	font-weight: normal;
}

/* Misc layout styles
---------------------------------------- */
/* column[1-2] styles are containers for two column layouts 
   Also see tweaks.css */
.column1 {
	float: left;
	clear: left;
	width: 49%;
}

.column2 {
	float: right;
	clear: right;
	width: 49%;
}

/* General classes for placing floating blocks */
.left-box {
	float: left;
	width: auto;
	text-align: left;
}

.right-box {
	float: right;
	width: auto;
	text-align: right;
}

dl.details {
	/*font-family: "Lucida Grande", Verdana, Helvetica, Arial, sans-serif;*/
	font-size: 1.1em;
}

dl.details dt {
	float: left;
	clear: left;
	width: 30%;
	text-align: right;
	color: #000000;
	display: block;
}

dl.details dd {
	margin-left: 0;
	padding-left: 5px;
	margin-bottom: 5px;
	color: #828282;
	float: left;
	width: 65%;
}

/* Pagination
---------------------------------------- */
.pagination {
	height: 1%; /* IE tweak (holly hack) */
	width: auto;
	text-align: right;
	margin-top: 5px;
	float: right;
}

.pagination span.page-sep {
	display: none;
}

li.pagination {
	margin-top: 0;
}

.pagination strong, .pagination b {
	font-weight: normal;
}

.pagination span strong {
	padding: 0 2px;
	margin: 0 2px;
	font-weight: normal;
	color: #FFFFFF;
	background-color: #bfbfbf;
	border: 1px solid #bfbfbf;
	font-size: 0.9em;
}

.pagination span a, .pagination span a:link, .pagination span a:visited, .pagination span a:active {
	font-weight: normal;
	text-decoration: none;
	color: #747474;
	margin: 0 2px;
	padding: 0 2px;
	background-color: #eeeeee;
	border: 1px solid #bababa;
	font-size: 0.9em;
	line-height: 1.5em;
}

.pagination span a:hover {
	border-color: #d2d2d2;
	background-color: #d2d2d2;
	color: #FFF;
	text-decoration: none;
}

.pagination img {
	vertical-align: middle;
}

/* Pagination in viewforum for multipage topics */
.row .pagination {
	display: block;
	float: right;
	width: auto;
	margin-top: 0;
	padding: 1px 0 1px 15px;
	font-size: 0.9em;
	background: none 0 50% no-repeat;
}

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

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

/* Miscellaneous styles
---------------------------------------- */
#forum-permissions {
	float: right;
	width: auto;
	padding-left: 5px;
	margin-left: 5px;
	margin-top: 10px;
	text-align: right;
}

.copyright {
	padding: 0 5px 5px 5px;
	text-align: center;
	color: #555555;
}

.small {
	font-size: 0.9em !important;
}

.titlespace {
	margin-bottom: 15px;
}

.headerspace {
	margin-top: 20px;
}

.error {
	color: #bcbcbc;
	font-weight: bold;
	font-size: 1em;
}

.reported {
	background-color: #f7f7f7;
}

li.reported:hover {
	background-color: #ececec;
}

div.rules {
	background-color: #ececec;
	color: #bcbcbc;
	padding: 0 10px;
	margin: 10px 0;
	font-size: 1.1em;
}

div.rules ul, div.rules ol {
	margin-left: 20px;
}

p.rules {
	background-color: #ececec;
	background-image: none;
	padding: 5px;
}

p.rules img {
	vertical-align: middle;
	padding-top: 5px;
}

p.rules a {
	vertical-align: middle;
	clear: both;
}

#top {
	position: absolute;
	top: -20px;
}

.clear {
	display: block;
	clear: both;
	font-size: 1px;
	line-height: 1px;
	background: transparent;
}
Ultima modifica di DOWGR il 03/09/2011, 15:20, modificato 1 volta in totale.

Avatar utente
lenders
phpBB Expert
phpBB Expert
Messaggi: 713
Iscritto il: 22/06/2010, 14:28
Sesso: Maschio
Versione: 3.0.10
Server: UNIX/Linux
Database: MySQL(i) 5.1.49-community-log
Località: Napoli
Contatta:

Re: ristringere lo stile

Messaggio da lenders » 03/09/2011, 15:19

Da quel che vedo non hai fatto nessuna modifica...Cmq prova cosi:

Codice: Seleziona tutto

    /* General pro_ribbons Markup Styles
    ---------------------------------------- */

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

    :focus {
       outline: 0;
    }

    html {
       font-size: 100%;
       /* Always show a scrollbar for short pages - stops the jump when the scrollbar appears. non-IE browsers */
       height: 101%;
    }

    body {
       /* Text-Sizing with ems: http://www.clagnut.com/blog/348/ */
       font-family: Verdana, Helvetica, Arial, sans-serif;
       color: #828282;
       /*font-size: 62.5%;          This sets the default font size to be equivalent to 10px */
       font-size: 10px;
       padding: 5px;
    }

    h1 {
       /* Forum name */
       font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
       padding: 0.6em 0 0.2em 0;
       text-align: center;
       font-weight: bold;
       font-size: 2em;
    }

    h2 {
       /* Forum header titles */
       font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
       font-weight: normal;
       color: #3f3f3f;
       font-size: 2em;
       margin: 0.8em 0 0.2em 0;
    }

    h2.solo {
       margin-bottom: 1em;
    }

    h3 {
       /* Sub-headers (also used as post headers, but defined later) */
       font-family: Arial, Helvetica, sans-serif;
       font-weight: bold;
       text-transform: uppercase;
       border-bottom: 1px solid #CCCCCC;
       margin-bottom: 3px;
       padding-bottom: 2px;
       font-size: 1.05em;
       color: #989898;
       margin-top: 20px;
    }

    h4 {
       /* Forum and topic list titles */
       font-family: "Trebuchet MS", Verdana, Helvetica, Arial, Sans-serif;
       font-size: 1.3em;
    }

    p {
       line-height: 1.3em;
       font-size: 1.1em;
       margin-bottom: 1.5em;
    }

    img {
       border-width: 0;
       max-width: 99%;
    }

    hr {
       /* Also see tweaks.css */
       border: 0 none #FFFFFF;
       border-top: 1px solid #CCCCCC;
       height: 1px;
       margin: 5px 0;
       display: block;
       clear: both;
    }

    hr.dashed {
       border-top: 1px dashed #CCCCCC;
       margin: 10px 0;
    }

    hr.divider {
       display: none;
    }

    p.right {
       text-align: right;
    }

    /* Main blocks
    ---------------------------------------- */
        #wrap {
    padding: 0 10px;
    min-width: 750px;
    max-width: 950px;
    margin: 0 auto;
    border-left: 1px solid #3A639B;
    border-top: 1px solid #3A639B;
    border-bottom: 1px solid #3A639B;
    border-right: 1px solid #3A639B;
    background-color: #FFFFFF;
    }

    #simple-wrap {
       padding: 6px 10px;
    }

    #page-body {
       margin: 4px 0;
       clear: both;
    }

    #page-footer {
       clear: both;
    }

    #page-footer h3 {
       margin-top: 20px;
    }

    #logo {
       float: left;
       width: auto;
       padding: 5px;
    }

    a#logo:hover {
       text-decoration: none;
    }

    /* Search box
    --------------------------------------------- */
    #search-box {
       color: #FFFFFF;
       position: relative;
       margin-top: 30px;
       margin-right: 5px;
       display: block;
       float: right;
       text-align: right;
       white-space: nowrap; /* For Opera */
    }

    #search-box #keywords {
       width: 95px;
       background-color: #FFF;
    }

    #search-box input {
       border: 1px solid #b0b0b0;
    }

    /* .button1 style defined later, just a few tweaks for the search button version */
    #search-box input.button1 {
       padding: 1px 5px;
    }

    #search-box li {
       text-align: right;
       margin-top: 4px;
    }

    #search-box img {
       vertical-align: middle;
       margin-right: 3px;
    }

    /* Site description and logo */
    #site-description span {
       display: block;
       font-size: 1.2em;
       text-align: center;
    }

    /* Round cornered boxes and backgrounds
    ---------------------------------------- */
    .headerbar {
       background: #ebebeb none repeat-x 0 0;
       color: #FFFFFF;
       margin-bottom: 4px;
       padding: 0 5px;
    }

    .navbar {
       background-color: #ebebeb;
       padding: 0 10px;
    }

    .forabg, .forumbg  {
       background: #b1b1b1 none repeat-x 0 0;
       margin-bottom: 4px;
       padding: 0 5px;
       clear: both;
    }

    .panel {
       margin-bottom: 4px;
       padding: 0 10px;
       background-color: #f3f3f3;
       color: #3f3f3f;
    }

    .post {
       padding: 0 10px;
       margin-bottom: 4px;
       background-repeat: no-repeat;
       background-position: 100% 0;
    }

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

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

    .bg1 {background-color: #f7f7f7;}
    .bg2 { background-color: #f2f2f2;}
    .bg3 { background-color: #ebebeb;}

    .rowbg {
       margin: 5px 5px 2px 5px;
    }

    .ucprowbg {
       background-color: #e2e2e2;
    }

    .fieldsbg {
       /*border: 1px #DBDEE2 solid;*/
       background-color: #eaeaea;
    }

    span.corners-top, span.corners-bottom, span.corners-top span, span.corners-bottom span {
       font-size: 1px;
       line-height: 1px;
       display: block;
       height: 5px;
       background-repeat: no-repeat;
    }

    .headerbar span.corners-top, .headerbar span.corners-bottom, .headerbar span.corners-top span, .headerbar span.corners-bottom span {
       height: 12px;
    }

    span.corners-top {
       background-image: none;
       background-position: 0 0;
       margin: 0 -5px;
    }

    span.corners-top span {
       background-image: none;
       background-position: 100% 0;
    }

    span.corners-bottom {
       background-image: none;
       background-position: 0 100%;
       margin: 0 -5px;
       clear: both;
    }

    span.corners-bottom span {
       background-image: none;
       background-position: 100% 100%;
    }

    .headbg span.corners-bottom {
       margin-bottom: -1px;
    }

    .post span.corners-top, .post span.corners-bottom, .panel span.corners-top, .panel span.corners-bottom, .navbar span.corners-top, .navbar span.corners-bottom {
       margin: 0 -10px;
    }

    .rules span.corners-top {
       margin: 0 -10px 5px -10px;
    }

    .rules span.corners-bottom {
       margin: 5px -10px 0 -10px;
    }

    /* Horizontal lists
    ----------------------------------------*/
    ul.linklist {
       display: block;
       margin: 0;
    }

    ul.linklist li {
       display: block;
       list-style-type: none;
       float: left;
       width: auto;
       margin-right: 5px;
       font-size: 1.1em;
       line-height: 2.2em;
    }

    ul.linklist li.rightside, p.rightside {
       float: right;
       margin-right: 0;
       margin-left: 5px;
       text-align: right;
    }

    ul.navlinks {
       padding-bottom: 1px;
       margin-bottom: 1px;
    }

    li.icon-home > a:last-child {
       font-weight: bold;
    }

    ul.leftside {
       float: left;
       margin-left: 0;
       margin-right: 5px;
       text-align: left;
    }

    ul.rightside {
       float: right;
       margin-left: 5px;
       margin-right: -5px;
       text-align: right;
    }

    .nav_menu li.rightside, .link_menu li.rightside {
       float: right;
    }

    /* Table styles
    ----------------------------------------*/
    table.table1 {
       /* See tweaks.css */
    }

    #ucp-main table.table1 {
       padding: 2px;
    }

    table.table1 thead th {
       font-weight: normal;
       text-transform: uppercase;
       color: #FFFFFF;
       line-height: 1.3em;
       font-size: 1em;
       padding: 0 0 4px 3px;
    }

    table.table1 thead th span {
       padding-left: 7px;
    }

    table.table1 tbody tr {
       border: 1px solid #cfcfcf;
    }

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

    table.table1 td {
       color: #6a6a6a;
       font-size: 1.1em;
    }

    table.table1 tbody td {
       padding: 5px;
       border-top: 1px solid #FAFAFA;
    }

    table.table1 tbody th {
       padding: 5px;
       border-bottom: 1px solid #000000;
       text-align: left;
       color: #333333;
       background-color: #FFFFFF;
    }

    /* Specific column styles */
    table.table1 .name      { text-align: left; }
    table.table1 .posts      { text-align: center !important; width: 7%; }
    table.table1 .joined   { text-align: left; width: 15%; }
    table.table1 .active   { text-align: left; width: 15%; }
    table.table1 .mark      { text-align: center; width: 7%; }
    table.table1 .info      { text-align: left; width: 30%; }
    table.table1 .info div   { width: 100%; white-space: normal; overflow: hidden; }
    table.table1 .autocol   { line-height: 2em; white-space: nowrap; }
    table.table1 thead .autocol { padding-left: 1em; }

    table.table1 span.rank-img {
       float: right;
       width: auto;
    }

    table.info td {
       padding: 3px;
    }

    table.info tbody th {
       padding: 3px;
       text-align: right;
       vertical-align: top;
       color: #000000;
       font-weight: normal;
    }

    /* Misc layout styles
    ---------------------------------------- */
    /* column[1-2] styles are containers for two column layouts
       Also see tweaks.css */
    .column1 {
       float: left;
       clear: left;
       width: 49%;
    }

    .column2 {
       float: right;
       clear: right;
       width: 49%;
    }

    /* General classes for placing floating blocks */
    .left-box {
       float: left;
       width: auto;
       text-align: left;
    }

    .right-box {
       float: right;
       width: auto;
       text-align: right;
    }

    dl.details {
       /*font-family: "Lucida Grande", Verdana, Helvetica, Arial, sans-serif;*/
       font-size: 1.1em;
    }

    dl.details dt {
       float: left;
       clear: left;
       width: 30%;
       text-align: right;
       color: #000000;
       display: block;
    }

    dl.details dd {
       margin-left: 0;
       padding-left: 5px;
       margin-bottom: 5px;
       color: #828282;
       float: left;
       width: 65%;
    }

    /* Pagination
    ---------------------------------------- */
    .pagination {
       height: 1%; /* IE tweak (holly hack) */
       width: auto;
       text-align: right;
       margin-top: 5px;
       float: right;
    }

    .pagination span.page-sep {
       display: none;
    }

    li.pagination {
       margin-top: 0;
    }

    .pagination strong, .pagination b {
       font-weight: normal;
    }

    .pagination span strong {
       padding: 0 2px;
       margin: 0 2px;
       font-weight: normal;
       color: #FFFFFF;
       background-color: #bfbfbf;
       border: 1px solid #bfbfbf;
       font-size: 0.9em;
    }

    .pagination span a, .pagination span a:link, .pagination span a:visited, .pagination span a:active {
       font-weight: normal;
       text-decoration: none;
       color: #747474;
       margin: 0 2px;
       padding: 0 2px;
       background-color: #eeeeee;
       border: 1px solid #bababa;
       font-size: 0.9em;
       line-height: 1.5em;
    }

    .pagination span a:hover {
       border-color: #d2d2d2;
       background-color: #d2d2d2;
       color: #FFF;
       text-decoration: none;
    }

    .pagination img {
       vertical-align: middle;
    }

    /* Pagination in viewforum for multipage topics */
    .row .pagination {
       display: block;
       float: right;
       width: auto;
       margin-top: 0;
       padding: 1px 0 1px 15px;
       font-size: 0.9em;
       background: none 0 50% no-repeat;
    }

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

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

    /* Miscellaneous styles
    ---------------------------------------- */
    #forum-permissions {
       float: right;
       width: auto;
       padding-left: 5px;
       margin-left: 5px;
       margin-top: 10px;
       text-align: right;
    }

    .copyright {
       padding: 0 5px 5px 5px;
       text-align: center;
       color: #555555;
    }

    .small {
       font-size: 0.9em !important;
    }

    .titlespace {
       margin-bottom: 15px;
    }

    .headerspace {
       margin-top: 20px;
    }

    .error {
       color: #bcbcbc;
       font-weight: bold;
       font-size: 1em;
    }

    .reported {
       background-color: #f7f7f7;
    }

    li.reported:hover {
       background-color: #ececec;
    }

    div.rules {
       background-color: #ececec;
       color: #bcbcbc;
       padding: 0 10px;
       margin: 10px 0;
       font-size: 1.1em;
    }

    div.rules ul, div.rules ol {
       margin-left: 20px;
    }

    p.rules {
       background-color: #ececec;
       background-image: none;
       padding: 5px;
    }

    p.rules img {
       vertical-align: middle;
       padding-top: 5px;
    }

    p.rules a {
       vertical-align: middle;
       clear: both;
    }

    #top {
       position: absolute;
       top: -20px;
    }

    .clear {
       display: block;
       clear: both;
       font-size: 1px;
       line-height: 1px;
       background: transparent;
    }
Aggiorna il tema dal pca

DOWGR
Utente
Utente
Messaggi: 301
Iscritto il: 25/07/2011, 22:36
Versione: 3.0.10
Server: UNIX/Linux
Contatta:

Re: ristringere lo stile

Messaggio da DOWGR » 03/09/2011, 15:23

ora va pero non si vede il logo

DOWGR
Utente
Utente
Messaggi: 301
Iscritto il: 25/07/2011, 22:36
Versione: 3.0.10
Server: UNIX/Linux
Contatta:

Re: ristringere lo stile

Messaggio da DOWGR » 04/10/2011, 21:21

tiger ha scritto:Allora purtroppo il tuo stile e' abbastanza difficile da stringere in termini di .css,ti h trovato una soluzione per vedere l'immagine(bg_body.gif) di sfondo:
Mi raccomando bakup file che andrai a modificare:
Tuo stile /theme/colour.css
cerca:

Codice: Seleziona tutto

html, body {
	color: #555;
	background: url("{T_THEME_PATH}/images/bg_body.gif");
}
Sostituisci con:

Codice: Seleziona tutto

html, body {
   background-image:url("{T_THEME_PATH}/images/bg_body.png"); 
   background-color: #A0A0A0;
   background-position: top center;
   background-attachment: fixed;
   background-repeat: repeat ;
}
Nota bene che ho cambiato gif con png cosi' avrai una qualita' di immagine di sfondo molto migliore
il consiglio per la dimensione dell'immagine:1600x1200
poi cerca :

Codice: Seleziona tutto

#wrap {
	border: 1px solid #ddd;
	background-image: url("{T_THEME_PATH}/images/bg_wrap.gif");
}
Sostituiscilo con:

Codice: Seleziona tutto

#wrap {
	border: 1px solid #ddd;
	background-color: transparent;
}
Da pca poi aggiorni il tema dfel proribbons svuoti la chache
Non hai altro che il tuo stile,con il corpo pero' completamente trasparente e con il fix dell'immagine di sfondo che non si ripete e rimane fissa indipendentemente dallo scrolling forum .Vedi se ti piace come soluzione
calcola che la prova l'ho fatta pero' sul proribbons aggiornato al 3.0.8 diverso dal tuo pero' credo che su quel codice non cambi nulla
grazie tiger

Rispondi

Torna a “Supporto stili”

Chi c’è in linea

Visitano il forum: Nessuno e 66 ospiti