• First off, I know some basic CSS and HTML but not enough to fix my two problems (I know what hex codes are and can swap/replace hex codes, I just don’t know the magic words (dot classes? is that the right phrase? I’m talking about something like .main-navigation, for example.) to fix the things.

    1) I can’t seem to figure out how to remove these ugly white lines that surround the header on my website (and current development project) I still need the space to be there, but I just need the colour of the lines to match that of the background which I believe is a pale shade of grey.

    2) There is also a small issue with hovering over the navigation menu links. when I hover over my main navigation links (the ones next to the logo, not the text in the drop down boxes), they turn to another shade of grey.

    I need these to be #e00000 but I can’t seem to fix that in my current CSS plug-in for some weird reason

    what custom CSS snippets can I chuck into the additional CSS box to fix these problems?

    also just to mention i’m a bit tight for time, it needs to be done by saturday as I have to showcase the website then in a very important meeting.

    thanks for your help

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • I think both of these will fix what you’re wanting to do

    .site-header {
    	border-bottom: none;
    }
    
    .main-navigation a:hover {
    	color: #e00000;
    } 
Viewing 1 replies (of 1 total)
  • The topic ‘CSS help with Ixion theme’ is closed to new replies.