Yro
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Twenty Eleven add content next to posts tagsNevermind.. The file to be edited is the “content-single.php”, not the “single.php”.
Problem solved.
Thank You for the help with “spans” and “css”.
Forum: Themes and Templates
In reply to: Twenty Eleven add content next to posts tagsHey, I have another question..
What file do I edit to have the same “social share icons”, and in the same way (next to categories and permalinks) but now in the single post pages?
Forum: Themes and Templates
In reply to: Twenty Eleven add content next to posts tagsThank You so much.
Its perfect.
Im reading some css tutorials here, trying to learn it.
Thank You again dude. You’re the best.
Forum: Themes and Templates
In reply to: Twenty Eleven add content next to posts tagsoh.. ok… the code lines where duplicated. Now its fine..
I have a question yet.
How to push the share things to the right at the same line?
Forum: Themes and Templates
In reply to: Twenty Eleven add content next to posts tagsow… something is wrong..
take a look at the blog now. only 2 twiter share links and one under the other..any suggestions?
Forum: Themes and Templates
In reply to: Twenty Eleven add content next to posts tagsIll take a look now!
Youre the best dude. thanks so much.. be back soon to post my results…
Forum: Themes and Templates
In reply to: Twenty Eleven add content next to posts tagssorry, not php codes, but the divs with its codes
Forum: Themes and Templates
In reply to: Twenty Eleven add content next to posts tagsHere are the PHP codes: https://pastebin.com/e1UxATAc
And the CSS codes: https://pastebin.com/gU1KQJFe
I removed it from the blog so I can work on it. When its ok Ill publish it in my child theme.
I added the php in content.php, at the end of “<footer class=”entry-meta”>”
Please help me.
Forum: Themes and Templates
In reply to: Twenty Eleven add content next to posts tagsMy blog is on and working.
There is no <?php wp_list_categoires(); ?> in index.php.
Im working on twenty eleven with child theme.
Forum: Themes and Templates
In reply to: Twenty Eleven Author Bio BoxOk.. Now Im getting smart ??
I just figure it out and fix my problem.
If anybody has the same problem or just want to lear it, take a look at the trick:
First You have to copy the twenty eleven index.php file to your child folder.
open it and just after the “get_header(); ?>” You add this:
<div class="mynote"> <?php if (is_home()){ ?> <p>Some text here</p> <?php } ?> </div> <br>
ps.: I use the “br” because I dont know how to put some space between this note and the post block.
Now lets make the CSS edits. Open Your css (from your child folder) and do it:
/* Note from the frontpage */ .mynote { width: 550px; margin-left: 15%; background-color: #FFECB3; } .mynote p { background: #FFECB3; margin: 0px; padding: 5px 15px 10px 15px; font-weight: bold; text-align: center; }
In my case the margin-left has to be 15%, otherwise it dont get centered (cant figure out how to center the holle div).
Thats it. Have some fun…
Edit.: Take a note here. Im using the twenty eleven theme in the One-Column style.
Forum: Themes and Templates
In reply to: Twenty Eleven Author Bio BoxAnybody can help me with it?
I want an “yellow retangle” with some texts and maybe an tiny picture, centralized in the front page only.
Anybody can help me with it?
Forum: Themes and Templates
In reply to: Twenty Eleven Blank Space in Single PostThanks for Your reply but this not fix my problem, but I just figure it out.
If somebody has the same problem, here are the codes to do the job in this theme.
For the space betwen menu and posts in front page (also in single pages, but not that good):
.singular .hentry {
border-bottom: none;
padding: 1px 0 0;
position: relative;
}
.singular.page .hentry {
padding: 1px 0 0;
}And for the space between post date and post title (in single pages):
.entry-title {
padding-top: 1px;
}Edit as You wish and for your own layout to be nice.
I also need some help with another topic, about the author box. I want to have an “yellow author box” (something like and stick, just it, the text in the yellow retangle) in the front page only.
sorry about my english.
Forum: Themes and Templates
In reply to: Twenty Eleven centered Menu?Take a look at my blog to see these codes in action: https://www.intheup.net/blog
Forum: Themes and Templates
In reply to: Twenty Eleven centered Menu?Ops..
Just for sharing infos..
I figure out how to have the NavMenu centered but the text items in “ul” aligned to left (or right). Here are the codes provided by Digital Raindrops and twiked by me:
#access {
text-align: center;
}
#access ul {
display: inline-block;
*display: inline; /* For IE7 */
*zoom: 1; /* For IE7 */
vertical-align: top;
}
#access div {
margin: 0;
}
#access a {
line-height: 3.3em;
font-weight: bold;
}
#access ul ul {
text-align: left;
font-weight: bold;
}
#access ul ul a {
font-weight: bold;
}The code that makes UL aligned to the left is in bold.
Oh yeah.. The menu items, im my case, are in Bold with this code “font-weight: bold;”
See ya..
Forum: Themes and Templates
In reply to: Twenty Eleven Nav Menu Text in Bold?Nevermind.. I just figure it out. For who wants to know it, here is the peace of code to add in your child style.css:
#access a {
line-height: 3.3em;
font-weight: bold;
}
#access ul ul {
font-weight: bold;
}
#access ul ul a {
font-weight: bold;
}That will make the menu and its sub-menus be in BOLD