befree22
Forum Replies Created
-
Forum: Themes and Templates
In reply to: display footer menu links inlineI added the closing bracket before the .archive-title class but it keeps being removed whenever I save the custom css script in WP admin. I’ve been experiencing this since yesterday.
Forum: Themes and Templates
In reply to: display footer menu links inlineI think there’s something wrong with the way the theme or even webhost updates the site. I have a header-logo.php that I added over 24 hours ago and only now is the blank/empty header space appearing at the top of the page (b4 there was no space between the social media icons and the top navigation menu).
That said, I think your css code for the footer links works (you said it works in Firefox) but I wonder when it will be recognized by the theme.
Forum: Themes and Templates
In reply to: display footer menu links inlineNothing yet. Current custom css in admin: http://pastebin.com/rXdc0zx1
Forum: Themes and Templates
In reply to: display footer menu links inlineThe site is live.
Forum: Themes and Templates
In reply to: display footer menu links inlineThe 2012 child theme I’m using has a custom css feature in Appearance > Theme Options page in WP admin. I’ve pasted all of my own css in this location. Here is the custom css in pastebin: http://pastebin.com/NdrS0dE1
Forum: Themes and Templates
In reply to: display footer menu links inlineI added the above code plus padding: 0 10px;
Still not aligning horizontally. I’m surprised that the links aren’t horizontal by default. I want to avoid messing with .php files but I may have to, huh?
FYI: I’m switching to that other theme until I’m able to work on the 2012 child theme.
Forum: Themes and Templates
In reply to: display footer menu links inlineI’ll looking into the validation errors.
Still, I tried this code but no luck yet:
#menu-footer-menu ul { list-style-type: none; text-align:center; } #menu-footer-menu li { display:inline; padding: 0 10px; }Forum: Themes and Templates
In reply to: Footer links addUnder `<div id=”footer”>
<!–footer.php–>` you can add the following:
`<div id=”left”>
<ul id=”footermenu” class=”clearfix”>
<li class=”home”><a href=”<?php echo get_settings(‘home’); ?>”>Home</a></li>
<?php wp_list_pages(‘title_li=&depth=1&exclude=10,15,21,24,28,30,43,75,84,295’); ?>
</ul>`Exclude means don’t display the page id’s for all pages except about and contact.
Forum: Fixing WordPress
In reply to: format text on pageIt works!
Forum: Fixing WordPress
In reply to: format text on pageAfter switching to .halfwidth css, all song lyrics aligned in 2 columns except for 1 “Wanna Be Free”. View webpage.
So I switched the <div class=”alignleft halfwidth”> and <div class=”alignright halfwidth”> div tags in some lyrics and Voila! It works perfectly.
Thanks so much for your dedication to WordPress WPyogi.
Forum: Fixing WordPress
In reply to: format text on pageSo the divs would be…
<div class="alignleft halfwidth"> <div class="alignright halfwidth">…correct?
FYI: The alignright w/ 48% css code works — all except 1 of the song lyrics are in 2 columns (see webpage). Maybe the div you just shared will fix the 1 song lyrics.
Forum: Fixing WordPress
In reply to: format text on pageI am fixing the page because it’ll be a 2012 child theme (I love native WordPress) so I’ll be ditching the current theme in a few days.
OK, would it be fine then if I add this code to the page…
<div class="alignleft">INSERT LYRICS HERE</div> <div class="alignright">INSERT LYRICS HERE</div>so I’ll have 2 columns for lyrics.
and in the css, add this:
.alignright { float: right; width: 48%; }Forum: Fixing WordPress
In reply to: format text on pageAnd how do I create the css for this? In other words, what code do I use in the page and what code do I add to the css to fix this problem?
I tried adding this http://www.codemiles.com/html-examples/creating-table-using-div-tag-t8639.html in the page but the lyrics appeared as paragraphs instead of lines of text.
Forum: Themes and Templates
In reply to: how to change sidebar font colorGot it. Thanks.
Forum: Themes and Templates
In reply to: align navigation images in primary menuThe spacing between the nav images worked when I added “px” to the numbers — The “rem” measurement doesn’t work. Ex.
margin: 0px;Now how to I add the divider/spacer from this site between each nav image? What css code can I insert between each nav image to display the divider?
I’m reading http://digitalraindrops.net/2010/09/menu-images/ to get some ideas, specifically
#access li { background: url(http://www.tmmcom.dreamhosters.com/wp-content/themes/twenty-plus-pro/images/divider.gif) no-repeat right center; }