Arie Putranto
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Help in adjusting the header's height to a smaller sizeMia,
For the Searchform, here’s what you need to adjust.
Find below code on the style.css
#branding .with-image #searchform { top: auto; bottom: -27px; max-width: 195px; }Adjust the top value to fit your site and set the bottom value to 0;
You may as well addright: (some value)to it for better adjustment.Forum: Themes and Templates
In reply to: Change Title and Tagline color/font in 2010How do you achieve that and where is the site? If you give the link then it will be easier to explain how.
Forum: Themes and Templates
In reply to: Margin spacingI’ve look into the code and unfortunately it’s more than CSS issue since the width of the element is hard-coded to the template.
That area itself left a blank space on the right side merely because it has an empty block, the same width with the left side. If you expand the with of the first block (the one with the text on it) the second block will drop below it and leave a blank space under the first block.
I’m not aware of Weaver II theme so I cannot tell you which template file is supposed to edit.
But you can try to edit style.css via the Theme Editor on the Dashboard and add this on the bottom.
#weaverii_text-2.widget .textwidget div { padding-right: 0 !important; width: 100% !important; float: none !important; }That, I think will override the hard-coded style in the template. Hopefully.
Forum: Themes and Templates
In reply to: Child Theme for 2010Forum: Fixing WordPress
In reply to: Help in adjusting the header's height to a smaller sizeI have check your site and it turns out that the Header Image is hard coded to 1000px width and 500px height. That’s why the CSS adjustment not working.
Maybe this will works. Try:
#branding a img { height: 100px; }Or maybe you can change the image with another image which has less height. Say it 1000px x 200px. That would be fit right.
Forum: Themes and Templates
In reply to: Margin spacingSorry. But maybe you could give me a link to your side to give you more effective suggestion. Since explaining this thing might takes time without enough information.
Forum: Fixing WordPress
In reply to: Parse error: syntax error, unexpected T_IFYou simply forget to put ‘;’ at the end of the line 14 of your file so it should be
include'modules/custom_post_types/post.php';Forum: Fixing WordPress
In reply to: Help in adjusting the header's height to a smaller sizeWell I’ve tried that myself and it works fine.
Could you give me a link to your site so I could inspect further?Forum: Themes and Templates
In reply to: resolved :Parse error: syntax error, unexpected T_STRING inYou’re welcome. Don’t forget to mark this thread as ‘resolved’ 🙂
Forum: Themes and Templates
In reply to: Margin spacingBy editing your style.css and adjust the related style for the widget element.
Forum: Themes and Templates
In reply to: resolved :Parse error: syntax error, unexpected T_STRING inYou forget to close
the_time('F jS, Y')with;so it should be
the_time('F jS, Y');Forum: Themes and Templates
In reply to: error in edit themes pageThat’s strange. But I see the same problem, I’ll re-install WP first and see where it leads me.
Forum: Fixing WordPress
In reply to: Change Font in Widget TitleOh .. and instead of writing above code inline on the template you should edit the base.css on line 248 and 249 where the related style for the element you need to change is written.
Forum: Fixing WordPress
In reply to: Change Font in Widget TitleFrom a quick peek to the CSS, I see that the styling on the .widget-title class has been overridden by the #secondary ID.
So you need to change the
#secondaryand instead of.widget-titleForum: Themes and Templates
In reply to: in the 2011 theme what file handles the "Nothing found" pageFor more information about WordPress template, check on the Codex:
http://codex.ww.wp.xz.cn/Template_Hierarchy