Jump to content
  • 0

Zmiana czcionki i koloru tekstu


mrova

Question

8 answers to this question

Recommended Posts

  • 0

jeżeli chodzi o czcionke i kolory

zrobimy to za pomocą styli css

 

 

do global.css dodajemy kod:

.shop-phone {

color:red;

font-size:30px;

font-family: comic-sans;

}

 

oczywiscie zmieniamy parametry zgodnie z wlasnymi upodobaniami (kolor, wielkość, krój)

Link to comment
Share on other sites

  • 0

Super, dziękuję Ci bardzo za pomoc :)

 

jeżeli chodzi o czcionke i kolory

zrobimy to za pomocą styli css

 

 

do global.css dodajemy kod:

.shop-phone {

color:red;

font-size:30px;

font-family: comic-sans;

}

 

oczywiscie zmieniamy parametry zgodnie z wlasnymi upodobaniami (kolor, wielkość, krój)

Link to comment
Share on other sites

  • 0

1. Dla krótkiego opisu modyfikujesz w product.css:

.pb-center-column #short_description_block {
    color: #666;
}

 

2. Z długim opisem jest gorzej, bo nie ma swojego ID.

- w product.tpl

<!-- full description -->

<div class="rte">{$product->description}</div>

zmień na:

<!-- full description -->
<div id="dlugi_opis" class="rte">{$product->description}</div>

 

- w product.css dodaj

#dlugi_opis {
  color: red;
}

Kolor oczywiście według twojej koncepcji.

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...