zeaks
Forum Replies Created
-
Yeah they are working for me now too, thanks for the update
Forum: Themes and Templates
In reply to: Problem in 3.5Add the code I posted above, adjust the padding and margins until you get it how you want.
Forum: Themes and Templates
In reply to: Problem in 3.5I didn’t know what it looked like before the update, assumed it was under the logo. Try this
#site-description { color: #3300FF; display: block; font-size: 14px; font-weight: normal; margin-top: -20px; padding-left: 75px; } #site-title a img { display: inline; padding-right: 10px; vertical-align: middle; }Forum: Plugins
In reply to: [Electric Studio Download Counter] WP Editor broken under 3.5Having this problem too. Also getting an error message on the download counter page
Warning: Missing argument 2 for wpdb::prepare(), wp-content/plugins/electric-studio-download-counter/lib/sqlfunctions.php on line 71 and defined in /public_html/wp-includes/wp-db.php on line 990Forum: Themes and Templates
In reply to: Problem in 3.5In your child CSS if you remove the margin-top and padding-left from this, it will place it under the title and in line with it.
#site-description { color: #3300FF; display: block; font-size: 14px; font-weight: normal; margin-top: -20px; padding-left: 60px; }Also, in chrome your menubar is black like the default, I don’t think you added all the gradient CSS for every browser so it’s still picking it up for everything but firefox.
This is what you have
background: linear-gradient(#6666FF, #6666FF) repeat scroll 0 0 #6666FF;This is what you should also have (untested)
#access { background: #6666FF; /* Show a solid color for older browsers */ background: -moz-linear-gradient(#6666FF, #6666FF); background: -o-linear-gradient(#6666FF, #6666FF); background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#6666FF), to(#6666FF)); /* older webkit syntax */ background: -webkit-linear-gradient(#6666FF, #6666FF); }Forum: Themes and Templates
In reply to: internet explorer confusionHard to tell using firebug, but try
.menu:after, .menu ul:after { background: transparent; }If that doesn’t work, see if there’s an IE8 or IE conditional in responsive you can use to remove the background color.
I don’t think you can individually style or hide sections of the meta information. You can copy the meta information function from Twenty Twelve into a child theme and edit it that way. Even add classes to each section to style it through CSS.
Forum: Themes and Templates
In reply to: Themeforest ScamNot sure about the quality of the theme, but as far as a shortcode for the front page, it does state in the description “The magazine type content handled by shortcodes”
From my experience in buying premium themes, I always read through comments and see what other buyers have said. If it’s bad, then I move on, if there’s 300 comments of nothing but questions about how to change footer text and nothing major, chances are the theme is ok.
I’ve had good experiences with Themify, woo themes and elegant themes.
Forum: Themes and Templates
In reply to: [Twenty Twelve] [Theme: Twenty Twelve] Footer WidgetsThese widgets won’t display on the homepage template, it already has 2. If you’re using my child theme then you don’t have to do any of that. Just visit Appearance > widgets, set up your widgets and that’s it. If you’re using the front page template, as your homepage then you won’t see them on the front page.
Forum: Themes and Templates
In reply to: [Twenty Twelve] [Theme: Twenty Twelve] Footer WidgetsIf you’re installing that child theme you linked, just install it like any other theme, then visit Appearance > theme Options and configure it how you want and add your widgets the same as you would any theme in Appearance > Widgets
If you’re creating the footer yourself (copying it from Twenty Twelve to your child theme) it will look exactly like Twenty Twelves until you make changes to it. Don’t remove any code from it, just add the code as I said in the comment above.
Forum: Themes and Templates
In reply to: [Twenty Twelve] [Theme: Twenty Twelve] Footer WidgetsYou would copy the templates to your child theme folder and edit those.
Don’t remove any of the code already in it, add the code posted above to it where it says.
You’ll need to create a functions.php file yourself, make sure to add an opening php tag
<?phpat the top before adding the code.Add any CSS to the child theme style.css
Forum: Themes and Templates
In reply to: TwentyEleven header color not changing?ah, there’s a special character just before the #branding ID, click on it and hit backspace then save.
Forum: Themes and Templates
In reply to: TwentyEleven header color not changing?It is in his CSS and he’s going to get validation errors using that anyways. What I posted above directly from Twenty Eleven throws validation errors.
Forum: Themes and Templates
In reply to: TwentyEleven header color not changing?oh, yeah you must be looking at it in chrome or something, in the parent theme CSS it has the gradient for all browsers and backup.
background: #222; /* Show a solid color for older browsers */ background: -moz-linear-gradient(#252525, #0a0a0a); background: -o-linear-gradient(#252525, #0a0a0a); background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#252525), to(#0a0a0a)); /* older webkit syntax */ background: -webkit-linear-gradient(#252525, #0a0a0a); -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0px 1px 2px; -moz-box-shadow: rgba(0, 0, 0, 0.4) 0px 1px 2px;Forum: Themes and Templates
In reply to: TwentyEleven header color not changing?It’s blue to me, light blue fading into a slightly darker blue.