zeaks
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Problem in 3.5Use firebug to figure out how to remove the space. This and all your questions are simple css design questions and should be asked on a css forum.
Forum: Themes and Templates
In reply to: Problem in 3.5As far as I can see you still have not fixed your mistake, either that or a caching plugin is holding the old CSS. add a ; to the end of padding-top: 0px
If it needs adjusting after that, play around with the margins until you get it how you want. The screenshot shows what it should look like with the CSS I’ve already given you.
Forum: Themes and Templates
In reply to: [Twenty Twelve] [Theme: Twenty Twelve] Footer WidgetsI’d say it’s your cache, I don’t even see footer widgets, or the proper css when I view source.
Forum: Themes and Templates
In reply to: [Twenty Twelve] [Theme: Twenty Twelve] Footer WidgetsInstall the theme. Appearance > Themes > Install > upload, then activate it. Visit Appearance > Widgets, if you don’t see widget areas like in that image, you did something wrong.
You don’t add any code to anything if you’re using my theme. The code was only if you’re making your own child theme.
Good luck.
Forum: Themes and Templates
In reply to: Search box need to be freezedIt’s a css transition effect that does it. It can be countered by setting a width of the box.
Forum: Themes and Templates
In reply to: [Twenty Twelve] [Theme: Twenty Twelve] Footer WidgetsWhy are you editing any files, you just said you installed my child theme??
Forum: Themes and Templates
In reply to: [Twenty Twelve] [Theme: Twenty Twelve] Footer WidgetsIf you’re just seeing the main sidebar and front page widgets, then you didn’t install it properly. You should just install the theme like any other, not copy the contents to another theme folder.
https://codex.wordpress.org/Using_Themes <– how to install themes
http://zeaks.org/widgets.png <– widget area should look like this.
Forum: Themes and Templates
In reply to: [Twenty Twelve] [Theme: Twenty Twelve] Footer WidgetsThere are 3 footer widgets, and then the main sidebar in Appearance > Options. Arrange your widgets there. It’s a new theme so it won’t use whatever menus and widgets you had set in Twenty Twelve until you reset them.
As for the html, I have no idea what you’re talking about.
Use this the same as you would Twenty Twelve, visit Appearance > Theme Options to choose from a few settings.
Forum: Themes and Templates
In reply to: [Twenty Twelve] [Theme: Twenty Twelve] Footer Widgetscopy footer.php from twenty twelve to your child theme folder, add the code to it.
create a functions.php file and put it in your child theme folder then add the code to it.
You cant copy the functions.php from twenty twelve because the functions in it will conflict with the parent theme.Forum: Themes and Templates
In reply to: [Twenty Twelve] [Theme: Twenty Twelve] Footer WidgetsThe only CSS I see in that child theme is
#colophon a{ color: #960014; },I doubt the footer php code was added either.
Follow the step by step instructions I posted above, once you do that, if there’s an issue I’ll help with it.
Forum: Themes and Templates
In reply to: Problem in 3.5You didn’t fix the missing ; as I mentioned. I don’t know what you mean by “together”
Review your CSS and fix the mistake, then adjust the top and left margins until it’s where you want. You don’t need right and bottom margins#site-description { color: #3300FF; font-size: 16px; font-weight: normal; display: block; padding-left: 0px; padding-top: 0px <--- MISSING ; margin-top: -50px; margin-left: 70px; margin-right: 70px; margin-bottom:10px; }Forum: Themes and Templates
In reply to: Search box need to be freezedSearch in the menu doesn’t even expand on click on my site, but this should work for the regular search.
#branding #s { width: 196px; }Forum: Themes and Templates
In reply to: [Twenty Twelve] [Theme: Twenty Twelve] Footer WidgetsI mean the homepage template, it’s a special page template that comes with Twenty Eleven that already contains 2 footer widgets.
Link your site, I don’t know if you’re using the theme I linked or if you’re adding this to your own child theme, or if you’ve added it to the theme I linked.
Forum: Themes and Templates
In reply to: Twenty twelve problemWhat about it didn’t work?
Forum: Themes and Templates
In reply to: Problem in 3.5In your css you’re missing a closing ; see this padding-top: -30px, and negatives don’t apply to padding, change it to padding-top: 0; and also padding-left: 0; I doubt the margin-right: 70px; is needed either.
#site-description { color: #3300FF; font-size: 16px; font-weight: normal; display: block; padding-left: -20px; padding-top: -30px margin-top: -50px; margin-left: 70px; margin-right: 70px; margin-bottom: 10px; }