Jump to content

Footer Header Colour and Footer Structure


Recommended Posts

post-963085-0-94882600-1427613923_thumb.jpg

 

Hey everyone!

Im little overstrained with editing my footer. 

See attached picture of my footer. its a little messed up ...

How can I change the colour of the Header? 

How can I change the name of the header to create individual footer categories?

 

How can I remove this sample text over our contact details? In modules - contact information block its not possible
 

How can I remove the follow us on Facebook envato market area?

Hope anyone can suport me. Thanks for any help!!

Edited by Küchenscharf (see edit history)
Link to comment
Share on other sites

Hi,

 

If you just want a fish, here is one, not complete and not really good but working:

#footer .title_block {
  color: blue !important;
}
#block_contact_infos .footer-resp-wrap>div>p {
  display: none;
}
#footer .pwd-fb {
  display: none;
}
#footer.facebook #block_various_links_footer,
#footer.facebook #block_contact_infos,
#footer.facebook .blockcategories_footer {
  width: 30% !important;
}

Add these lines to themes/kronan/global.css to obtain http://www.pictureshack.us/images/53964_kuechenschaft.png

 

But I think the better is you learn how to fish. I absolutely don't know anything about your technical background, so here are some starting points you may already know:

 

Open your site in your favorite browser (hopefully Chrome or FF), press F12 key to get the dev tools.

From "elements" tab, you can browse HTML content and know which CSS rules apply (incl. the file and line they are defined at). You also sometimes have indication of which TPL/hook defines the content (search for comments like <!-- this is an html comment -->). And remember that globally (with exceptions of course...) rendering (fonts, colors, size) is defined in CSS, static content (labels) is defined in TPL, translated content in translations (BO > Localization > Translations > your theme), and dynamic content in PHP (through smarty variables).

 

For your specific case, you can edit the contact block TPL in order to remove extra text, and un-hook or remove from TPL (depending on how it is implemented) the facebook block. About changing the categories presentation, I think you will have to make some PHP/smarty code...

 

Regards

Edited by erouvier29 (see edit history)
Link to comment
Share on other sites

×
×
  • Create New...