wp-21
Forum Replies Created
-
Forum: Themes and Templates
In reply to: linking social media icons in header and sidebar – 2012Hi, you can create widgets and place the code of those widgets in your header and footer files of your child theme.
Forum: Themes and Templates
In reply to: How to remove inner style from wp_nav_menu?Hi, i noticed inline margin being attached to other elements also besides navigation.
I think the margin is being attached to every element due to a jquery code somewhere
You can use!importantto override margin but its not ideal solution.
You need to find that code due to which inline margin is being generated.Forum: Themes and Templates
In reply to: Image is not being centered in the postsSorry the upper line code is this one :
#content .post img, #content .page img { border: 1px solid #F8F8F8; margin: 0 10px 10px 0; max-width: 100%; padding: 0; }Forum: Themes and Templates
In reply to: Image is not being centered in the postsHi there seems to be a css issue.
These margin settings around line 15 of your style.css file:.single .post_content h2.entry_title { font-size: 3.2em; line-height: 42px; margin-top: 80px; text-transform: capitalize; }seems to be overriding these:
img.centered, .aligncenter { display: block; margin: 0 auto 10px; }disable the upper one and you should be good to go.And remember to do all the changes in the child theme style.css file and not directly in the parent theme style.css.
Forum: Themes and Templates
In reply to: How to add page to footer in twenty twelve theme ?Your question is not clear.,Did you meant link of the page…?
You can do that by adding Custom menu to the footerForum: Themes and Templates
In reply to: How do I adjust the header height of a blog?Hi, i get that you are talking about the post title currently on your site which is messed up.
You just have to increase the line-height for the title in your css file.
Currently at line 248 of your style.css file.Change the line to below, in your child theme style.css file.Pls make the changes in the child theme style.css file only and not directly into the parent thmeme style.css file.single .post_content h2.entry_title { font-size: 3.2em; line-height: 42px; margin-top: 80px; text-transform: capitalize; }Forum: Themes and Templates
In reply to: How to remove inner style from wp_nav_menu?If you could post the link to your site that would be helpful for offering any advice…thx
Forum: Themes and Templates
In reply to: Crazy thing happening with Menus & CSS Classesmaybe if we are able to see live site then we will be able to help more ….its seems a simple css issue
Forum: Themes and Templates
In reply to: [Customizr] Slider problem – image height cut offHi, about which image are you talking about…?
Forum: Themes and Templates
In reply to: Remove Author name from diginews theme.Hi, it can be done through css.
In your child theme style.css file you need to put this:span.byline{ display:none }.bylineis the css class currently attached with author name.
So you are basically hiding it with your css.Forum: Themes and Templates
In reply to: Jetpack Subscribe Form: Editing CSSHi, not possible to offer help without seeing the site..pls post site link.
Please post the link to your site
Forum: Themes and Templates
In reply to: i need to get rid of grey boxes around picturesOh please dont’ misread my words or i should be careful while drafting them.I am completely aware that you need only put the edited lines inside the child theme style.css.
Perhaps my words are confusing am sorry for that.
But i never meant to edit the style.css you tare taking the literal meanings.
By editing line 402 i meant those are the lines that need to be changed and put into child theme style.css file.Forum: Themes and Templates
In reply to: Crazy thing happening with Menus & CSS ClassesWhy are you giving both the icons float right..?
float can be given to one icon only and the other one will stick to it.
As you have placed twitter before and facebook after and you have floated right both of them twitter icon as placed before facebook icon but floated to tight will show after the facebook icon.Forum: Themes and Templates
In reply to: i need to get rid of grey boxes around pictures@wpyogi – You did not seem to read above lines…i have said to use child theme…