it look nice but it can be more professional, I think verdana is the best font font which increases readability of web pages.I wonder how did you change your banner + navigation links in your site? Could you share that piece of code pls? here is my Q & A forum : http://www.herkesuzman.com
Thanks for the suggestion... I changed the font, and I think it looks better. I also removed the backgrounds from the voting boxes for a cleaner look.
Most of the things that I have changed have been through CSS... let me know what elements you would like code for.... or you can inspect the elements with something like Firebug.
yep, it looks better now.may be bigger fonts for voting plugin should be better. For example how did you add top-right link into your banner?, And how did you move navigation links to right hand side?
For the top right link (and the top left link).. I started with a div (#Head)... this div has a background set, which is the banner image Then I add the links I want within this div: <a id="GroundiesLink" href="{link path="/"}"></a>
<a id="MSLink" href="http://www.nationalmssociety.org/" target="_blank"></a> (This is done in default.master.tpl)
Then using CSS, I make the links block elements of a certain size in a certain position:
#MSLink {
position: absolute;
top: 0px;
right: 0px;
width: 250px;
height: 80px;
display: block;
}
To move the navigation links, it is the same type of CSS:
Comments
Most of the things that I have changed have been through CSS... let me know what elements you would like code for.... or you can inspect the elements with something like Firebug.
Any more suggestions? I am no good at design : /
For example how did you add top-right link into your banner?,
And how did you move navigation links to right hand side?
I started with a div (#Head)... this div has a background set, which is the banner image
Then I add the links I want within this div:
<a id="GroundiesLink" href="{link path="/"}"></a> <a id="MSLink" href="http://www.nationalmssociety.org/" target="_blank"></a>
(This is done in default.master.tpl)
Then using CSS, I make the links block elements of a certain size in a certain position:
#MSLink { position: absolute; top: 0px; right: 0px; width: 250px; height: 80px; display: block; }
To move the navigation links, it is the same type of CSS:
div.Menu { bottom: 1px; margin: 0; max-width: 425px; padding: 0; position: absolute; right: 0; text-align: right; }