Hi, we only have three top menu items but need more space for each. I can't seem to find these values in the css file. Can you point me in the right direction?
Thanks
Hi, we only have three top menu items but need more space for each. I can't seem to find these values in the css file. Can you point me in the right direction?
Thanks
Hey,
can you post a link to your website please - we can give you exact instructions then :)
We need them wider...
IT seems that adding a width value to "#top .nav li " (in style.css) helps a little, but still not quite there....
Hey,
In addition to the width set in #top .nav li there is also a width property set on the .nav li a element (style.css line 90):
.nav li a {
border: medium none;
display: block;
float: left;
line-height: 18px;
outline: medium none;
padding: 6px 10px;
text-decoration: none;
width: 100px;
}
You can increase this width, or remove the width attribute for an automatic width (based on the text length) to be set. Without the width attribute, the text will appear on one line.
James
Ive tried doing the same for my website but I cannot find the above coding in my style.css. I find similar coding but i dont have that exact block of information.
Hey,
in your case the code is (style.css):
#nav li a{
display:block;
float:left;
padding:6px 10px;
width:100px;
border: none;
text-decoration: none;
line-height: 18px;
outline: none;
}
Change the width attribute as you like - i.e. set 100 to 80px...
Thanks, I'll try that today.
Sweet, in my case i just commented out the width attribute for both items and it works perfectly now.
Thanks again.
Hey,
Glad you got this resolved! Let us know if you have any other questions.
James
Actually, this issue:
http://www.kriesi.at/support/topic/how-can-i-make-the-3-images-on-the-3-boxes-columms-link-to-different-pages-url
is frustrating me to no end. Any help would be appreciated...
I posted an answer here: http://www.kriesi.at/support/topic/how-can-i-make-the-3-images-on-the-3-boxes-columms-link-to-different-pages-url
I close this thread to avoid cross posting.
This topic has been closed to new replies.