batharoy
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Struggling with Forums LayoutUse a css plugin like Simple Custom CSS than add the following code. Adjust the width to your liking.
.page-id-214 #main { max-width: 1020px; margin: 0 auto; }Hope this is what you were looking for.
Sorry about that.
Try adding it to#enhancedtextwidget-2instead of#st-banner0-wrapper, #st-banner1-wrapperForum: Themes and Templates
In reply to: [Celestial - Lite] slider not fitting into header spaceFor some reason the wrapper height is shorter on the live site.
Try adding this to your child css file
#st-banner0-wrapper, #st-banner1-wrapper { height: 333px; }Forum: Themes and Templates
In reply to: [zAlive] Problem with Child Theme CSSTake out all the imports except the top one, see if that works.
Forum: Themes and Templates
In reply to: Twenty Twelve add phone number under search boxNow give your hgroup a float:left;
and your .alignright a margin-top: 10px;hgroup { float: left; } .alignright { margin-top: 10px; }Forum: Themes and Templates
In reply to: Making galleries with many picturesForum: Themes and Templates
In reply to: CSS or RSSThe short answer:
CSS is used for styling websites.Long answer:
http://en.wikipedia.org/wiki/Cascading_Style_Sheets
http://en.wikipedia.org/wiki/RSSForum: Themes and Templates
In reply to: Quintus: custom-header.php adding ImagesYou should create a child-theme for any php edits or it will be overwritten with a theme update.
That being said, add the links in header.php instead. Then the css in style.css in the child theme.
Forum: Fixing WordPress
In reply to: Cannot access my dashboard after upgradeCan you login here:
http://wendimomen.com/wp-admin/Forum: Themes and Templates
In reply to: Changing link colors.site-footer .widget a { color: #fff; } .site-footer a { color: #fff; }Forum: Themes and Templates
In reply to: [Vantage] Custom Link in MenuOn the menu page click on Screen Options in the top right. You can check the box for Link Target. You will then have a checkbox on the menu item edit box.
Forum: Themes and Templates
In reply to: Twenty Twelve add phone number under search boxSorry that should have been <hgroup> so it is outside but above the hgroup.
Forum: Themes and Templates
In reply to: [Customizr] Changing featured circles to rectanglesTo get rectangles you will need to adjust the height. However this will cut off the bottom of the image. Give it a try and see if it works for you.
.thumb-wrapper { height: 150px; }Forum: Themes and Templates
In reply to: [Theme: Blaskan:] How to Change Button Colors?Sorry, I should have specified, this should go in a custom css plugin or a child theme.
If you edit the style.css directly in the theme it will be erased if the theme is updated.Forum: Themes and Templates
In reply to: [Theme: Blaskan:] How to Change Button Colors?Forgot the hover color
#nav li:hover > a { background: green; }