lhoylhoy
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Styling current_page_item in menu doesn’t workdefinitely its the css,
#menu ul li.current_page_item a
your structure should look something like the above. Notice that li is attached to .current_page_item
Forum: Themes and Templates
In reply to: Styling current_page_item in menu doesn’t workhey i’ve never tried that code before but i’m using other code givr it a try it’s much easier:
<ul> <li<?php if (is_home()){echo " class=\"current_page_item\"";}?>><a href="<?php bloginfo('url') ?>" title="Home">Home</a></li> <?php wp_list_pages('title_li='); ?> </ul>
then just style your .current_page_item
hope this helps
Forum: Themes and Templates
In reply to: Theme’s won’t display properlycoz you didn’t call your images properly,
if you called your images in your php files, you should replace
<img src="your image"/> with
<image src=”<?php bloginfo(‘template_directory’);?>/ your image”/>`if you called your images in css make sure your pointing to the correct directory hope this helps…
Forum: Themes and Templates
In reply to: Is it possible to edit template in localhost and upload ?ofcourse you can!
Forum: Themes and Templates
In reply to: Can’t Activate Installed Themeare you activating from a webhost or localhost?
Forum: Themes and Templates
In reply to: No zip file?could you post the url of the site where you downloaded it?
Forum: Themes and Templates
In reply to: Searching for a suitable themehey i have a site i offer free wordpress themes here is my site WPPORT i hope you will find something you like in there. contact me for some customization ok?
Forum: Themes and Templates
In reply to: Can I change a column to fixed width?could you post your url?
Forum: Themes and Templates
In reply to: Novice-Ho do you replace theme title<h1>"><?php bloginfo('name'); ?></h1>
i don’t think that greater than sign after double quote next to
<h1>
is necessary to appear there, is it really there? remove that.anyway, parchment theme there is an image, go to your style.css try to cut this code:
background-image: url(https://patchworkincome.com/wp-content/themes/parchment/images/logo.gif);
then paste it in a notepad in case you need to take it back. then save and run the theme.
when you’re trying to display a code you need to put backticks (usually located before 1 key) at the start and end of code.
Forum: Themes and Templates
In reply to: Novice-Ho do you replace theme titlei doubt its called properly in your theme. could you post here your header.php content. we’ll see
Forum: Themes and Templates
In reply to: Novice-Ho do you replace theme titleI see! no you don’t need to change anything in your files, just login to your dashboard then go to setting -> general then change your blog title and tagline if you wish.
Forum: Themes and Templates
In reply to: Novice-Ho do you replace theme titleuse this code to replace the current title
<?php bloginfo('name');?>
, this should show your blog title.Forum: Themes and Templates
In reply to: Cannot get logo aligned properlyok im glad it gave you idea.
Forum: Themes and Templates
In reply to: Cannot get logo aligned properlyhave you tried increasing #header’s padding? try that one
Forum: Themes and Templates
In reply to: Comments. would like to add clear after every 4 commentshave you tried fixed width div surrounding your entire comments area so it will accomodate only 4column comments?