Viewing 14 replies - 1 through 14 (of 14 total)
  • Thread Starter distinctnews

    (@distinctnews)

    The theme I’m using is Mystique https://www.ads-software.com/extend/themes/mystique

    one of those validation errors might be the reason.

    start at the top to fix them, and some might just resolve by themselves.

    with validation errors, the display of your site will be very unreliable and might be different in different browsers.

    Thread Starter distinctnews

    (@distinctnews)

    wow that’s a lot of mistakes I have.

    Ok, I’ll back up my files and start editing then I’ll post what happens.

    Thanks

    Thread Starter distinctnews

    (@distinctnews)

    Ok, I looked through every single one of them, and none seems to be the problem.

    Any idea how to fix it please? ??

    Thanks!

    There are still 75 validation errors for the page you linked to. One of those is likely the problem (you can’t tell until you fix them all.)

    Thread Starter distinctnews

    (@distinctnews)

    but like 95% of those errors are closing tags which are necessary.
    Some are made from posts like = or ? or pages or categories.

    So there has to be something else ??

    <link href="css/dropdown/themes/adobe.com/helper.css" media="screen" rel="stylesheet" type="text/css" />

    is the above code something that you put into the header.php?

    it looks like that the relative filepath is only working on the front page; you need to use an absolute file path.

    (apart from the fact that it is invalidly inserted before the <head> tag)

    Thread Starter distinctnews

    (@distinctnews)

    Ok, so I inserted the line

    <link href=”css/dropdown/themes/mystique/helper.css” media=”screen” rel=”stylesheet” type=”text/css” />

    under the <head> tag but it still didn’t work.

    What did you mean by absolute path? Did you mean like the put above line in the index.php? If not, what should I do?

    Thanks for the help!!

    Thread Starter distinctnews

    (@distinctnews)

    ? ??

    instead of linking the stylesheets in the way you have now:

    <link href="css/dropdown/themes/mystique/helper.css" media="screen" rel="stylesheet" type="text/css" /> <link href="wp-content/themes/mystique/dropdown.css" media="screen" rel="stylesheet" type="text/css" /><link href="wp-content/themes/mystique/default.advanced.css" media="screen" rel="stylesheet" type="text/css" />

    try to link the style sheets in this way:

    <link media="screen" rel="stylesheet" href="https://distinctnews.com/wp-content/themes/mystique/helper.css" type="text/css" />
    
    <link media="screen" rel="stylesheet" href="https://distinctnews.com/wp-content/themes/mystique/dropdown.css" type="text/css" />
    
    <link media="screen" rel="stylesheet" href="https://distinctnews.com/wp-content/themes/mystique/default.advanced.css" type="text/css" />

    there are still alot of validation errors remaining, and particular the head area is still unsorted.

    Thread Starter distinctnews

    (@distinctnews)

    awesome, that worked! but couple of problems ??
    1) how do i move that menu bar to the very top and not like how it’s a little down?
    2) how do i take off the line that appeared under the logo till the ad?

    Thanks for the help a lot!

    Thread Starter distinctnews

    (@distinctnews)

    I did some testing in Adobe Dw and i don’t really need the helper.css so i took it off and my problem is solved. also now my site loads faster ?? so no need to answer my above post ??

    just one question: any idea how to align it to the right side line of the blog and not left?

    Thanks a lot!

    Thread Starter distinctnews

    (@distinctnews)

    someone before said:

    Edit your dropdown.css, go to to line 27, find the class ul.dropdown

    ul.dropdown {
    /*float:left;*/
    z-index:597;
    position:relative;
    width:940px;
    margin:0 auto;
    }
    1. Delete, or comment the property float:left;
    2. Add the two properties bellow: (as shown above)

    width:940px;
    margin:0 auto;
    that was to move it from like the super start of the page to the margin of the blog.

    But the question is, how do I change it to the other margin of the blog? I tried playing around with the values in that code but it didn’t work. Did I do something wrong? What should I do?

    Thanks!

    Thread Starter distinctnews

    (@distinctnews)

    Actually never mind. I’ll post that last question on a previous post.

    Thanks a lot for the help!! The question is resolved! ??

Viewing 14 replies - 1 through 14 (of 14 total)
  • The topic ‘Navigation Menu’ is closed to new replies.