-
AuthorPosts
-
October 3rd, 2013 at 17:10 #12746shimz
Is that possible? i tried
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
-khtml-border-radius:10px;
border-radius: 10px; in cssstyles but doesn’t seem to work.
thank you for help in advance (sorry can’t share the site yet still on localhost)October 3rd, 2013 at 17:43 #12747JimHi
The following custom CSS worked for me.
#access ul li a, #access ul li a span {
border-radius: 5px;
font-family: Open Sans;
}#access a span {
border-radius: 5px;
box-shadow: 0px 3px 5px black;
display:block;
padding:6px 13px;
}obviously would need tweaking a bit.
Hope it helps
Jim…
October 3rd, 2013 at 18:02 #12751shimzTHANK YOU, JIM! that worked!!! thank you very very much, but now i have an extra border around the entire menu area…..??
October 3rd, 2013 at 18:07 #12753shimzplease ignore the last one. fixed it:) thank you again
October 3rd, 2013 at 18:16 #12754shimzbut can the same be done for social icons also? or may be there is the way to round corners everywhere with one script?
October 3rd, 2013 at 18:41 #12757JimHi
Yes you can round social icons, but it depends where you are placing them (top, side etc.) I use them placed on right side for example.
no way currently that I know of to apply using one script.
Jim…
October 3rd, 2013 at 18:48 #12759JimHi
This would be the custom CSS if you were placing the social icons at the side.
#srights, #slefts {
border: 1px solid rgba(0, 0, 0, 0);
border-radius: 10px;
display: block;
height: auto;
margin: 0;
opacity: 0.5;
padding: 5px;
position: fixed;
right: 0;
top: 40%;
transition: opacity 0.5s ease-in-out 0s;
width: 30px;
z-index: 99;
} -
AuthorPosts
The topic ‘Rounded corners in a primary menu?’ is closed to new replies.