batharoy
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Customizing 20-12 ThemeGo into appearance themes and preview the new child theme, if it looks right activate it. We will work with the child-theme from here.
Forum: Themes and Templates
In reply to: Customizing 20-12 ThemeOK
1. Make a folder called twentytwelve-child inside your themes folder.wp-content/themes/twentytwelve-child
2. Inside the twentytwelve-child folder create a file named style.css and paste the following code into it.
/* Theme Name: Twenty Twelve Child Description: Twenty Twelve Child Theme Template: twentytwelve */ @import url("../twentytwelve/style.css"); /* =Theme customization starts here --------- */3.Copy & paste the header.php file from the twentytelve folder to the twentytwelve-child folder.
Forum: Themes and Templates
In reply to: Customizing 20-12 ThemeOK that’s the part we need to fix. You will need to create a child-theme to edit the header.php. Otherwise it will be erased if the theme is updated.
Will you need help with that?Forum: Themes and Templates
In reply to: Customizing 20-12 ThemeYour site looks a little messed up. Can you please post the content your header.php file to pastebin and put a link here for me.
Forum: Themes and Templates
In reply to: [Quark] Using webfonts via fontsquirrelSorry I assumed it was a full blown child them since you added to the header.php.
Just so you know any php. files you edit will be overwritten if the theme is updated, that’s why we always suggest a child theme for those types of edits.
Either way it looks like you need one now, I don’t think my method would work without one.Forum: Themes and Templates
In reply to: Is this theme available free?Forum: Themes and Templates
In reply to: [Customizr] Page Content Overlapping Right Side WidgetThe other code is html, wont work in a css file.
That needs to be put in the header.php file.
You will need a child-theme for editing the the header.php.
You can download it from the developers site here.Forum: Themes and Templates
In reply to: images centered in editor not on live postThe parent <div> is given 2 classes wp-caption & aligncenter.
So although the aliincenter is givenmargin: 0 auto;styling the wp-caption has a margin of 3 pix which overriding it.Setting wp-caption to
margin: 3px auto;will fix the problem.EDIT
I just realized this solution skews the alignright & alignleft settings, instead of what I posted above just remove the `margin: 3px auto; from wp-caption.Forum: Themes and Templates
In reply to: Header Not Quite Right.main-navigation is set to width:100% and padding: 0 10px.
Gives it 20px past the width of 100%.
Change the padding to 0 all around.
If you need padding to center the menu add it to the first line item.Forum: Themes and Templates
In reply to: [Quark] Using webfonts via fontsquirrelSee if this will work.
Put the included stylesheet in the fonts folder, then call it in your child css. You then shouldn’t need to add to the header.php.@import url("../quark/fonts/stylesheet.css");.item-caption { background: rgba(0, 0, 0, 0.5); }0.5 is the opacity, change to your liking.
Forum: Themes and Templates
In reply to: [Customizr] Page Content Overlapping Right Side WidgetThe parent container class has a fixed width of 1170px.
This should fix it, goes in custom css area.#mmjmenu-menu .container { max-width: 100%; }Forum: Themes and Templates
In reply to: Website Wiped out!!!Link to site?
Do you still have access to admin area?
What file did you edit?Forum: Themes and Templates
In reply to: [Twenty Fourteen] Page Width@omhasan98
You might want to try this plugin.
http://wordpress.org/plugins/fourteen-extended/@tracytimberlake
Do you still need help with your problem?Forum: Themes and Templates
In reply to: [Restaurateur] Moving Social Media IconsThe demo’s don’t show social icons, would need a link to help.