contact support

  • Unknown's avatar

    How can I delete my site logo?

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi there,

    You can do that if you edit CSS. Please go to Appearance → Customize → CSS and add the following:

    header .logo img {
    display: none;
    }

    Let me know if you have any questions with this!

  • Unknown's avatar

    Thank you! Now I looking for some help with the CSS to change the color of the navigation bar. I am using the code below:
    #navigation a {
    color: #FFFFFF;
    }

    Is that not correct?

    Thank you,
    Emily

  • Unknown's avatar

    The code for the Eventbrite-Multi theme would be a bit different. There are two places to change the color. The first is the overall background color and the text color. The second is the color of the individual menu item buttons.

    nav a, div.menu a {
        background: #ffffff;
    		color: #3b3a3a;
    }
    
    nav, div.menu {
        background: #ffffff;
    }

    This is the hover color of the menu items:

    nav a:hover, div.menu a:hover {
        background: none repeat scroll 0 0 #ffffff;
    }

    Let me know if you have any questions with this!

  • The topic ‘contact support’ is closed to new replies.