donate button padding and font

Support Area Forums Agency donate button padding and font

Viewing 11 posts - 1 through 11 (of 11 total)
URL to the page in question: http://s518809111.onlinehome.us/
  • Author
    Posts
  • #17875
    Avatar photoR. whitehouse
    Participant

    the font has changed on its own for the donate text and button text. I need to change the text and also add padding on the right side of the donate button. Can you please help? Thanks.

    #17883
    Bill Robbins
    Moderator

    Good Morning Rachel,

    Sorry for the trouble there. I took a look this morning and the font appears to be the same one that’s in use on the rest of the site. I’ve attached a screenshot of what I’m seeing.

    If you’re still seeing something different, let me know and also what browser and operating system you’re having the trouble with.

    Thanks,
    Bill

    #17908
    Avatar photoR. whitehouse
    Participant

    The font appears to have fixed itself, strange. I do still to know how to add padding for the button on the right side. thanks.

    #17909
    Bill Robbins
    Moderator

    Hello Rachel,

    You can change the padding on the donate button. Here’s how:

    1. Go to the Theme Options page and select the Styling tab.
    2. Scroll down to the Custom CSS box and paste this:
      
      #donate a, 
      #donate a:visited {
      	padding-top: 7px;
      	padding-bottom: 7px;
      	padding-left: 12px;
      	padding-right: 12px;
      }
      

      Those are the defaults for each side. You can edit those to fit your needs. If you'd like to move the button, you can add this too:

      
      #donate {
      	margin-right: 10px;
      }
      

      and just change the 10px to the distance you'd like to move it further from the right hand edge in pixels.

    3. Update your settings.

    See if that doesn't help out.

    We had a rather substantial update to the theme back in the fall. You might consider swapping to it. You can see the demo at http://demo.organizedthemes.com/agency/

    Visually it's quite similar, but it should be more flexible now and the code under the hood is much improved too.

    If you need anything, just let me know.

    Thanks,
    Bill

    #17917
    Avatar photoR. whitehouse
    Participant

    thanks. I will try it.

    #18052
    Avatar photoR. whitehouse
    Participant

    Thanks. This works when the button is viewed on a computer but it is cut in half when it is viewed on an iphone. Also, the logo is cut off half way when viewed on a smartphone. Could you please let me know what css will fix this mobile issue? Thanks so much.

    #18057
    Bill Robbins
    Moderator

    Good Morning Rachel,

    The donation button is trying to wrap there due to the limited space. We can try to force it to remain on one line. Here’s how to try that:

    1. Go to the Theme Options page and select the Styling tab.
    2. Scroll down to the Custom CSS box and paste this:
      
      #donate a, 
      #donate a:visited {
      	white-space: nowrap;
      }
      
    3. Update your settings.

    See if that works for you. Let me know what you turn up,
    Bill

    #18071
    Avatar photoR. whitehouse
    Participant

    It worked! Thanks. How can I get the logo to show up correctly on the mobile? The logo only shows have the top is cut off on the top of the screen. Thanks.

    #18077
    Bill Robbins
    Moderator

    Let’s try adding this to your Custom CSS too:

    
    @media only screen and (max-width: 480px) {
    	
    	#header #logo {
    		top: 10px;		
    	}
    
    }
    

    See how that works for you.

    #18079
    Avatar photoR. whitehouse
    Participant

    Thanks. That works if you view the site vertically but if the site is horizontal the logo is cut half way off the top of the screen. Is there code that can fix this?

    #18080
    Bill Robbins
    Moderator

    Change the 480 to whatever screen width you’d like the change to happen at.

Viewing 11 posts - 1 through 11 (of 11 total)
  • The topic ‘donate button padding and font’ is closed to new replies.