mb studio services
Forum Replies Created
-
Forum: Plugins
In reply to: [Icecast Now Playing] ERROR: cURL error 6: Could not resolve host: httpI’m using windows 10 with icecast 2.4.4 for windows along with BUTT encoder.
Forum: Plugins
In reply to: [Icecast Now Playing] ERROR: cURL error 6: Could not resolve host: httpNo, is this something I need to do on the icecast server ?
The icecast server url is http://172.119.123.141:8002
Is this something I can change in the icecast config file and router?
Thanks,
MikeForum: Plugins
In reply to: [Simple Ajax Chat – Add a Fast, Secure Chat Box] Name and comment requiredAlso, I noticed when I make changes to the welcome chat message, the chat room doesn’t reflect those changes.
Forum: Plugins
In reply to: [Simple Ajax Chat – Add a Fast, Secure Chat Box] Name and comment requiredHi Jeff It seems that the error message is intermittent, I tried uninstalling the plug in and reinstalling it and it didn’t fix the problem.
Mike
Forum: Plugins
In reply to: [Simple Ajax Chat – Add a Fast, Secure Chat Box] Name and comment requiredForum: Fixing WordPress
In reply to: Twenty Thirteen sizing for multiple browsers and mobile devicesI can’t afford any of these publications at the moment, are there any free online resources out there that you are aware of ?
Forum: Fixing WordPress
In reply to: Removing default sidebar widget areas in twentyeleven child themeSo far the only way I am able to see the new widget areas is to number the sidebar id’s 6 and above IE: sidebar id-6
Forum: Fixing WordPress
In reply to: Removing default sidebar widget areas in twentyeleven child themePlease excuse my typos, I have a quick mouse finger.
Forum: Themes and Templates
In reply to: REMOVING SPACE ABOVE MY HEADER IMAGE????That worked for me, however is there a way to leave just a little of blank space above the header image ?
Mike
Thank you for your help, that worked like a charm !
I have added the following code to my child functions.php file,
add_filter(‘body_class’, ‘adjust_body_class’, 20, 2);
function adjust_body_class($wp_classes, $extra_classes) {if( is_page_template(‘sidebar-preinsulated.php’) ) :
// Filter the body classesforeach($wp_classes as $key => $value) {
if ($value == ‘singular’) unset($wp_classes[$key]);
}endif;
// Add the extra classes back untouched
return array_merge($wp_classes, (array) $extra_classes );
}I have more then one page template and this piece of code only works for one page template. Is there a way to modify this to add additional page templates ?
Thanks,
MikeForum: Themes and Templates
In reply to: [Twenty Eleven] Remove line at bottom of page in dark themeI tried using .hentry { border: none; } in my child theme but it only removed the lines between the posts and not the bottom footer line
Any suggestions ?
Mike
The menu works in the default but when I used the dark template it didn’t. Is there a way around this ?
Mike
I dropped this code into my twentyeleven child theme and it didn’t change the navigation background colors.
Mike
/* =Menu
————————————————————– */#access {
background: #222; /* Show a solid color for older browsers */
background: -moz-linear-gradient(#252525, #0a0a0a);
…
…Forum: Fixing WordPress
In reply to: How do I remove image borders in posts in twentyelevenThank you, that worked, I am using the editor built into wordpress 3.2.1