ChaMChoM
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Show 3 previous posts into a single post pageyeah just add this code in ur sidebar
<?php wp_get_archives('type=postbypost&limit=3'); ?>this should post the past 3 posts .
Forum: Fixing WordPress
In reply to: Post without "read more"just edit the content code in index.php
<?php the_content('Read the rest of this entry »'); ?>change it to
<?php the_content(); ?>that should remove the readmore ,
Forum: Themes and Templates
In reply to: Editing menu barhmm i saw u removed all the menu background color .
try this one
#menu { background-color: #000000; height: 60px; margin: 0 auto; width: 940px; }Forum: Themes and Templates
In reply to: Remove the comment section for certain pagesyeah u can login into ur wp-admin and go to pages edit and if u scroll a little bit down so u can fint a section called Discussion just un-check allow comments and save 🙂
Forum: Themes and Templates
In reply to: Spacing between header and paragraphfind this code in style.css
.text-box h3 { color: #F1870D !important; font-size: 1.307em; font-weight: normal !important; margin-bottom: 17px; }and edit or remove the margin-bottom:17px;
Forum: Themes and Templates
In reply to: Enlarge the 'post' squarehmmm just find this code in ur style.css
#content { width: 608px; } #content { float: left; margin: 0; overflow: hidden; padding: 20px; width: 356px; }change it to
#content { width: 700px; /*CHANGE*/ } lessframework.css (line 185) #content { float: left; margin: 0; overflow: hidden; padding: 20px; --> width: 700px; <-- /*DELETE THIS LINE*/ }u should clean clean up ur css codes . 🙂 good luck
Forum: Themes and Templates
In reply to: Editing menu barok the problem is that the menu image have the lines ..
#menu { background: url("images/img03.gif") repeat-x scroll left top transparent; height: 60px; margin: 0 auto; width: 940px; }change it to
#menu { background-color:none repeat scroll 0 0 #000000; height: 60px; margin: 0 auto; width: 940px; }that should fix the problem .
Forum: Themes and Templates
In reply to: font-size, .hentry, and having different font sizeshmmm i saw into ur code . first thing create a new class.
/*SURE USE UR VALUE*/ .content-one p { font-size:16px; line-hight:10px; color:#; }than just add the paragraphs inside ur content-one .
<div class="content-one"> <p>YourContent TXT</p> </div><!--END CONTENT ONE-->Forum: Themes and Templates
In reply to: Social Icons in EvoLve headerok open ur css file . and change this code
div.sc_menu { height: 32px; overflow: auto; /*change auto to hidden*/ position: relative; width: 315px; z-index: 0; }like this
div.sc_menu { height: 32px; overflow: hidden; position: relative; width: 315px; z-index: 0; }Forum: Themes and Templates
In reply to: Social Icons in EvoLve headerplease give us the link to ur website or to the themme so we can see whats the problem is thx .
Forum: Themes and Templates
In reply to: Functions.php errorhmmm think the problem is that its not finding ur function.php .
Forum: Themes and Templates
In reply to: Remove Post Thumbnailsyeah i saw in the theme folder i downloaded there was a thumbnain plugin did u install it. plugin name is wp125 .
Forum: Themes and Templates
In reply to: HELP – WordPress Theme for Funny Pictures (Thumbnails etc)hmmmm ill try to find one but i dont think it will be easy to find a theme like this . but mybe in a week i have some time to create one . 🙂
Forum: Themes and Templates
In reply to: Adding themeshmmm hehehe . u if u want to install wp themes just extract the theme folder into ur wordpress–>wp-content->themes
and than login into ur wp-admin –>Appearance–>themes–>then u will see on the right Available Themes just click on active and u done
Forum: Themes and Templates
In reply to: Header image malfunctioninghmm i see ur problem . try to add the header logo in the css . dont use the html.
<img src="" alt"" />use css
.logo { height:; width:; background-image: url(image path); float:left; }i hope u understand what i mean 🙂