markusday
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Show all posts on every pageYou will need to dive into your php files and change the limit from 5 to a number of you choice. Can i see you url?
Forum: Fixing WordPress
In reply to: Displaying menu items in iFrames?I see you have two Wines buttons, why is this?
Forum: Fixing WordPress
In reply to: functions.php UPADTE = White Screen of DeathReplace the functions.php with your backup functions.php file. You did back up didn’t you?
Forum: Plugins
In reply to: [All In One Favicon] Favicon not showing for front-endHI, it is showing for me. I think it is problem with our own computers. Try another browser.
Forum: Themes and Templates
In reply to: CSS display differences in Chrome and FirefoxThanks a lot guys. WP wouldn’t be the same without your generous contributions.
Forum: Themes and Templates
In reply to: CSS display differences in Chrome and FirefoxThanks! But do you think this will solve the css issue in Firefox?
Forum: Themes and Templates
In reply to: CSS display differences in Chrome and Firefoxfair enough. But is this a css issue of is it something in my javascript file? Anyone else any clues hoe to correct this?
Forum: Themes and Templates
In reply to: CSS display differences in Chrome and FirefoxI can but they will charge for this fix. So if you can hel me out here, would be great! I can’t even tell which validator error it is.
Line 68, Column 24: Element head is missing a required instance of child element title. <div id="mainContainer"> Content model for element head: If the document is an iframe srcdoc document or if title information is available from a higher-level protocol: Zero or more elements of metadata content, of which no more than one is a title element and no more than one is a base element. Otherwise: One or more elements of metadata content, of which exactly one is a title element and no more than one is a base element.
Where does it say what kind of error it is. I don’t see an error number.
Forum: Themes and Templates
In reply to: CSS display differences in Chrome and FirefoxYes this is great, the first one is significant indeed. But what does it mean and what do I need to do?
Forum: Themes and Templates
In reply to: [Hueman] title on the thumbnail on the home pageHave you got a link?
Hi everyone, I also found that de-activating WP Better Security solved this problem for me. Here’s my 10 cents.
Forum: Everything else WordPress
In reply to: How to tell if someone else has access to your WP?I was just looking at them. Nothing nasty yet, taking measures now.
Forum: Fixing WordPress
In reply to: My WordPress site is not loading after editing functions.I added a piece of code to the functions.php file today in aid of supporting another plugin today and that stopped my site from loading (white screen). What I had to do was (via FTP); discard the local functions.php file and download it again from the server and remove that bit of code that caused the malfunction. So pay attention ‘Discard local file, download it again from ftp, edit it anew, and upload’. Your truly.
Forum: Fixing WordPress
In reply to: Thin white line in menu navigationNevermind, solved..
border-bottom: 1px solid #ededed;
border-top: 1px solid #ededed;These were the culprits. I figured they were caused by a single pixel element somewhere. My guess was right.
Thx guys ??
Forum: Fixing WordPress
In reply to: Thin white line in menu navigationI put the menu in its own div ‘my menu’. The I added the extra bit of CSS (see bottom). White line remains. Seems to be part of ‘menu-main-menu-container’ if inspect the code.
ORIGINAL CODE
.main-navigation .assistive-text:hover,
.main-navigation .assistive-text:active,
.main-navigation .assistive-text:focus {
background: #fff;
border: 2px solid #333;
border-radius: 3px;
clip: auto !important;
color: #000;
display: block;
font-size: 12px;
padding: 12px;
position: absolute;
top: 5px;
left: 5px;
z-index: 100000; /* Above WP toolbar */
}/* Navigation Menu */
.main-navigation {
margin-top: 24px;
margin-top: 1.714285714rem;
text-align: center;
}
.main-navigation li {
margin-top: 24px;
margin-top: 1.714285714rem;
font-size: 12px;
font-size: 0.857142857rem;
line-height: 1.42857143;
}
.main-navigation a {
color: #5e5e5e;
}
.main-navigation a:hover {
color: #21759b;
}
.main-navigation ul.nav-menu,
.main-navigation div.nav-menu > ul {
display: none;
}
.main-navigation ul.nav-menu.toggled-on,
.menu-toggle {
display: inline-block;
}CODE I ADDED
#menu-main-menu {
width: 570px;
padding-right: 0px;
}#site-navigation {
padding-left: 30px;
padding-top: 0px;
margin-top: 10px;
margin-bottom: -49px;
}.menu-main-menu-container {
margin-top: 0px;
padding-top: 20;
}#mymenu {
margin-left: 350px;
margin-right: 350px;
background: #5b5b5b; /* Old browsers */
background: -moz-linear-gradient(top, #5b5b5b 0%, #595959 12%, #474747 29%, #2c2c2c 64%, #1c1c1c 91%, #3a3a3a 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#5b5b5b), color-stop(12%,#595959), color-stop(29%,#474747), color-stop(64%,#2c2c2c), color-stop(91%,#1c1c1c), color-stop(100%,#3a3a3a)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #5b5b5b 0%,#595959 12%,#474747 29%,#2c2c2c 64%,#1c1c1c 91%,#3a3a3a 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #5b5b5b 0%,#595959 12%,#474747 29%,#2c2c2c 64%,#1c1c1c 91%,#3a3a3a 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #5b5b5b 0%,#595959 12%,#474747 29%,#2c2c2c 64%,#1c1c1c 91%,#3a3a3a 100%); /* IE10+ */
background: linear-gradient(to bottom, #5b5b5b 0%,#595959 12%,#474747 29%,#2c2c2c 64%,#1c1c1c 91%,#3a3a3a 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=’#5b5b5b’, endColorstr=’#3a3a3a’,GradientType=0 ); /* IE6-9 */
}