José Marques
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Link to blog post not workingCan you provide more info, like a link example?
Forum: Plugins
In reply to: [Plugin: W3 Total Cache] Problem in Firefox – Appear “*/” at the beginingHey, that looks like a code comment that was closed but not open, comments usually go like this /* comment */.
I would wait for a plugin update or if you really need to use cache try a different one, there are many good options.
Forum: Fixing WordPress
In reply to: I am getting Login 404 ErrorDid you change the name of the WordPress folder after installation?
I if you have access to the database see if the ‘siteurl’ and ‘home’ entries in the wp_options table match the installation folder.
I’ve had this problem once when I changed the installation folder.
Forum: Fixing WordPress
In reply to: feed is missingI can see it perfectly, you are using something that is redirecting the feed to Feedburner: http://feeds.feedburner.com/resumetarget
Maybe the Feedsmith plugin?Forum: Themes and Templates
In reply to: Posts on website themes and picturesAre you using a plugin to generate the slidding panels? I can’t any reference the the images on the HTML.
Forum: Themes and Templates
In reply to: changing column widthI’m a bit persistent, I’m sure you can do this ;): if your theme has a sidebar.php try to yank the code that generates the sidebar you want on the left and add it to another file like sidebar1.php, then try to do an include of that file in your index.php file, but make sure the include instruction shows up before the loop, but after the header of course.
Forum: Themes and Templates
In reply to: changing column widthThe problem is that .content div is the first div that shows up on your html, before .sidebar1 and .sidebar2. Try changing your theme so that the .sidebar2 comes first.
Forum: Themes and Templates
In reply to: changing column widthHum, than can be tricky, but try to float the div’s like this:
.sidebar2{float: left;}
.content{float: left;}
.sidebar1{float: right;}Forum: Themes and Templates
In reply to: Help adding second sidebarBesides doing what Esmi sugested here are few more tips:
You have a style definition for a div called #wrapper in your css, try a bigger width in order to fit two sidebars, you can also shorten the width of #content in order to make room for another sidebar.
Forum: Themes and Templates
In reply to: changing column widthTry playing around with the width of following styles in your styles.css file:
.contentLayout .content
.contentLayout .sidebar1
.contentLayout .sidebar2Try using the firebug extension with the Firefox browser to play around with the widths of the columns to see what looks right before changing your styles.css.
Hope it helps!
Forum: Themes and Templates
In reply to: Adding Twitter link to header img.Hey there, it seems what you have rendered by that piece of code is this:
<p id="ico_twitter"><a href="#"><img alt="twitter" src="http://stogiebrew.com/wp-content/themes/AllBlack/images/ico_twitter.png"></a></p>Try replacing what you have here:
<?php echo theme_twitter_link_show() ?>with something like http://twitter.com/your_user_name, the plugin you are using isnt doing its job.