batharoy
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Trouble with padding and height with percents (CSS)Margin/Padding set to a singe % number is the same on all 4 sides; order is top-right-bottom-left.
All measurements are in height for this example.
Height in question set to 80%Homepage Images:
234*0.8 = 210.6 only going to cover 210.6 of 234px
234px * 0.05 = 11.7 will start 11.7px from the top and cover 210.6px
11.7px top + 11.7pxbottom +210.6px coverage = 234 0px left overRelated Images:
300*0.8 = 240 only going to cover 240 of 300px
300px * 0.05 = 15px will start 15px from top and cover 240px
15px top + 15px bottom + 240px coverage = 270px leaves 30px left over
since it starts at the top those 30px extra will be taken from bottomForum: Themes and Templates
In reply to: Trouble with padding and height with percents (CSS)This is as close as your gonna get, because the rectangles have greater width the border will appear a little larger on the left & right sides.
position: absolute; left: 5%; top: 5%; width: 90%; height: 90%;Forum: Themes and Templates
In reply to: Creating dropdown menus in nav barThat’s basic WP functionality, IMO get a new theme.
Forum: Themes and Templates
In reply to: Creating dropdown menus in nav barGo into Appearance > Menus.
Drag the menu items below and a little to the right of the menu item you want to be the parent so that they indent.
They will then become drop-down menus.Forum: Themes and Templates
In reply to: Hide Footer w/Child ThemeWhat does your directory structure look like in relation to parent / child.
See example here.
Forum: Themes and Templates
In reply to: Center header imageHere’s a little trickery to make the title transparent on top of the image so it looks like the image is clickable.
.site-title { background: url(http://youngwifelife.com/wp-content/uploads/2014/01/YWL-banner1.jpg); background-repeat: no-repeat; background-position: center; height: 315px; font-size: 200px; padding-top: 100px; margin-top: 0; } .title-area a { color: transparent !important; }Forum: Themes and Templates
In reply to: Center header imageSee if this will work
.title-area { margin: 0; width: 100%; } .site-header .widget-area { width: 100%; }Forum: Themes and Templates
In reply to: [isis] Adjusting Margin Space of Call Out Text BoxAdjust the percentage to your liking.
#callout { width: 96%; margin: 0 auto; }Forum: Themes and Templates
In reply to: Hide Footer w/Child ThemeWhich file in your child theme?
Should be in the style.css found through Appearance > Editor.
EDIT:
OK so thats good!
In what way did it “break” your siteForum: Themes and Templates
In reply to: first-child css for font-family not working in child themeTarget the specific menu item:
#menu-item-516 a { font-family: "ITCKabelStd-Medium", "Times New Roman", Georgia, serif; }Forum: Themes and Templates
In reply to: Center header imageCan you go ahead and activate it so we can see the code it produces?
Forum: Themes and Templates
In reply to: TwentyTwelve-child suppress header & menuAnything between /* <–These Two Marks –> */ is commented out.
You also need to activate your child-theme and add this to the style.css once it is activated./* =Theme customization starts here———————————— */
@media print { body{ background-color:#FFFFFF; background-image:none; color:#000000 } #masthead{ display:none;} .site-content{ width:100%;} }Forum: Themes and Templates
In reply to: [Liquorice] Change Liquorice Post BackgroundI tried it on the Style sheet (is it OK to do that?)
Any edits to the stylesheet will be erased if you update the theme.
Change it to this, the padding is so there is a little space between the edge and the text.
.hentry { background: #fff; padding: 8px; }Forum: Themes and Templates
In reply to: [Theme:Bresponzive] Hundreds of thousands of 404 errorsThe @x2.png is a call to a Retina display image file, its basically an image you would place that is twice the resolution for Retina displays.
My guess is you have visitors with Retina displays asking for the @x2 image and not finding it cause it’s not there.
And I think the public_html/2014 is maybe the server looking at alternate directories to find the image. The default image upload engine in WP defaults to a date organized structure. I think its year/month/day.
Forum: Themes and Templates
In reply to: [Liquorice] Change Liquorice Post BackgroundI would recommend Simple Custom CSS. After installing and activating you will go to Appearance > Custom CSS.