[SOLVED] Logo background color
I've tried to set up a color by editing each modules :
<div class="uk-text-center" style="margin: 100px;" data-uk-scrollspy="{cls:'uk-animation-slide-top'}">
<h1 style="font-size: 80px; font-weight: 100;">Grill</h1>
<h4>Barbecue is our Passion</h4>
</div>
but without success, perhaps I'm writing wrong CSS instructions.
Must I erase too the color in CSS/THEME.css line 9704 ?
Thanks for help.
Please Log in or Create an account to join the conversation.
- joomlaplates
- Offline
- Moderator
- Posts: 8807
- Thank you received: 1732
You can use the inline style for the colors:
<div class="uk-text-center" style="margin: 100px;" data-uk-scrollspy="{cls:'uk-animation-slide-top'}">
<h1 style="color:FF0000 !important; font-size: 80px; font-weight: 100;">Grill</h1>
<h4 style="color:#FF0000 !Important">Barbecue is our Passion</h4>
</div>
www.joomlaplates.de/dokumentation.html
Please Log in or Create an account to join the conversation.
As I told you before, I would like two different background colors for the logo modules. One background color for the logo in french, and a different background color for english.
I don't want to change the font colors
Please Log in or Create an account to join the conversation.
- joomlaplates
- Offline
- Moderator
- Posts: 8807
- Thank you received: 1732
If you want to have 2 different colors you have to duplicate the logo and assign each logo to french and the other logo to english language.
www.joomlaplates.de/dokumentation.html
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
- joomlaplates
- Offline
- Moderator
- Posts: 8807
- Thank you received: 1732
you can change the background color with inline css style:
www.w3schools.com/css/css_howto.asp
<div class="uk-text-center" style="margin: 100px; background:FF0000 !important;" data-uk-scrollspy="{cls:'uk-animation-slide-top'}">
<h1 style="font-size: 80px; font-weight: 100;">Grill</h1>
<h4>Barbecue is our Passion</h4>
</div>
www.joomlaplates.de/dokumentation.html
Please Log in or Create an account to join the conversation.