Footer (centralise and smaller text)

Support Area Forums Bottega Footer (centralise and smaller text)

Viewing 3 posts - 1 through 3 (of 3 total)
URL to the page in question: http://cb1art.co.uk/
  • Author
    Posts
  • #33162

    hello Bill,

    Thanks for your support!

    Could you please send me a CSS for centralising the text in the ‘footer contact’ text (on page: ‘CB1Art is Kris’s 2011-2014 archive’) and adjusting it’s size?

    I only managed to narrow the footer so far with this:

    #footer {
    padding-top: 5px;
    padding-bottom: 5px;
    background-size: cover;
    }

    Many thanks,

    Krisztian

    #33167
    Bill Robbins
    Moderator

    You can do that. Here’s how:

    1. Go to your theme options page and choose the Advanced tab.
    2. Scroll down to the Custom CSS box and add this:
      
      #footer-contact p {
      	font-size: 16px;
      }
      
      @media only screen and (min-width: 768px) {
      
      	#footer-contact {
      		position: absolute;
      		left: 0;
      		right: 0;
      		margin: 0;
      		text-align: center;
      	}
      
      }
      

      The top style there will set the size of the text. The second section will center it for you.

    3. Update your settings.

    Take care,
    Bill

    #33168

    Great,

    Thank you very much for your help.

    Kris

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Footer (centralise and smaller text)’ is closed to new replies.