curlybracket
Forum Replies Created
-
Forum: Themes and Templates
In reply to: How do I Change the width of this header.Hi,
you could simply add : “overflow: hidden” into the “#header” section of your theme’s stylesheet, style.css, line 38.
Forum: Fixing WordPress
In reply to: Trouble with IE compatibilityIf you run IE8 you can use the included developer tools, similar to Firebug, by pressing F12. This will also allow you to check your website in IE7-mode.
Forum: Themes and Templates
In reply to: wp_enqueue_script not working properly:))
Forum: Fixing WordPress
In reply to: Custom loop that excludes categories listed in theme optionsForum: Fixing WordPress
In reply to: WordPress Changing Domain problem – Urgent Help Requiredyou should probably change the URL in your database, via phpmyadmin.
Forum: Fixing WordPress
In reply to: Trouble with IE compatibilityWhich IE version are you talking about ?
I am too lazy to check, but consider that IE6 has a bug that doubles margins on elements that float. Adding display: inline to these elements helps.
Also, when aligning text and using “center” IE may actually start counting placements of certain element from the center.
Forum: Fixing WordPress
In reply to: Hiding Thumbnails/ImagesConcerning the place where the thumbnail image shows, this would be an issue you can resolve by editing your stylesheet, ie. by setting the spoiler img to float left, float right etc (on homepage), on a single page there is another css selector for the image. consider installing firebug to check out the css and to be able to find what to modify.
You can hide images via css too, and that would probably be the easiest way to hide an image in a category via css.
Forum: Fixing WordPress
In reply to: WP 2.9 Native post thumbnails and post images not showingdid you edit you wp-settings file as described here : http://wpengineer.com/wordpress-2-9-add_theme_support-and-has_post_image/ ?
Forum: Fixing WordPress
In reply to: Change color of TAGS, Posted In and Comments linkTry adding
.postmetadata a {color: YOURCOLOR; }These links use the color defined on line 211 of your stylesheet and hover color defined on line 434.
Forum: Themes and Templates
In reply to: Right side menu bar in 1 row not in 2?To be able to add widgets to the left sidebar there must be a corresponding part in your themes’ function.php and sidebar.php.
If you just want to hide the left sidebar do it by editing you style.css :
.sidebarLeft { display: none; }and edit the width of sidebarRight to 100% or whatever you like.
Forum: Themes and Templates
In reply to: wp_enqueue_script not working properlyDid you call <?php wp_head(); ?> *after* wp_enqueue ?
Forum: Themes and Templates
In reply to: wigets and cssQualio, it should be defined in functions.php of your theme.
Forum: Themes and Templates
In reply to: Comfy Magazine theme HELPCan you describe your problem better please? What prevents you from editing the theme?
Forum: Themes and Templates
In reply to: Help Please, bulletpoints covering texttry changing the “12px 8px” to “left center” and add a “padding-left: 10px” to your element.
Forum: Themes and Templates
In reply to: How to remove alt/title of links?What I do is leave the titles (for search engines, screen readers etc) and hide them only to the end user, via Javascript. In order to do so I add to the header.php of my theme :
<? if( !is_admin()){
wp_deregister_script('jquery');
wp_register_script('jquery', ("http://jqueryjs.googlecode.com/files/jquery-1.3.2.js"), false, '1.3.2');
wp_enqueue_script('jquery');
} ?>
<?php wp_head(); ?>
<script type="text/javascript">
// WP jQuery compatibility
var $j = jQuery.noConflict();
$j(function(){
jQuery('.menu li a').removeAttr("title");
});
</script>