futurepocket
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Really Need Help on headerbody {
background-color: #F0F0F0;
color: #333;
font: 12px ‘Lucida Grande’,Arial,Helvetica,sans-serif;
}#wrapper {
background: #00000F;
min-height: 100%;
padding: 0px 0;
position: relative;
min-height: 100%;
position: relative;Have different backgrounds assigned to it. Do you want the color #F0F0F0 or the color #00000F as the background on your whole website?
Forum: Themes and Templates
In reply to: Need a hand with some codesFirstly, you don’t need to add another div, just merely add a style to the div tags already around the script. Secondly, there’s probably some other element between the menu and the script that’s causing it to overlap once you increase the margin too much. Increase your margin in increments of 10px and see how that works. Can you post a link to your website so I can look @ the code?
Forum: Themes and Templates
In reply to: Linking Logo in ThemeYup, that’s exactly what I ended up doing except I kept the header div class because otherwise it would mess up the ads I’m going to put in later on the right side of the banner. Thanks for your response :).
Forum: Themes and Templates
In reply to: Featured Image and the 1 buttonThat’s probably the case. Again, like I said, what Google +1 or Facebook pick up is not completely related to WordPress. Try removing those conditional clauses, it’s probably confusing the code +1 is trying to pick up from your website.
Forum: Themes and Templates
In reply to: How to change hover colour in footer linksYou have to change this one:
#site-generator a:hover {
color: #E01E1E;To whichever color you want. It seems you did a bit of modification to your styles:
#site-generator a {
color: white;
font-weight: bold;
}Don’t modify that code, you need to modify the #site-generator a:hover { CSS only
Forum: Themes and Templates
In reply to: Error in Single.phpHmm, it doesn’t seem to redirect me anywhere when I click in Produk > Handphone, the link for that redirect is:
Is that the problem you are having? That the pages are not loading on click?
Forum: Themes and Templates
In reply to: Add page template to your themeSorry, we couldn’t really help you because I don’t understand what you’re saying. We’d have to see your website before we can help you fix it.
Forum: Themes and Templates
In reply to: twentyeleven header customazationsYou would need to have some knowledge of AJAX to be able to have the images load without reloading the page. Everything is possible, but that would require a customization and you might have to pay someone to do it unless you’re skilled at it yourself.
For your second request, yes you can use CSS overlays to overlay your logo in the header.
Forum: Themes and Templates
In reply to: Access: Can't get the font to be any biggerFirstly, nice tweaks. Second, where exactly are you trying to increase the font size? Can you post some relevant CSS so we can see what’s wrong.
Forum: Themes and Templates
In reply to: Error in Single.phpCan you clarify what you mean, perhaps a link to your website where we can see what’s wrong?
Forum: Themes and Templates
In reply to: Only Two Posts Showing on Blog Page after UpdateYes, any theme options would over ride the default WordPress options unless defined otherwise in the theme functions file. Glad you got it resolved :).
Forum: Themes and Templates
In reply to: Styling Widgets in WeaverRefer to here:
http://www.w3schools.com/css/css_background.asp
and here:
http://www.w3schools.com/cssref/css3_pr_box-shadow.asp
You can add those styles to your CSS and modify it to your liking.
Forum: Themes and Templates
In reply to: How: Remove white space between page contents and menuNot 100% sure what you are referring to but I think this should fix it:
#main { clear: both; padding: 1.625em 0 0; }TO
#main { clear: both; }Let me know if that fixes it.
Forum: Themes and Templates
In reply to: How: Remove white space between page contents and menuWell, you just changed your page CSS, so do it again:
#page { margin: 0 auto 2em; max-width: 1000px; }TO
#page { margin: 0 auto; max-width: 1000px; }That should do it!
Forum: Themes and Templates
In reply to: Twenty Eleven Help