dezg21
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: I messed up my blog big timelol, fantastic, got there in the end.
Forum: Fixing WordPress
In reply to: I messed up my blog big time…and set your background to – background: #fff (‘url…
if your wanting a white background for your pageForum: Fixing WordPress
In reply to: I messed up my blog big timeI’m viewing your live style sheet just now, remove the <style> from above the top of body{…}
Forum: Fixing WordPress
In reply to: I messed up my blog big timewait a wee minute, your body {} should be set as, or similar:
`body {
font-size: 62.5%; /* Resets 1em to 10px */
font-family: ‘Lucida Grande’, Verdana, Arial, Sans-Serif;
background: #d5d6d7 url(‘images/kubrickbgcolor.jpg’);
color: #333;
text-align: center;
}’This is why your text is, er different! You need to declare your font size at the least.
Forum: Fixing WordPress
In reply to: I messed up my blog big timethe background to what element? going by my hunch that you’ve replaced the original image as this new one, it would suggest your trying to have it tile both along the horizontal and vertical of your page. if this is so then open your style sheet and insert the image as the background property of your #page, for example
body { background: #d5d6d7 url('images/kubrickbgcolor.jpg'); }
Forum: Fixing WordPress
In reply to: I messed up my blog big timein your <head> section you’ve placed
<style type="text/css" media="screen"> #page { background: url("https://www.599usdollars.com/wp-content/themes/default/images/kubrickbg-ltr.jpg") repeat-y top; border: none; } </style>
if you replace
kubrickbg-ltr.jpg
withkubrickbg-rtl.jpg
you will get the grey sidebar background down the left, not right-hand side. as for the image, not sure where it is supposed to be in relation to the content but you could try making it the background fixed top for your sidebar?Forum: Themes and Templates
In reply to: Static front Page issueForum: Themes and Templates
In reply to: Static front Page issueIf I’m understanding you correctly, you could try this;
<?php query_posts('showposts=n'); ?> // where n = number of posts titles you want to display <ul> <?php while (have_posts()) : the_post(); ?> <li> <a href="<?php echo get_permalink() ?>" ><?php the_title(); ?></a><br /> </li> // or <a href="<?php the_permalink() ?>"> both the same // result <?php endwhile;?> </ul>
This will display the title as an anchor to the appropriate post, when clicked, will be displayed using the single.php page without a sidebar.