Jump to content

[Risolto] Come modificare head title dei blocchi?


clarisi

Recommended Posts

per dare colori differenti a ciascuna colonna vai a

themes > tuo_tema > css > global.css alla riga 293 ca. trovi:

.block .title_block, .block h4 {
        padding:6px 11px;
        font-size:12px;
        color:#fff;
        text-shadow:0 1px 0 #000;
        text-transform:uppercase;
        background:#383838;
        font-weight: bold;
    }

e lo sostituisci con

#left_column .block .title_block, #left_column .block h4 {
        padding:6px 11px;
        font-size:12px;
        color:#fff;
        text-shadow:0 1px 0 #000;
        text-transform:uppercase;
        background:#383838;
        font-weight: bold;
    }
    #right_column .block .title_block, #right_column .block h4 {
        padding:6px 11px;
        font-size:12px;
        color:#fff;
        text-shadow:0 1px 0 #000;
        text-transform:uppercase;
        background:#990000;
        font-weight: bold;
    }

nell'es. colonna sx titoli a sfondo neri e colonna dx titoli a sfondo bordò....cambia a tuo piacimento

 

se vuoi mettere delle immagini nel bg, invece che per es. #right_column, metti l'id del blocco e cambi il colore del background o inserisci l'url dell'immagine

Edited by ariom (see edit history)
  • Like 1
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...