fuxiadmin
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: New website not showingI’ve logged it as a ticket.
Forum: Fixing WordPress
In reply to: New website not showingThanks imh_brad, hope this is the problem, been going round the bend with it.
Forum: Themes and Templates
In reply to: Column width of blog textThanks Megan
Bit of a difficult one to explain – so I’ll have a couple of go’s.
I want to have the text in the post width limited to two thirds of the overall post width. However, I still want to use the full post width for images and tables etc.
So if you look at the BBC example there is a white space between the news text and the right hand column. This white space is used for images which are position to the right, they are not in a column of their own because they eat into the text space and force the text to wrap around them.
I guess, what I want to achieve is to limit the text width in a post but not other items such as images in my posts.
Does that make sense?
Forum: Themes and Templates
In reply to: Thumb not showing alongside titleI’m giving them a go now, but is the first time I’ve used Chrome (don’t have firefox browser).
Forum: Themes and Templates
In reply to: Thumb not showing alongside titleThanks Chip
I’ve managed to make some progress playing with the CSS (removed the white line under image), but still can’t get the title to sit next to the thumb. Can you spot a reason why in this css?
.more_stories { background: #b07973; margin: 0 7px 0 7px; padding: 1px 0 1px 0; } .more_stories .thumbl{ position: relative; width: 50px padding: 0 0 0 0; z-index: 1; } .more_stories a { position: relative; color: #fff; display: block; z-index: 2; padding: 5px 10px 0 90px; border-bottom: 1px solid #fff; height: 1%; } .more_stories a:hover { background: #f6feff; color: #297eb9; }
Thanks again
Forum: Themes and Templates
In reply to: Changing categories in menuStill looking for some help on this if anybody knows??
Forum: Themes and Templates
In reply to: Changing categories in menuChinmoy, your reply has come through empty, do you know a way of achieving this?
Forum: Themes and Templates
In reply to: Integrating second menu into single pagesI’m starting to get somewhere, have managed to get a menu running down the left side, using the following code,
<div id="fuximenu"> <ul> <li><a href="<?php echo get_option('home'); ?>/" class="on">Home</a></li> <?php wp_list_categories('orderby=name&exlude=181&title_li='); $this_category = get_category($cat); if (get_category_children($this_category->cat_ID) != "") { echo "<ul>"; wp_list_categories('orderby=id&show_count=0&title_li=&use_desc_for_title=1&child_of='.$this_category->cat_ID); echo "</ul>"; } ?> </ul> </div>
Does anybody know what to change in the code so that it targets and only shows the child categories of a specific parent category?
Forum: Themes and Templates
In reply to: Integrating second menu into single pagesThink I should re-word some of this. Does anybody know what I should change in the above menu php to target the ‘child’ and ‘grandchild’ categories, of a particular parent category?
Forum: Fixing WordPress
In reply to: incorporating div into }else{it works now, thanks
Forum: Themes and Templates
In reply to: Using a <div id with } else {This worked great, thanks.
Forum: Themes and Templates
In reply to: Body Class themingThanks
esmi, I saw another post where you showed somebody how to add category class to posts. It solved my problem, cheers.
Forum: Themes and Templates
In reply to: Styling Widgetsdoesn’t matter, it worked – thanks a lot.
Forum: Themes and Templates
In reply to: Styling WidgetsThanks for the reply, do you know where I’d put the h3?
Forum: Themes and Templates
In reply to: Changing Headers and Widget imagesI tried this and it sent my page all over the place, is there something in the head or css that I’ve posted that might have interrupted it?