marzar00
Forum Replies Created
-
Forum: Your WordPress
In reply to: I can ride my bike with no handelbars!Link?
Forum: Your WordPress
In reply to: Jewelry SiteVery nice. I like the colour’s used very professional and clear looking
Forum: Installing WordPress
In reply to: Adding Ads above TtitlesSearch the WordPress Codex.
Forum: Installing WordPress
In reply to: Adding Ads above TtitlesTo my knowledge there isn’t a plug-in that will do this. However, If you edit your themes code you may be able to use a bit of fancy coding using the post query tags to achieve this.
Hope this helps,
MarzarForum: Themes and Templates
In reply to: User Role Template TagAh perfect, thanks Kafkaesqui. I can’t wait to get the tag in later releases.
Cheers.
Forum: Themes and Templates
In reply to: New Green ThemeSponsored Theme: A Theme where the author of the theme has got sponsorship for creating the theme. Sponsored theme usually have a few lines in the footer that link to the theme’s sponsors. These themes are NOT considered free by WordPress, as even though the user doesn’t have to pay for it, the author still gets paid by the sponsors.
Marzar
Forum: Themes and Templates
In reply to: Using the is_page() condition in comment fileAnyone?
Forum: Themes and Templates
In reply to: Sidebar and content side by sideHaha, realised the error. I had the sidebar as a class, it should be an ID!
thanks for you help though Ivovic.
Marzar
Forum: Themes and Templates
In reply to: display custom field only if value present?I have been using custom fields for a while. I place the field individually. For example I use a custom field called source to display the source of the news. There are two states. One is just text and the other is the text with a link. The code I use is:
<?php if(get_post_custom_values('source_href')) : foreach(get_post_custom_values('source_href') as $source_href) {} foreach(get_post_custom_values('source_name') as $source_name) {} ?> <div class="source"><em>Source:</em> <a href="<?php echo $source_href; ?>" target="blank"><?php echo $source_name; ?></a></div> <?php elseif(get_post_custom_values('source_name')) : foreach(get_post_custom_values('source_name') as $source_name) {} ?> <div class="source"><em>Source:</em> <?php echo $source_name; ?></div> <?php endif; ?>
Hope that helps,
Marzar
Forum: Themes and Templates
In reply to: Remove “Comments are Closed”Have a look in the comments.php file near the base for the ‘Comments are Closed’ tag. Some themes have it there, but I haven’t seen the Hi-Tech theme.
Marzar
Forum: Fixing WordPress
In reply to: add header?That depends on the template you are using. Normally it would be somewhere around the ‘header.php’ file or similar.
Marzar
Forum: Themes and Templates
In reply to: Page width using CSSOk, when I placed the credit bar in this occured. However, the credit bar is set at 100% width! Should that not restrict all other parameters?
Marzar
Forum: Themes and Templates
In reply to: Page width using CSSThanks for the help macbrink. I have made a few changes and i believe I almost have the hang of div and styling. However (there always is a however!), for some reason I get a scroll bar across the base of the page which I can’t seem to figure out how to remove. I have looked and there doesn’t appear to be anything past it.
Marzar
Forum: Themes and Templates
In reply to: Page width using CSShttps://www.marzar00.finditmax.com/test-theme/index2.php
In FireFox the credit bar is also in the wrong spot.
Forum: Themes and Templates
In reply to: “Clean” A free WordPress themeOk first thoughts when viewing on IE 7 (don’t hurt me, my FireFox is killing itself)
- Good colour scheme
- Nice side bar.
- The page however is crowded.
- Is that much room needed for the title?
Final thoughts: It is a nice theme. The page however is unbalanced. I don’t know if that is intended or not, but having a sidebar like that gives the feeling that the right hand side of the page is going to fall over.
That is just my thoughts. Please take it as constructive criticism only.
Otherwise Good work
Marzar