How to format the advert using css?
Autore: Juergen S.
Visite 1167,
Followers 1,
Condiviso 0
I'd like to Format the text in the advert by using css. I did try and added the css to the site and to the page, but it doesn't work. The only formatting that seems to work is html-formatting the old way. So, how can I use css on the advert?
Postato il
Hello Juergen,
You can use css by adding the css code in the HEAD and then by calling the classes or IDs in the code.
The css code and the container needs to be separated and then you cann with in the HTML code the class containing your css code.
Many thanks!
Autore
It seems I wasn't able to explain what ther problem is: The advert is a little rectangle, containing a picture of the product and a text. This is, where I had to use old html while css didn't work. See picture please.
Hello Juergen,
You cannot use inline css code but if you add css instructions in the HEAD section in a Class element and then you load the class in the html code it will allow you to use css styling.
Many thanks!
Autore
Hi,
see the picture attached. This is what I did, and it does NOT work. Do you have any idea why?
Hello Juergen,
to load a class avoid " " simbols like as example:
<span class=testklasse>some text</span>
And for instead of Text-Color, which is deprecated, use directly the css style "color".
Many thanks!