PDA

View Full Version : Issues with flock (firefox)


mvpress
Mar-08-2008, 07:20 AM
Hi, I've made it 24 hours without asking for any help.

my customization is coming along slowly. I had a few differences (ie, customizations) that I abandoned to "conform" to the tutorials.

Nevertheless, this saved me from asking a question for a whole day. These an issue has me stumped and I'd like to solve it before moving on.

1. In Flock the MVPRESS which should have been removed with these CSS lines still appears

/* hides the word home */
#userHome {
display: none;
}

/* hides your name (including any 's) */
#userName {
display: none;
}

Now in IE6 it looks fine



Thus far is my only issues (that I couldn't figure out through the forums, faqs, or just plain messing around).

Thanks in advance.

Justin
oh, my page is www.mvpress.net (jttp://www.mvpress.net)

Allen
Mar-08-2008, 07:29 AM
Hi, I've made it 24 hours without asking for any help.

my customization is coming along slowly. I had a few differences (ie, customizations) that I abandoned to "conform" to the tutorials.

Nevertheless, this saved me from asking a question for a whole day. These an issue has me stumped and I'd like to solve it before moving on.

1. In Flock the MVPRESS which should have been removed with these CSS lines still appears

/* hides the word home */
#userHome {
display: none;
}

/* hides your name (including any 's) */
#userName {
display: none;
}

Now in IE6 it looks fine



Thus far is my only issues (that I couldn't figure out through the forums, faqs, or just plain messing around).

Thanks in advance.

Justin
oh, my page is www.mvpress.net (jttp://www.mvpress.net)
Remove the extra } below in your CSS, it's disabling the CSS below it.

#navcontainer ul li a:hover {
color: #fff;
background-color: #369;
}

}
/* hides your name (including any 's) */
#userName {
display: none;
}


I see you turned external links on for the show source gallery, shows
running here in Firefox now.:thumb

mvpress
Mar-08-2008, 07:56 AM
Remove the extra } below in your CSS, it's disabling the CSS below it.

#navcontainer ul li a:hover {
color: #fff;
background-color: #369;
}

}
/* hides your name (including any 's) */
#userName {
display: none;
}


I see you turned external links on for the show source gallery, shows
running here in Firefox now.:thumb

Yeah, I new something was not right, since other peoples slide shows were showing in browser. a little deeper search yielded the answer...thought I was quite enoug, but this forum is good.

Thanks for the fix on the CSS. Seems like it depends on what the problem is but the different browsers pick and choose what they can tolerate.