[Solved] Printf spaces if number < 10 using only printf [duplicate]

printf(“%2d”, yournumber) will print number with 2 characters. If number is less than 2 chars long, spaces will be included before number. In case number is bigger than 2 digits, modifier has no effect and entire number will be printed. printf(“%2d”, 1); // ” 1″ printf(“%2d”, 10); // “10” printf(“%2d”, 100); // “100” 4 solved … Read more

[Solved] How do you split or seperate links in css eg. home, about us links

Not sure about your problem. But from the code you given i just added some changes. Try this. html { background-image: url(file:///C:/Users/Tom/Pictures/93af2cd5d83f6f839db98e6d5079b4f4.jpg); } h1 { color: gray; } a:visited { color: black; } a:hover { color: yellow; } a:active { color: yellow; } a { background-color:gray; filter:alpha(opacity=60); opacity:0.4; padding:0px 15px; } 8 solved How do … Read more

[Solved] how to align the image to the center? [closed]

For a start it’s hard to know what you are talking about – it’s a page full of images after all. I’m assuming you mean the ‘100 Greatest Goals’ image in the middle that’s been blown up to 10 times it’s normal size. If you change wp-content/plugins/nextgen-gallery/css/nggallery.css line 215 to the following then it centers … Read more

[Solved] How do I float this div straightly? [closed]

By align, I assume you mean float. If you look at their markup, you’ll see that they’re using Bootstrap and the alignment is handled using its in-built Grid System, for example: <div class=”row”> <div class=”col-sm-4 col-lg-4 column”></div> <div class=”col-sm-4 col-lg-4 column”></div> <div class=”col-sm-4 col-lg-4 column”></div> </div> 16 solved How do I float this div straightly? … Read more