cruthas
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Broken image showing up in all postsIt looks fine to me in Firefox too, I am just concerned about users in Chrome and Safari. Any idea, or should I just not really worry about it?
Forum: Fixing WordPress
In reply to: Broken image showing up in all postsIt shows up in the blog roll and in the single posts.
Forum: Fixing WordPress
In reply to: Broken image showing up in all postshttp://climbhigh.com/wp/images/broken
Screen shot from chrome,
safari just shows a blue box with a question mark….
Forum: Fixing WordPress
In reply to: Broken image showing up in all postsSorry: http://climbhigh.com/blog/
Forum: Fixing WordPress
In reply to: Search bar too longOk, got that. I was actually using the wrong script from the forum.
One more quick question. What is the best way to style the search button? I have had this problem before. Assign it it’s own class id?
Thanks for the direction!
Forum: Fixing WordPress
In reply to: Search bar too longI am using chrome so I can inspect the element. It seems like something is overriding the css. It says 80% but when I go to change it in my css, it say 20%.
Forum: Plugins
In reply to: Put Google ads on dashboard for multi-user site??I’d like to know the same thing? Is there a way to place ads in the dashboard?
Forum: Fixing WordPress
In reply to: Forcing dashboard widgets to the topOk, got it. Sorry.
I am still trying to work this work.
This is the code I am using: http://pastebin.com/NV9bCDZ2
and this is the code from the Dashboard API: http://pastebin.com/MSrLjELa
Any guidance would be greatly appreciated…
Yeah I did see and implemented the css. I believe I may have figured out my issue. Looks like my nav bar is causing the issue. It is too wide and adjusting the width only breaks it. I will bring the issue up in another forum post.
Hmmm, for some reason my width still isn’t corrected on the iPhone and my nav bar is shifted way right… Anyone have any thoughts?
Forum: Fixing WordPress
In reply to: Calling a functionOn it! Thanks again for the help!
Forum: Fixing WordPress
In reply to: Calling a functionGreat! Thanks! I got it to show in the sidebar now. I will see what I can do about getting it to look right. Thanks!
Forum: Fixing WordPress
In reply to: Calling a functionYes I understand that, but I am unfamiliar with PHP. I have tried adding the following <?php bjaq_form(); ?> to my functions.php but had no luck. I don’t know where to put the piece of code is what I was trying to say.
Forum: Fixing WordPress
In reply to: Calling a functionI don’t understand?
Forum: Fixing WordPress
In reply to: Calling a functionYes I think this is it…
function bjaq_form() { global $aErrors; $sContent = ""; if (get_request_var("bjaq_action") == "bjaq_success") { $sContent .= '<div id="bjaq-result">Successfully submitted message! <a href=".">Submit another</a>.</div>'; } else { $bjaq_error = ""; if (get_request_var("bjaq_action") == "bjaq_error") { $err_type = get_request_var("bjaq_error"); if (!isset($aErrors[$err_type])) { $err_type = "unknown"; } $sContent .= '<div id="bjaq-result">' . $aErrors[$err_type] . '</div>'; } $sContent .= bjaq_form_html() . ' <div id="bjaq-result">' . ($bjaq_error ? $bjaq_error : '') . '</div>'; } $sContent .= '</noscript>'; $sContent = '<h3>Ask A Question</h3>' . PHP_EOL . $sContent; echo($sContent); }Now I just don’t know how to get the form in my sidebar… There is nothing in the widgets options…