ronangelo
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Resizing images in proper proportionsThe image still looks more stretched in terms of height.
That’s because the image you uploaded is bigger than the content width.
You can either upload a re-sized image or add:
height: auto;Forum: Themes and Templates
In reply to: Footer below TemplateYou probably have an unclosed div. Possibly on one of your widgets.
Forum: Themes and Templates
In reply to: widen side-bar in twenty ten theme/* Theme Name: Twentyten Child Theme URI: xxx Description: Child theme for the twentyten theme Author: xxx Author URI: xxx Template: twentyten Version: 1.0 */ @import url("../twentyten/style.css");Have you fixed it? maybe just needs a refresh.
Forum: Themes and Templates
In reply to: New theme, sliders doesn't workWhat do you mean “it wont work”?
Is it just the appearance? the images going out of the container?
overflow: hidden;Forum: Themes and Templates
In reply to: widen side-bar in twenty ten theme@import url(“../twentyten/rtl.css”);
Why aren’t you importing the main stylesheet? style.css
Forum: Themes and Templates
In reply to: widen side-bar in twenty ten themeDo I need to do something to “activate” the child theme?
Go to the Themes page in the Dashboard. Find the child theme, then activate. Just like how you activated the twentyten theme.
Forum: Themes and Templates
In reply to: reduce size of header imageYou didn’t mention the theme you’re using. Or maybe just post a link to your site.
Forum: Themes and Templates
In reply to: Adding a profile picture to the sidebar?On the Theme Options, you can select “Content on left”. Then add a text widget with your info.
Is this what you want? Or maybe you want the sidebar to the left and just add a box to the right? If that’s the case you have to edit a template on a child theme.Forum: Themes and Templates
In reply to: Beginner creating homepage HELP!!!I haven’t found any templates that resemble anything close so I want to create my own.
A lot of themes look like that. Just remove the sidebar
If you want to create your own you can try looking at a themes code.
http://ronangelo.com/create-a-wordpress-theme-beginners-guide/Basically, inside the loop you just have to add the pic, the title, the excerpt and the date. These are all easy to do if you inspect a theme.
Forum: Themes and Templates
In reply to: how to add the "last" class to the last menu item?You don’t need to add a separate class.
You can select the last li like thisli:last-child {}Forum: Themes and Templates
In reply to: how to create my own theme when i know zero css?Well then you have to start learning CSS. It’s fairly easy. It’s what makes your theme stand out from other themes.
http://ronangelo.com/create-a-wordpress-theme-beginners-guide/
Forum: Themes and Templates
In reply to: Problem with the width of the siteremove the min-width of the main wrapper then…
#doc3 { max-width: 100%; }Forum: Themes and Templates
In reply to: Web site – no comments & no postsIn any theme. Go to your dashboard -> all pages.
Click “Quick Edit” on the desired pages then uncheck “Allow Comments”. UpdateForum: Themes and Templates
In reply to: Getting links from custom menu?register a custom menu.
register_nav_menu( 'menu-primary', 'Primary' );then output the new menu in your header
<?php wp_nav_menu( array('theme_location' => 'menu-primary') ); ?>http://ronangelo.com/create-a-custom-menu-for-a-wordpress-theme/
Forum: Themes and Templates
In reply to: I need medical themeTry the Graphene theme. It looks similar to your current design.