[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] CSS positioning things differently between browsers [closed]

Use position: absolute for links. Example for “May”: position: absolute; left: 220px; top: 226px; z-index: 2; text-decoration: none; font-family: helvetica; font-size: 21px; text-align: center; font-weight: bold; font-stretch: extra-condensed; line-height: 90%; Updated Else use percents instead of pixels. position: absolute; left: 31%; top: 25%; z-index: 2; text-decoration: none; font-family: helvetica; font-size: 21px; text-align: center; font-weight: bold; … Read more

[Solved] CSS trick for maximum inline image indentation [closed]

Found the answer. Took me a lot of time, and brought me to the darkest corners of CSS. And yet, I’ve emerged enlightened – and the answer is so simple…. <div id=”container” style=”width:auto”> <div id=”text”> some varying text here… </div> <div id=”img” style=”width: 10px; background: url(img.png)”> </div> And The CSS: #text { width:auto; max-width: 100%; … Read more

[Solved] trying to get an absolute positioned div to center within another relative positioned div

You need to check the height and width of the element you’re centering on and set the top and left accordingly. $(‘.labelEdit’).click( function() { var x = $(“#editDialog”).width() / 2 – $(“#editItemDialog”).outerWidth() / 2; var y = $(“#editDialog”).height() / 2 – $(“#editItemDialog”).outerHeight() / 2; $(“#editItemDialog”).css({“top”: y, “left”: x}); $(‘#editItemDialog’).show(‘slow’); }); Basically, we’re setting the top … Read more