CombatPost
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Reduce Header Height in Twenty Ten ThemeIt’s 200px in height on my browser, obviously the image is now 181px height, but you have to take into account margins in the CSS.
Forum: Fixing WordPress
In reply to: Reduce Header Height in Twenty Ten ThemeIt’s because the image in your header is 329px in height.
Forum: Fixing WordPress
In reply to: Dropcap CSS helpI used
first-child:first-letter
so it’s just the first letter of the first paragraph not all paragraphs.Code would be like this if anyone finds it useful.
#your-content-wrapper p:first-child:first-letter { float:left; font-size:4em; color: #000099; margin-right:0.10em; line-height:90%; }
Forum: Fixing WordPress
In reply to: Dropcap CSS helpHi martcol,
I figured it out.
#content-area p:first-letter { font-size:350%; margin:11px 0 -5px 0; padding:0 .1em 0 0; height:.7em; line-height:.85em; float:left; color:#333; *line-height:1em; /* IE7 Only */ }
That works. Thanks for the link.
Forum: Fixing WordPress
In reply to: Dropcap CSS helpThat does, but that is for every P, not just the content-area?
Forum: Fixing WordPress
In reply to: Exclude certain tags?Thanks for the links, Unfortunately I have tried the solutions and none seem to work for me.
Forum: Fixing WordPress
In reply to: Google rankingPut Longford Hair in the websites title.
Forum: Fixing WordPress
In reply to: Insert logo and the flags in menu barYou would need to go into the CSS of the plugin to do that, and would also have to add another set of <div> tags around the plugin to display it inside the menu.
The same with the logo but only in the themes CSS, although the logo looks much too big to go into the menu.
Forum: Fixing WordPress
In reply to: Slides on homepage slow to loadLoaded perfectly fine for me I have to say. Images aren’t particularly big either.
Forum: Fixing WordPress
In reply to: Slides on homepage slow to loadDo you mean load slow as in slow to show up? or slow to change between images?
Forum: Fixing WordPress
In reply to: Exclude certain tags?They are currently displayed by
the_tags
Forum: Fixing WordPress
In reply to: Exclude certain tags?Thanks for the reply, most do not have an option to exclude tags from what I can see. I have the code to display the tags how I want, I just need to know how to exclude certain ones.
Forum: Fixing WordPress
In reply to: Change Bitter Font, Twenty ThirteenThe link for the bitter font should in the header file. Then you go into the style file and change it there too.
Forum: Fixing WordPress
In reply to: Breadcrumbs helpI should mention in the file it is displayed by the following code:
<div class="breadcrumb"> <?php echo dimox_breadcrumbs(); ?> </div><!--breadcrumb-->
Forum: Fixing WordPress
In reply to: Sidebar under content!Arghhhhh damn you missing closing div tag! Found it. Thanks to all who tried to help.