zonkD
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Plugin List Not Showing All Plugins Since UpdateVer 4.6.1 Happened right after I updated.
How do I reset from FTP? Just copy something new in from FPT?
Forum: Themes and Templates
In reply to: [Frisco for BuddyPress] IE 8 header issue help pleasemarking as resolved.
Forum: Themes and Templates
In reply to: [Frisco for BuddyPress] IE 8 header issue help pleaseUgh.
For whatever reason IE8 didn’t like:
#header #search-bar {
background: transparent;had to switch the CSS to:
#header #search-bar {
background: none;Images now appear correctly in IE8. I’d also switched them from .JPG to .PNG as the images for the social icons were PNG. Not sure it made a difference in making them render properly but not switching it back now that they are displaying.
Forum: Themes and Templates
In reply to: [Frisco for BuddyPress] bbPress and FriscoThis was an error on the BP install.
Forum: Themes and Templates
In reply to: [Frisco for BuddyPress] Theme iPad and iPhone issuesOk. Found everything. Note to those placing a logo in the header and those putting one in the header and removing the search bar.
If your logo is wider than the 320px you must edit the CSS for mobile at:
/* Mobile */
@media only screen and (max-width: 767px) {body {
width: 320px;
min-width: 320px;
padding: 0;
}
.fullwidth {
width: 320px;
max-width: 320px;
min-width: 320px;
}_________________
This will set the min width for your mobile layout to match your logo width.
Forum: Themes and Templates
In reply to: [Frisco for BuddyPress] Theme iPad and iPhone issuesCleared out the theme and did a fresh install. Making adjustments 1 at a time until the layout broke on the iPhone.
The layout “breaks” if you put a logo in the header lager than 320 pixels wide.
When the logo is set to 400 (or anything larger than 320) the header and menu load to the correct width of the logo image but the body container loads at the 320 width and shows a 80 pixel wide, gray background bar along side all posts until the sidebar loads below it at the correct width.
Also note that headlines in H1 can be cut off when a single word on a line is larger than the box.
Where would you correct the minimum width of the body container to be 400 instead of 320?
Forum: Themes and Templates
In reply to: [Frisco for BuddyPress] Theme iPad and iPhone issuesSure thing — it’s: Site
I fixed the iPad issue by adding:
body.page div#container,
body.blog div#container,
body.single div#container,
body.archive div#container,
body.error404 div#container,
body.activation div#container,
body.search-results div#container,
body.search-no-results div#container {
max-width: 100%;
}The gray box in the corner of the header is now gone. I am running theme version 1.6.13
I still haven’t resolved the iPhone display problem — the body container does not fill the screen and is like 1/3 the width of the phone display — even though it is moving the sidebar below it.
Forum: Themes and Templates
In reply to: [Frisco for BuddyPress] Theme iPad and iPhone issuesI did make some changes to add my logo:
#search-form {
display: none;
}
#header {
background: #000000;
white-space:nowrap;
}#header #search-bar {
background: transparent;
white-space:nowrap;
}
#header #navigation {
white-space:nowrap;
}
#logo a
{
display:block;
width:320px;
height:70px;
background:url(logo.jpg) no-repeat scroll left top transparent;
text-indent: -9999px;
padding-top: 0em;
padding-right: 0em;
padding-bottom: 0em;
padding-left: 0em;
border-top: 0em;
border-right: 0em;
border-bottom: 0em;
border-left: 0em;
margin-top: 0em;
margin-right: 0em;
margin-bottom: 0em;
margin-left: 0em;
}I removed the no-wraps to test it. That wasn’t the issue. The header still doesn’t fill the page at 100%.
Any suggestions?
Forum: Plugins
In reply to: [Sweet Captcha] {"error":["Invalid domainresolved with a touch of patience.
Forum: Plugins
In reply to: [NextGEN Public Uploader] A little message bugI saw this but found the solution.. it is the sample text in the settings panel for the label for description box.
Just change that to “Description” or “Image title”
Silly example text to have in. I’m just sayin’ 😛
Forum: Plugins
In reply to: [Plot My Posts and Tweets] A few questions – plotting postsOk. Figured out a few things.
Disregard the centering question.
I do run into another issues. I’m using WP Front End for user posts. I added a custom field to that form for location — “cf_location”.
How do i get the plugin to use that field for plotting posts as opposed to the “location” field in the map table?
Sure thing.
In my sidebar I am using the base WP category widget. I have the widget set to show all categories in a pull-down menu (to save space since there are so many).
When to select a category on the menu — it jumps to it without having to click go or submit.
On the WP frontend post page, I have the post page set to show categories also in a pull down menu (since there are over 50 for the user to choose from.
When the user selects the category on the post page from the pull down menu to select the value, it immediately activates “go” or “submit” and tries to redirect the page.
Sorry for being unclear. I should have said pulldown menu instead of pop-up.