White dot on both footer corner?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Frank.Yates
    New Member
    • Apr 2013
    • 23

    White dot on both footer corner?

    Hi guys, so I've recently played around with the styles of my forum. Changed my logo, and few colors here and there but theres this one thing that bugs me a lot, theres 2 white dot on the footer of the forum body.

    You can see it here live: www.hydra-gaming.com

    Not sure how to get rid of that, anyone got any idea?
  • BirdOPrey5
    Senior Member
    • Jul 2008
    • 9613
    • 5.6.3

    #2
    You need to get rid of the border-radius CSS code. These 3 lines-


    -moz-border-radius: 0 0 3px 3px;
    -webkit-border-radius: 0 0 3px 3px;
    border-radius: 0 0 3px 3px;


    Probably in css_additional.css

    Comment

    • Frank.Yates
      New Member
      • Apr 2013
      • 23

      #3
      Originally posted by Joe D.
      You need to get rid of the border-radius CSS code. These 3 lines- -moz-border-radius: 0 0 3px 3px; -webkit-border-radius: 0 0 3px 3px; border-radius: 0 0 3px 3px; Probably in css_additional.css
      css_additional.css is empty

      Comment


      • DemOnstar
        DemOnstar commented
        Editing a comment
        The css_additional.css it is for you to add code to. It comes empty from the onset. The only code in there is things that you add yourself. Makes life easier than messing around with templates.
        I find it useful also to keep a copy of it in notepad or whatever editor you use.
    • Trevor Hannant
      vBulletin Support
      • Aug 2002
      • 24326
      • 5.7.X

      #4
      Add this to your css_additional.css template:

      Code:
      #footer-tabbar {
          -moz-border-radius:0;
          -webkit-border-radius:0;
          border-radius:0;
      }
      Vote for:

      - Admin Settable Paid Subscription Reminder Timeframe (vB6)
      - Add Admin ability to auto-subscribe users to specific channel(s) (vB6)

      Comment

      Related Topics

      Collapse

      • nsusa
        Forum Border
        by nsusa
        I want to have a white background for my forum, but when I change it there are no borders around the actual forums. See screenshot. Where can I make changes to have a border set?
        Sun 21 Jul '13, 5:40pm
      • Mobeen Janjua
        Code in additional CSS
        by Mobeen Janjua
        Hi,

        Yesterday I have upgraded 5.4.3 to 5.4.4. Everything worked fine...

        In 5.4.3 I have added some codes to move search icon in navebar which were lost after upgradation and...
        Tue 2 Oct '18, 12:10am
      Working...