CyberAlien
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Set height to 100%You are missing this:
html { height: 100%; }It won’t help you though because setting 100% height to element sets it to full height of parent element, not parent element’s content. Absolute positioning won’t help you ether because it will mess up layout if post’s content requires more height than is available to it.
Forum: Themes and Templates
In reply to: twentyeleven nav hidden below slideshowTry this:
.ngg-slideshow { z-index: 1; }Forum: Themes and Templates
In reply to: [THEME] Help with custom theme styleYou have two divs with id=content, which is probably causing that problem: #content > #contentright2 > #container > #content
Rename second div to something else
Forum: Themes and Templates
In reply to: Image over content.post-content { overflow: hidden; }
Forum: Themes and Templates
In reply to: Post Content/Images won't centerTry adding this to css:
img { display: inline-block; }Forum: Themes and Templates
In reply to: My designed theme is not working properly with wordpressThere are minor errors in your html page: you have <div /> structure for logo there, which is invalid and you have </br> instead of
Other than that, on your blog page you haven’t applied styling to elements that are different from your html page. You should account for structural changes. For example, logo: in html page you have “header h1 a”, but in blog its “#header h1 a” and there is no logo image, so you should change header template to add your image.
Forum: Themes and Templates
In reply to: Need Help with Dirty Blue Themeh1#logo_text {
margin: 0 auto;
width: 980px;
}and if you want to center text below logo, apply the same css to p#tagline_text and add text-align: center to it
Forum: Themes and Templates
In reply to: Kreative ThemesIf theme you are using is obfuscated and has a callback function that shows data from their website, decode it and remove that callback (see sticky thread in this forum). Or use some other theme until problem is solved.
I’m designing for phpBB, not WordPress (not yet) and I’ve never seen people doing anything like that to phpBB styles. I wonder, what makes you and other people use themes with obfuscated/encoded code and hidden callbacks when there are good free alternatives available on this website without any junk? Is it some feature that you really want in it that isn’t available in other themes?
Forum: Themes and Templates
In reply to: Adsense unwanted border…please helpRemove border for iframe in css
Forum: Themes and Templates
In reply to: footer is editedI guess its one of those themes that has obfuscated php code in footer that protects it from editing, so blog owner couldn’t remove spam in footer. Decode footer (see sticky topic) to see its code, remove spam and enjoy the theme.
Or reupload original footer and have spam on your forum. Or use a different theme.
Forum: Themes and Templates
In reply to: CSS "No-Repeat" Isn't WorkingYou have
<br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br />at the beginning of document. I think its causing that problem.
Forum: Themes and Templates
In reply to: Problems positioning header imageThat will force horizontal scrollbar when browser width is lower than 1700px and won’t make logo centered.
Forum: Themes and Templates
In reply to: Problems positioning header imageRemove that <img> tag and add this to css:
#masthead { background: url("/wp-content/uploads/2011/05/header-bg2.jpg") no-repeat scroll 50% 50% transparent; min-height: 226px; }If your want your menu to be below header image, change min-height in that code to padding-top
Forum: Themes and Templates
In reply to: png image not showingProbably you have uploaded them to wrong directories or messed up file names or something like that. Remember that file names are case sensitive, so image.PNG and image.png are different files.
There is no reason for WP to show jpeg images and not to show png images.
Forum: Themes and Templates
In reply to: Hardcode "like" into post footerWhat is $turl for? It seems to be in wrong place and has ? before it that doesn’t make sense. Try this:
<div class="facebook_link"> <a target="_blank" title="Share this article with facebook" href=""http://www.facebook.com/plugins/like.php?href=<?php echo urlencode(get_permalink($post->ID)); ?>" rel="nofollow" class="social-bookmark">Like Article</a> <img alt="Like Article" src="<?php bloginfo('template_directory'); ?>/images/fbr.png"/> </div>