CSS Navigation with list problem

Hello all,
I'm attempting a left side navigation bar using CSS and list
items. I'm using a change of background color for the hover state.
For some reason the hover states don't show up at all in IE6, and
on Firefox my first link ("Home") is not lined up with the other
links. The page in question is www.greenforlife.net.
Any help would be greatly appreciated.
John

CSS :hover is supported but on the a tag only which you do
have it on. To
fix your problem add an IE ( 6 and below ) only rule.
* html #leftnav a {
height: 1%;
You have some weird margining goin on there in the leftnav.
If you set the
margin and padding to 0 on your <ol> you won't need to
use negative margins
to push your links to the left.
ADD THIS...
#leftnav ol {new
margin: 0;
padding: 0;
AND ....
#leftnav li {
list-style: none;
margin-left: -25px;<-- REMOVE THIS
padding: 0;
margin: 0;
Regards,
..Trent Pastrana
www.fourlevel.com
"John Ciccolini" <[email protected]> wrote
in message
news:eh90m9$b0l$[email protected]..
> Hello all,
> I'm attempting a left side navigation bar using CSS and
list items. I'm
> using
> a change of background color for the hover state. For
some reason the
> hover
> states don't show up at all in IE6, and on Firefox my
first link ("Home")
> is
> not lined up with the other links. The page in question
is
> www.greenforlife.net.
> Any help would be greatly appreciated.
> John
>

Similar Messages

  • Why did my calendar view suddenly change? Using iOS 7.1 and I've been using this version for a few weeks with no problem with my calendar. Now the view has changed and I can't view a list mode without seeing the month too

    Why did my calendar view suddenly change in iCal? I've been using ios7 fôr a few weeks now with no problems. Suddenly, without any updates or anything, the calendar view changed and I can no longer view it as a list without having the entire month seen as well.

    Hey Gattypyle,
    Thanks for the question. You simply need to go back to Day/Week view, then tap the list-view icon once more.
    Calendar at a glance - iPhone
    http://help.apple.com/iphone/7/#/iph3d110f84
    View a list of events. In month view, tap to see a day’s events. In day view, Tap the to view a list of events.
    Thanks,
    Matt M.

  • Any Security Problems with Navigation with Short URLs?

    Hi ,
    I want to use Navigation with Short URLs for my users to access the portal. But if the users give that Short URLs to other non-users , will the URL open?
    I will give the role for the users only. Non-users will not have particular role.
    Are these Navigation with Short URLs are safe to use?
    Advise me.

    Hi,
    The iview have "EveryOne Role" and "Super Admin Role".
    The portal will not allow any "anonymous" users, because it needs atleast "EveryOne Role" for the access.
    Will this create any problem.
    I think the "EveryOne Role" is there for the user, if the iview1 assigned for role1 but still in the permissions of iview1 have the "Everyonerole" , it is allowing user to access this right?
    Then I need to remove the EveryOne Role from the permissions.
    Regards
    Kiran

  • CSS validator having a problem with shorthand line-height

    Hi,
    Suddenly noticed a CSS error with a simple CSS:
    h1 { font: 20px/100% "Times New Roman", Times, serif; }
    "Value Error : font  / is not a font-family value :  20px / 100% "Times New Roman",Times,serif "
    That's the way I've always written "font." And Dreamweaver agrees. Is there a new standard here?
    http://www.wellesley-hotel.com/test2.html
    http://jigsaw.w3.org/css-validator/validator?profile=css21&warning=0&uri=http%3A%2F%2Fwww. wellesley-hotel.com%2Ftest2.html

    With CSS Shorthand on fonts, you should express ALL attributes.
    font: style | variant | weight | size/line-height | font-family "font name", "font name", font;
    If all attributes are not required, better to use font-size, line-height and font-family.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/

  • Problem with "Input text with List of Value"

    Hi,
    I have a table where i am storing country code using "Input text with List of Value". I want a another non base table item where i would like to show the "Country Name" of the select LOV. Kindly let know a way to implement the LOV where it returns the "Country code" to base table item and "Country name" to the non base table item.
    thanks
    Sanjay

    Hi,
    I am getting lazy in chasing down the JDeveloper release by the ADF Faces component mentioned.. So I ask: Which verson of JDeveloper are you on ?
    Frank

  • CSS Menu - Dropdown list help.

    Hi guys,
    I am re-creating a website for a friend and I am currently finding coding the CSS Menu difficult.
    Here is MY version of the website:
    http://abacusmortgages.co.uk/index.html
    Here is the current version I am trying to copy:
    http://sdhmarketing.co.uk/
    Pages: Our client types and What do you need have special css menu dropdown lists which come up when you hover over the button.
    Here is the CSS code I have so far:
    #holding ul {
              margin: 0px;
              padding-left: 0px;
              list-style-type: none;
              font-family: Arial;
              font-size: 14px;
              font-weight: bolder;
              color: #506F1A;
              background-image: url(images/navbg.jpg);
              position: absolute;
              left: 0px;
              top: -3px;
    #holding ul li {
              float: left;
              width: 200px;
              margin: 0px;
              font-weight: bold;
    #holding ul li a {
              font-family: Arial;
              font-size: 11pt;
              color: #506F1A;
              text-decoration: none;
              background-color: Transparent;
              text-align: center;
              display: block;
              padding: 5px;
    #navigation {
    #holding ul li a:hover {
              color: #FFF;
              background-color: #333;
              font-weight: bolder;
              font-size: 14px;
    .menu {
    Here is the HTML I am using:
    <ul>
        <li><a href="index.html">HOME</a></li>
        <li><a href="ourclienttypes.html">OUR CLIENT TYPES</a></li>
        <li><a href="whatdoyouneed.html">WHAT DO YOU NEED?</a></li>
        <li><a href="casestudies.html">CASE STUDIES</a></li>
        <li><a href="managementteam.html">MANAGEMENT TEAM</a></li>
      </ul>
    If anyone could help it would be much appreciated.
    Thanks all!

    You, essentially, have an issue with float: left;
    Here's the deal, when you float list items left, they'll line up to the left, even though your navigation is centered.
    They have also done this website in a manner that does not line up with what the W3C considers a standard for websites, but that's another issue.
    Here's their HTML:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>wanted</title>
    <link href="wanted.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <div id="page">
    <div id="head">
      <div style="width:100%; float:left;">
        <div id="name2"></div>
        <div id="name1"></div>
      </div>
      <div id="slogan"></div>
    </div>
    <div id="top"><a class="topsel1" href = "http://sdhmarketing.co.uk/index.php">HOME</a><a class="top1" href = "http://sdhmarketing.co.uk/who.php">OUR CLIENT TYPES</a><a class="top1" href = "http://sdhmarketing.co.uk/what.php">WHAT DO YOU NEED?</a><a class="top1" href = "http://sdhmarketing.co.uk/case_studies.php">CASE STUDIES</a><a class="top1" href = "http://sdhmarketing.co.uk/team.php">MANAGEMENT TEAM</a> </div>
    <div id="maintop"></div>
    </body>
    </html>
    Now, here's the problem. They have one line with all of their navigation. So they started out with (on the same line):
    HOME OUR CLIENT TYPES WHAT DO YOU NEED? CASE STUDIES MANAGEMENT TEAM
    Then, they selected each menu item and gave it a style and a link. That's pretty bad practice, because how do you manage that? Also, how do blind people figure out it's a navigation? Also, what if you want sub-menus?
    But you like how it's pretty and I respect that.
    This is how to really do it:
    HTML:
    <div id="top">
    <ul>
              <li>HOME</li>
        <li>OUR CLIENT TYPES</li>
        <li>WHAT DO YOU NEED?</li>
        <li>CASE STUDIES</li>
              <li>MANAGEMENT TEAM</li>
    </ul> <!--ends the list -->
    </div> <!--ends top -->
    You see here, I have an Unordered List for my navigation. Because it's an unordered list, I can easily add new items, add sub-lists (drop-down menus) and really make this puppy sing. Unfortunately, when you look at this with no style, you'll see something pretty boring and it won't be horizontal. We change all of that in the style sheet.
    First, before we do anything else, we'll make everything into a link. We can change those links later on when we build the rest of our pages.
    <ul>
              <li><a href="#">HOME</a></li>
        <li><a href="#">OUR CLIENT TYPES</a></li>
        <li><a href="#">WHAT DO YOU NEED?</a></li>
        <li><a href="#">CASE STUDIES</a></li>
              <li><a href="#">MANAGEMENT TEAM</a></li>
    </ul> <!--ends the list -->
    An hash "#" is a link that simply calls the page you are on. It's a bona-fide link and it will create what you want.
    Now, we need to set up styles.
    Let's set up the list by getting rid of bullet points (the default) and give it a little padding:
    Make a new style sheet, call it how-to.css. It will be blank so we'll add a style. We will need to link to it from our HTML page, so add the following to the <head> section:
    <link href="how-to.css" rel="stylesheet" type="text/css" />
    Now, we make a blank CSS page and we call it how-to.css. Put it in the root of your defined site in Dreamweaver for now. And we'll define list objects within the div they naked top:
    #top li {
              display: inline;
              list-style-type: none;
              padding-right: 20px;
    Now, you'll see that our list is suddenly horizontal! Cool! But links are blue by default and underlined. Did we want that? No. So let's style links:
    #top a {
              float:left;
              padding: 5px 20px 2px 20px;
              font-size: 13px;
              height:23px;
              color:#506F1A;
              display: block;
              letter-spacing: -0.2px;
              font-weight: bold;
              text-decoration: none;
    Now, I'm borrowing heavily from their styles here.
    But we have to set up the #top framework and here's that (it should go before everything else in your style sheet)
    #top {
              width:990px;
              padding:0px 10px 0px 0px;
              height:35px;
              margin:0px 0 0 0;
              background-image: url("navbg.jpeg");
              background-repeat: repeat-x;
    Now, it's just about done. They used an Arial typeface and the default is Times Roman. Let's add a little more to the #top id:
    Now let's make backgrounds change when we hover and when we have one selected.
    #top a:hover {
              background-color: #444;
              color: #fff;
    And make a background behind the page you are on, with a hover:
    .selected {
              background-color:#777777;
              color:white !important;
    .selected a:hover {
              background-color: #444;
              color: #fff;
    Now you're pretty much done.
    Here is how to style the entire thing in CSS:
    #top {
              width:990px;
              padding:0px 10px 0px 0px;
              height:35px;
              margin:0px 0 0 0;
              background-image: url("navbg.jpeg");
              background-repeat: repeat-x;
              font-family: Arial, Helvetica, sans-serif;
    #top li {
              display: inline;
              list-style-type: none;
              padding-right: 20px;
    #top a {
              float:left;
              padding: 10px 20px 5px 20px;
              font-size: 13px;
              height:26px;
              color:#506F1A;
              display: block;
              letter-spacing: -0.2px;
              font-weight: bold;
              text-decoration: none;
              margin-top: -5px;
    #top a:hover {
              background-color: #444;
              color: #fff;
    .selected {
              background-color:#777777;
              color:white !important;
    .selected a:hover {
              background-color: #444;
              color: #fff;

  • How can I use my Html/CSS Navigation bar to control an Edge Stage?

    I have an HTML/CSS navigation bar set up in my EDGE created page. The Navbar is not created in edge. I would like to use these buttons to control the stage. 
    Inside the stage the main timeline has labels and stop actions every 1.5 secs to create a horizontally sliding site.
    The labels are as follows: home, work, blog, profile, and contact. I can easily use a symbol created inside edge for example:
    sym.play("home");
    and animate a 6000px width symbol across my 1000px stage in 1000px increments.
    I do not want to use a symbol inside of edge to do this because I cannot create the effect that the html/css navbar has on mouseover inside of edge.
    So I am interested in knowing if I can use this bar to control my main timeline so I don't have to sacrifice design for functionality.
    currently the link list is setup with the standard hyperlink. What code would I use to play the stage on click of the html navbar?
    Many thanks to anyone who can help with this!
    Here is the code for the navbar:
    <div id="menu"><ul class="block-menu">
                        <li><a href="/home" class="three-d">
                                  Dynamic
                                  <span class="three-d-box"><span class="front">Dynamic</span><span class="back">Artisans</span></span>
                        </a></li>
                        <li><a href="/demos" class="three-d">
                                  Work
                                  <span class="three-d-box"><span class="front">Work</span><span class="back">Work</span></span>
                        </a></li>
                        <li><a href="/deals" class="three-d">
                                  Blog
                                  <span class="three-d-box"><span class="front">Blog</span><span class="back">Blog</span></span>
                        </a></li>
                        <li><a href="/about" class="three-d">
                                  Profile
                                  <span class="three-d-box"><span class="front">Profile</span><span class="back">Profile</span></span>
                        </a></li>
            <li><a href="/about" class="three-d">
                                  Contact
                                  <span class="three-d-box"><span class="front">Contact</span><span class="back">Contact</span></span>
                        </a></li>
              </ul>
    <span class="block-menu"></span></div>
    Full HTML:
    <!DOCTYPE html>
    <html>
    <head>
              <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
              <meta http-equiv="X-UA-Compatible" content="IE=Edge"/>
              <title>Untitled</title>
    <!--Adobe Edge Runtime-->
        <script type="text/javascript" charset="utf-8" src="workapp_edgePreload.js"></script>
        <style>
            .edgeLoad-EDGE-57204389 { visibility:hidden; }
                  .block-menu {
                                  display: block;
                                  background: #000;
                        .block-menu li {
                                  display: inline-block;
                        .block-menu li a {
                                  color: #fff;
                                  display: block;
                                  text-decoration: none;
                                  font-family: 'Passion One',Arial,sans-serif;
                                  -webkit-font-smoothing: antialiased;
                                  -moz-font-smoothing: antialiased;
                                  font-smoothing: antialiased;
                                  text-transform: uppercase;
                                  overflow: visible;
                                  line-height: 20px;
                                  font-size: 24px;
                                  padding: 15px 10px;
                        /* animation domination */
                        .three-d {
                                  -webkit-perspective: 200px;
                                  -moz-perspective: 200px;
                                  perspective: 200px;
                                  -webkit-transition: all .07s linear;
                                  -moz-transition: all .07s linear;
                                  transition: all .07s linear;
                                  position: relative;
                                  .three-d:not(.active):hover {
                                            cursor: pointer;
                                  .three-d:not(.active):hover .three-d-box,
                                  .three-d:not(.active):focus .three-d-box {
                                            -moz-transform: translateZ(-25px) rotateX(90deg);
                                            -webkit-transform: translateZ(-25px) rotateX(90deg);
                                            -o-transform: translateZ(-25px) rotateX(90deg);
                                            transform: translateZ(-25px) rotateX(90deg);
                        .three-d-box {
                                  -webkit-transition: all .3s ease-out;
                                  -moz-transition: all .3s ease-out;
                                  -ms-transition: all .3s ease-out;
                                  -o-transition: all .3s ease-out;
                                  transition: all .3s ease-out;
                                  -webkit-transform: translatez(-25px);
                                  -moz-transform: translatez(-25px);
                                  -o-transform: translatez(-25px);
                                  transform: translatez(-25px);
                                  -webkit-transform-style: preserve-3d;
                                  -moz-transform-style: preserve-3d;
                                  -ms-transform-style: preserve-3d;
                                  -o-transform-style: preserve-3d;
                                  transform-style: preserve-3d;
                                  pointer-events: none;
                                  position: absolute;
                                  top: 0;
                                  left: 0;
                                  display: block;
                                  width: 100%;
                                  height: 100%;
                        .front {
                                  -webkit-transform: rotatex(0deg) translatez(25px);
                                  -moz-transform: rotatex(0deg) translatez(25px);
                                  -o-transform: rotatex(0deg) translatez(25px);
                                  transform: rotatex(0deg) translatez(25px);
                        .back {
                                  -webkit-transform: rotatex(-90deg) translatez(25px);
                                  -moz-transform: rotatex(-90deg) translatez(25px);
                                  -o-transform: rotatex(-90deg) translatez(25px);
                                  transform: rotatex(-90deg) translatez(25px);
                                  color: #FFE7C4;
                        .front, .back {
                                  display: block;
                                  width: 100%;
                                  height: 100%;
                                  position: absolute;
                                  top: 0;
                                  left: 0;
                                  background: black;
                                  padding: 15px 10px;
                                  color: white;
                                  pointer-events: none;
                                  -moz-box-sizing: border-box;
                                  box-sizing: border-box;
        </style>
    <!--Adobe Edge Runtime End-->
    </head>
    <body>
    <div id="menu"><ul class="block-menu">
                        <li><a href="/home" class="three-d">
                                  Dynamic
                                  <span class="three-d-box"><span class="front">Dynamic</span><span class="back">Artisans</span></span>
                        </a></li>
                        <li><a href="/demos" class="three-d">
                                  Work
                                  <span class="three-d-box"><span class="front">Work</span><span class="back">Work</span></span>
                        </a></li>
                        <li><a href="/deals" class="three-d">
                                  Blog
                                  <span class="three-d-box"><span class="front">Blog</span><span class="back">Blog</span></span>
                        </a></li>
                        <li><a href="/about" class="three-d">
                                  Profile
                                  <span class="three-d-box"><span class="front">Profile</span><span class="back">Profile</span></span>
                        </a></li>
            <li><a href="/about" class="three-d">
                                  Contact
                                  <span class="three-d-box"><span class="front">Contact</span><span class="back">Contact</span></span>
                        </a></li>
              </ul>
    <span class="block-menu"></span></div>
    <div  id="Stage" class="EDGE-57204389">
    </div>
    </body>
    </html>

    I've come across this from the Edge API:
    Edge.getComposition(compId)
    Anyone having trouble with this same issue should try this:
    var targetComp = AdobeEdge.getComposition('TARGETCOMPID');
       targetComp.getStage().play();
    in their trigger or event handler.
    How I got it to work:
    <li><a href="javascript:var targetComp = AdobeEdge.getComposition('EDGE-57204389');
       targetComp.getStage().play();" class="three-d">
                                  Dynamic
                                  <span class="three-d-box"><span class="front">Dynamic</span><span class="back">Artisans</span></span>
                        </a></li>

  • Website is now in centre of page, built new site using "cc" but with some problems

    Hello everyone I said I would come back with the new site, and just as well as I'm having one or two small problems, starting with!
    New Website, rollover buttons not holding colour in place when clicked
    And someone has told me that it is a great site, but the images in the box with the yellow frame dont show up unless I tilt the screen at an odd angle, I think he means the hero image! and is sounds
    like he is using a tablet
    I have built this new site using the tutorial by David Powers http://www.adobe.com/devnet/dreamweaver/articles/first_website_pt1.htm l sent to me by by Hans-Günter
    I might have made one or two mistakes when building this site, I take my hat off to you Web Designers, this has taken me a week to build you could have dune it in about two hours lol
    Please can someone have a look, and help me out with the problems that need a fix 
    Thank you so much for your time
    This was the old website
    This is the new website
    The Website Address is  http://www.lawrenceg.com
    This is the code from the Index.html page
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Home Page</title>
    <link href="styles/main.css" rel="stylesheet" type="text/css">
    <style type="text/css">
    body,td,th {
    color: #999999;
    </style>
    <!--The following script tag downloads a font from the Adobe Edge Web Fonts server for use within the web page. We recommend that you do not modify it.-->
    <script src="jQueryAssets/jquery-1.8.3.min.js" type="text/javascript"></script>
    <script>
    var __adobewebfontsappname__="dreamweaver"
    function MM_openBrWindow(theURL,winName,features) { //v2.0
      window.open(theURL,winName,features);
    </script>
    <script src="http://use.edgefonts.net/source-sans-pro:n6,n2:default.js" type="text/javascript"></script>
    <!--[if lte IE 7]>
    <script type="text/javascript" src="js/html5shiv.js"></script>
    <![endif]-->
    </head>
    <body>
    <div id="wrapper">
      <header id="top">
        <h1><img src="images/contact_page-image_47.png" width="43" height="47" alt=""/> My Studio</h1>
        <nav id="mainnav">
          <ul>
            <li><a href="index.html" class="thispage">Home </a></li>
            <li><a href="About Me.html">About Me</a></li>
            <li><a href="Studio Work.html">Studio Work</a></li>
            <li><a href="The Gallery.html">The Gallery</a></li>
            <li><a href="Contact Us.html">Contact Us</a></li>
          </ul>
        </nav>
      </header>
      <div id="hero">
        <article>
          <h2> </h2>
          <h2> Welcome  to my Studio!</h2>
          <p>My name  is Lawrence; I'm a Photographer &amp; Photographic Artist</p>
          <p>        I have  kept this website simple and to the point with no unwanted useless stuff, we  have a full navigation system for your covenants at the top so you don't have  to keep coming back to the home page each time, check us out on  <a href="#" onClick="MM_openBrWindow('https://www.facebook.com/LawrencesPhotoStudio','Facebook','location=yes,scrollbars=yes,wid th=1200,height=600')">Facebook</a> <a href="#" onClick="MM_openBrWindow('https://twitter.com/Lawrencegtraing','Twitter','location=yes,scrollbars=yes,width=1200,hei ght=600')">Twitter</a> <a href="#" onClick="MM_openBrWindow('http://www.flickr.com/photos/lawrenceg/','Flickr','location=yes,scrollbars=yes,width=1200, height=600')">Flickr</a> </p>
        </article>
      <img src="home_page-image.jpg" alt="Home page image the the studio"/>  </div>
      <article id="main">
        <h2>This site works best in internet explorer!</h2>
        <p>You can still use google chrome and firefox if you wish, this website just looks slightly better when viewing in internet explorer.</p>
        <p>If you decide to purchase any of our  prints, framed prints or canvas! </p>
        <p>Everything  comes with 30 day money back guarantee, and is sold through our secure payment  site <a href="#" onClick="MM_openBrWindow('http://lawrence-graves.artistwebsites.com/','FineArtAmerica','location=yes,scrollbars=yes, width=1000,height=600')">Fine Art America! </a></p>
        <p>      So how  can we help you, are you looking for something a bit special to hang on your  wall, maybe you have a family gathering coming up a <a href="#" onClick="MM_openBrWindow('http://weddindimages.blogspot.co.uk/','','location=yes,scrollbars=yes,width=1000,height=80 0')">wedding or an important  celebration</a> like a new addition to the family?</p>
        <p>      Maybe  you're thinking about that <a href="#" onClick="MM_openBrWindow('http://childrensphotography2013.blogspot.co.uk/','portraits','location=yes,scrollbars=yes, width=1000,height=800')">special portrait of the children</a>, to capture a  moment in time can be priceless and don't forget about your baby's first  portrait</p>
        <p>      <a href="#" onClick="MM_openBrWindow('http://petsimages2013.blogspot.co.uk/','pets','location=yes,scrollbars=yes,width=1000,heig ht=800')">What  about our pets</a> after all they are part of the family too!</p>
        <p>      Sometimes  we need a photographer to capture a very special moment, but to capture  excellence you need a photographic artist that can produce the results you're  looking for</p>
        <h2>Working with Photoshop! </h2>
        <p>Sometimes your standard photographer in not right for some assignments, and you need professional services when it comes to image editing, check out these  examples below </p>
        <p>
          <aside class="floatleft"><a href="#"><img src="images/The_art_of_alteringan_image_SMALL.jpg" alt="working in photoshop" width="200" height="140" onClick="MM_openBrWindow('images/The_art_of_alteringan_image.jpg','photoshop1','location= yes,scrollbars=yes,width=1040,height=740')"/></a></aside>
        </p>
        <p>Side by side view, take a look at this image! this was photographed on a apartment rooftop on the Island of Kos in Greece, when the sun was high at around 14:00 on a very hot day. As you can see there are some things that need changing in the image on the left, we only made one or two small changes! to turn this drad looking image into a good looking photo!</p>
        <p> </p>
        <h2>Digital Backgrounds with cover up layer</h2>
        <p>How  about a new layered digital background for that special image that needs a full makeover!</p>
        <p>
      <aside class="floatleft"><a href="#"><img src="images/pets_small1.jpg" alt="Pet Photography" width="200" height="140" onClick="MM_openBrWindow('images/pets_large1.jpg','PetPhotography','location=yes,scrollba rs=yes,width=1060,height=720')"/></a><br>
      </aside>
        </p>
        <p>Check this one out! this one was made up from one of our pet photography photo shoots we did in 2011 for one of our clients, they wanted both dogs in the same portrait but some dogs just don't want to play. So we photographed then separately at the angle we wanted, so they would fit nicely into  the new digital background! </p>
        <p> </p>
        <p>These are just some of the adjustment and improvements we can do,  you can find more examples of our editing work inside the studio work page!</p>
        <p> </p>
        <p> </p>
      </article>
      <aside id="sidebar">
        <h2>Check out our Gallery!
        </h2>
        <p>You can view  some of our work in the gallery,  love Animals then check out some of our wildlife images black and whites, portraits, and pet photography</p>
        <h2>Free reviews and tutorials!</h2>
        <p>You can find some  camera, and lens reviews, plus Photoshop and photography tutorials on  Facebook and Twitter pages </p>
        <h2>Visit our shop! </h2>
        <p>      Love   Art then check out  <a href="#" onClick="MM_openBrWindow('http://lawrence-graves.artistwebsites.com/','','location=yes,scrollbars=yes,width=1000,hei ght=600')">Fine Art America</a></p>
        <p>Every purchase  includes a money-back guarantee!</p>
        <div class="floatleft" id="figcaption"><a href="#"><img src="images/What_you_looking_at_small.jpg" alt="Birds of prey" width="200" height="136" onClick="MM_openBrWindow('images/What_you_looking_at.jpg','BirdOfPrey','location=yes,scro llbars=yes,width=1060,height=730')"/></a></div>
        <p align="left">This is just one of  many images we have for sale, you can choose from prints,  framed print or a canvas we also sell metal print, acrylic print,  greeting cards iphone and galaxy phone cases too! </p>
        <h2 align="left">Photo restoration work!</h2>
        <p align="left">We also  do some digital photo restoration work; restore them old black and whites! Remove unwanted elements from your photos and more!</p>
        <h2>New digital background sets! </h2>
        <p>      Our  Digital Background Sets will come complete with a full cover up layer, set of frames and more  </p>
        <p>Each set will come complete with a  video tutorial showing you how to use these fabulous sets  with your own  images</p>
        <p>Sets due to be launched in 2014 </p>
        <p>Or if you  prefer you can simply send us your images and let us do the work for you </p>
        <p>We  only charge a small fee for this service!</p>
        <p> </p>
      </aside>
      <footer>
        <p>&copy; Copyright 2013 my studio at lawrenceg.com</p>
      </footer>
    </div>
    </body>
    </html>

    Lawrence g photos 2010 wrote:
    New Website, rollover buttons not holding colour in place when clicked
    On each of your pages you need to add the class="thispage" to your anchor tags.
    So the 'About Me' page link looks like below:
    <li><a href="About Me.html" class="thispage">About Me</a></li>
    'The Gallery' link on the 'Gallery' page looks like this:
    <li><a href="The Gallery.html" class="thispage">The Gallery</a></li>
    Do the same for the 'Studio Work' and 'Contact Us' pages.
    Lawrence g photos 2010 wrote:
    And someone has told me that it is a great site, but the images in the box with the yellow frame dont show up unless I tilt the screen at an odd angle, I think he means the hero image! and is sounds
    like he is using a tablet
    They are all quite a subtle grey tone but the one I cannot see is on the 'About Me' page. You just need to bring the grey tone up a few stops.

  • 6110 Navigator Bug List - Nokia Fix These Please!

    Hi,
    If there are any people out there who is reading this forum and caring for it's customers we need the following bugs fixed which still exists after the 4.22 update 6 months ago.
    We are group of 6110N users who have chosen this phone over your precious brick N95 and we think we still need a decent customer care to have fixed our phones which have already been paid for.
    Thanks.
    Bug list reported by our owners:
    1- Nokia CK 7W bluetooth carkit has an echo problem where the reomte person hears their own voice and a terrible echo.
    2- No matter if used the original Nokia Sound recorder or third party software the all the recordings have a loud crack sound in the beginning.
    3-Volume +/- does not function while playing games.
    4- Dual line 32kb sim cards fail to switch to the second line and resets the phone when switched to the second line.
    5-Line 1 ringtone and Line 2 ringtone options in profiles disappear for no reason although using a dual line.
    6-Deleted numbers in Logs->Recent Calls-> missed/received/dialled logs still remain in the log list view which shows coloured arrows.
    7-Even if the sent message history is turned off the numbers which were sent messages are still shown in the log list shown with arrows.
    8- Numbers dialled/received calls list occasionally clears if phone turned off
    9- If the phone gets connected to computer over usb cable, and used once on pc suite mode and then once in the data transfer mode, then the vibration is disabled until you reboot the phone. (Settings suggest the vibration is on, but in fact it is simply turned off)
    10- On the internet bookmarks view, (accessed through the web icon) if a bookmark is deleted or moved to a different folder they are still shown in the root until the application is closed and re-opened. And if tried to open them by mistake the phone responds "it doesn' exist".
    11- Battery indicator does not refresh and stays on full power until the mobile is turned off and back on again. After the reboot the battery indicator is updated but then stays at that level until the next reboot.
    12-It's not possible to use voice dial with voice synthesis turned on.
    13- Joystick press can be used for accepting commands at all areas except for messaging. When message is ready to be sent you cannot click joystick and send message. You need to select options and send and then choose select from the menu.
    14- If a memo is set or synchronised from outlook the memo still shows on the screen even if the date has been passed.
    15- If we try to change the date of a past memo by changing both the start and end date to a future date the phone gives an odd error message that says: "Alarm time already passed" What alarm time? There's no alarm option or alarm time field in memos.
    16- The phone occasionally shuts down completely (turns itself off) without any warning for some users.
    17- when alarm is set to workdays "sunday to thursday" the date on the phone doesn't change on saturday night. On sundays it still shows saturday although the time is correct, and the alarm doesn't work till the date is reset and then everything goes normal till the next sunday when the problem happens again.
    18- While enterinh a new phone number after typing the number a phone type is selected such as telephone, mobile, work mobile etc.If selected the wrong type there is no way to change tis type unless the number is deleted and re-entered which is a hassle.
    19- If there are more than one mobile numbers assigned for a contact as "mobile" type (like mentioned above) set default option does not work.
    20- The bluetooth A2DP quality has gone worse. It is skip-happy, and degrading of audio quality is very obvious.
    21- If any mp3s have embedded images in the id3 tag, which are not quite square (e.g. 194pxls by 197pxls in one of my files), the music will play, but the phone will almost totally lock up if you try to use another application, and the album art won't show at all.
    22- Notes in the organiser on the phone cannot be synchronised with the PC via Nokia PC Suite(Outlook 2003).
    23- Music Player on the phone finds "zero" audio files when connected to Nokia Suite via USB.
    24- If a call is made while connected to a bluetooth carkit (CK 7W in my case) the latest number dialled won't appear in the logs.
    25- When navigating in the standard "Nokia Navigator" Route66 application, if the display mode with all info at the bottom (the only mode that display ETA) is set the phone normally remembers this mode between sessions. When signal is lost (typically after a tunnel), the display mode is reset back to default.
    26- If an internet connection is established via the browser and closed, the internet connection stays on constantly until the battery is very hot and voltage is drained only if the e-mail update (push e-mail) is set to "ON".
    27-The streaming mode is problematic. An H.264 video encoded in 320x240 resolution could be watched full screen in the streaming mode in the previous firmware however the phone will freeze within 1 or 2 seconds after switching from the standard window size to full screen size after 4.22 if watched during streaming.
    28- Real Player(Or music player) doesn't update the playlist unless the phone is not restarted.
    29- For some of the users some videos start with the first frame and then shows a black screen for a while and then the video plays normally. (DivX Avi files?)
    30- System startup dramatically slows up if using a HCSD memory card.
    31- Sound cracks occur in high bit rate mp3's if using an HCSD memory card.
    32- It would have been nice to rename the last default Profile "Offline" to another name such as "Flight"
    33- If a user decides to use an alternative navigation software he/she should be able to remap the dedicated navigator button to the executeable of the 3rd party software.
    34- The flash provides such an artificial colour tone to the picture which makes the picture looks almost blue in all cases.
    That's it for now. But I'm sure there will be more and we'll keep posting until we receive our firmware fixes as a part of our consumer rights.
    Regards.

    if they are unable to update all languages in a normal time gap (it is now 6 months ago they released firmware 4.22 for the first product code (actually mine and maybe a few others)), they should not offer those many versions. the huge bug with out of memory in nokia navigator with firmware 3.58 is not fixed yet for those people. really absolutely not acceptable.
    besides that, currently my phone is in a nokia service center, microphone doesnt work anymore (the one who i call just hears a very loud noise). my brother got the same phone, his one is in nokia service center since 2 weeks now, because it doesnt charge anymore as there seems to be a connection broken inside the phone).
    well that will be fun if the phone returns (approximately 4 weeks), as I guess the phones will have new IMEIs as they will send 2 new phones and not fix the problem (would cost them more). but as i got a western europe with nordics-map licence locked to the imei, the next problem will be there after I get a nokia 6110navi with another IMEI back. i get really upset with this really slow support.

  • Matrix CSS navigation

    Trying to follow this CSS tutorial. Seems really easy and is
    only using one image. But when I try it I just get a solid image.
    What am I doing wrong? How do I down load the image to use? In the
    CSS file it refers to nav_f_2.png but I have no idea where this is.
    http://superfluousbanter.org/archives/2004/05/navigation-matrix-reloaded/

    ROGM wrote:
    > It's not about what you experience. It's the effect or
    requirements for
    > others.
    Minorities you mean? I don't do minorities because that's not
    where the
    revenue is.
    When I had a slow link I often disabled images to speed
    things up.
    Most people surfing the web won't know you can or even how to
    disable
    images, certainly dont know what css or javascript is so
    disabling those
    is completely out of the question. Only geeky web developers
    do that
    kind of nonsense and that is NOT the majority of user, thank
    christ.
    Lots
    > of people put unoptimised images on their pages.
    They do I agree but you think anyone other than a web
    developer is going
    to deduce that and turn the images off....your living in
    la-la-land if
    you do. They will just go to another site, not mess around
    with the
    browser settings.
    Some people with image
    > problems turn them off but still want your message.
    What sort of problems are we talking about here? If they are
    blind then
    they won't know the images exist in the first instance so how
    can
    turning images off affect them. If they don't have a user
    agent that
    shows images get one.
    The analogy is entirely
    > inappropriate!
    It might be a little exaggerated but I don't think its
    entirely
    inappropriate. If endless options are given to people then
    its not the
    responsibility of the web-developer to entertain everybody
    and
    everything. Its impossible anyway, although some like to
    think they can
    do, which I have proven on numerous ocassions in the past
    they can't.
    Each developers has to make a judgement as to what they feel
    is
    important and what they feel is not so important to address.
    Its amazing how many of these so-called accessiblity gurus
    there are
    floating around and even more amazing when you visit their
    site......or
    sites they have built.... guess what it/they fall down on
    accessibility.
    Most of these gurus can't get regular paid work so they spend
    their time
    patting each other on the back and writting books and blog
    entries on
    web utopia. (even then they seem to disagree)
    It should be easy enough to have a placeholder for images.
    Have
    > a look at some accessibility websites!
    I'm not really interesting in accesibility sites addressing a
    minority
    entity.

  • How I can stop the combo box with list of values from fireing validations

    Hi I'm using Jdeveloper 11.1.2.3.0
    Using Hr Schema employees table
    I Display employees data in af:table
    and I make List Of values on Department_id filed to easy change the employee department
    and another one on Job_id filed
    and Imake them UI Hints as ( combo box with list of values ) in the employeesVO
    the problem is when I Select a value from department or jobs ( combo box with list of values )
    fires the entire filed validations for mandatory atributes
    Note : the af:table Property ( contedelivery) is set to (immediate )
    How I can stop the combo box with list of values from fireing validations

    check it out.,
    http://andrejusb.blogspot.in/2012/09/what-to-do-when-adf-editable-table.html

  • Is there a way to shorten the "Open With" list?

    Hi -
    This may be a question for Apple because it is a uniquely Apple Finder problem.
    Or maybe some clever 3rd party Apple developer will take this on - because this is an Apple Finder problem (hint).
    Is there a way to shorten the "Open With" list that appears when I right-click on a file?
    Heres why this is important to me.
    1- I'm seeing multiple versions of the same app on the list, like Photoshop CS5, Photoshop CS5.1, Photoshop CS 5.5.  I can't think of any reason why I would ever want to use an older version of Photoshop.  And it's not only Photoshop or even Adobe products.
    2- I see incorrect apps being suggested.  If I right click on an Illustrator file I see that TextEdit is one of the choices.  I get Photoshop as an option to open HTML files.  I see BBEdit as an option to open JPEG files.  These are bizarre associations.  Why are they even on the list?
    3- With so many irrelevant choices the possibility of selecting the wrong application increases and doing so is a waste of time and resources.  Once I accidentally selected a text editor to open a JPEG.  After about 3 minutes of RAM-sucking processing I got a huge file of jibberish text characters that was thousands of lines long.  Waste of time!
    I KNOW I'm not the only one with this question. 
    Is there anyone out there with an answer???
    Thanks,
    JL

    baltwo - thank you for the expert advice. 
    I did as you instructed and the situation is better but I don't believe it's solved. 
    I still get 3 versions of Photoshop when I right click on a PSD.  I also get Dashcode and Textwrangler - which are the oddest associations.  All together I get 25 apps responding to "Open With" on a PSD.  And this is an improvement.
    Do you think I would get even better results if I ran the same command again?
    Thanks again.
    JL

  • I own a MAC Pro 3,1 (early 2008) and am running Mavericks 10.9.3 with no problems. I would like to add an I/O card to add USB 3 functionality or ESATA functionality but am unable to find a compatible card. As such my question...can I do this and if so wha

    I own a MAC Pro 3,1 (early 2008) and am running Mavericks 10.9.3 with no problems. I would like to add an I/O card to add USB 3 functionality or ESATA functionality but am unable to find a compatible card. As such my question...can I do this and if so what is the best card?
    Thank you

    Have you looked at the previous discussions listed on the right side of this page under the heading "More Like This"?
    Also see:
    https://discussions.apple.com/thread/6282459?tstart=0

  • Help with systemd problems/reply to closed thread

    @Everyone; as the previopus topic was closed, I am opening a new one here, partly to reply to some things that was said to me in the previous thread/topic (and I do not like to leave people hanging), but mainly to try and get some help with my systemd config (that I was not able to find help with in the wiki or manpages).
    @czubek; eww, that sounds rather similiar to some other operating systems I've heard of (not just, but obviously including, windows)... For me, subjectively, that is not very attractive, as being able to have a single application do a single thing, and then mixing and matching as I personally see fit is a great thing.
    @tomegun: I can indeed see your point, but if I made direct quotes on all the things I reply too, my posts would reach biblical proportions.
    Mmm-hmm, I do indeed know of "the Arch Way"; however, the system that you expose can be of varying complexity as well, and I found that the system that was presented to me by way of Sysvinit/initscripts was a way simpler system than that presented to me by systemd.
    Indeed, and I do like that; I enjoy knowing how my system works and learning more about it; however, the truth is that reading manpages and the wiki isn't always enough. And I use the numbers instead of letters in certain places as a jest, please, do not get offended by that; if you have to, get offended by my opinions.
    Ah, I have now scanned the wiki, the manpages, and have already faced problems. While part of me is saddened by this fact (as I was hoping for a smooth transition to systemd), part of me is glad that I can at least prove that everything isn't quite as simple as some people would make it out to be. More on this later in this post, as I do need help with the problems I have faced.
    And I wouldn't say that the new and old way are equally trivial, as I immediatley faced problems with "the new way". More on this later.
    Ok, I find that if the debate is polarized, then there is nothing wrong with describing it as such. I spell what I see.
    Oh my... Ignored as a matter of principle? I would say that that is an excellent way to stagnate; by that logic, moviemakers, gamemakers etcetera should ignore any and all criticism they recieve, as the critics are not contributing.... Wouldn't that lead to a complete halt in development? Isn't criticism (so long as it is constructive, obviously) a key component of (media/software) evolution?
    Ah, I see, then I  misunderstood the current state of the install media
    "Some adjustements"... Well, I guess we'll have to see how that goes, then. Hopefully it'll be smooth.
    @Everyone; Awebb possesses stunning accuracy as far as his observations go.
    @zb3; My point exactly.
    @tomegun; I believe you to be wrong; complaining (but not whining) is the first step towards improvement, as I think that I and zb3 has shown.
    Further, your last point (where you talk about "deep understanding of Y" and whatnot) is basically saying that only devs and programmers can contribute, so zb3's observation would be correct.
    Also, making suggestions is part of constructive criticism; you can do that even if you can't code, e.g. by saying "X works badly because it makes Y crash; couldn't we replace X with something akin to Z?". This is a valid point even if you have no intricate understanding of X, Y or Z, and if it is impossible to replace X for one reason or the other, it's not hard to reply with "Replacing X is impossible because of reason Q", and then see if someone can solve reason Q etcetera.
    zb3's example is obviously helping; for one, it would allow people to know taht they can't boot with systemd in certain cases, or that installing/runing systemd can break their system. I would consider that rather important information.
    @Everyone; Now then, to see if I can (or rather, if I can get help to) shed some light on some problems I've been having.
    My transition to systemd went pretty smooth (besides the fact that I couldn't use 'systemctl' to set anything, and neither duckduckgo nor any posts in the forums could help me (the error I continously got was "Failed to issue method call: Launch helper exited with unknown return code 1") and that there are no manpages/tips on how to configure the files for "localtime" and "adjtime", which would've been good considering some syntax have changed) to about halfway through, to the point where I was supposed to start using systemd for my daemons.
    Now then, to the main problem; first, I tried running
    "systemctl enable syslog-ng.service"
    and got the following message;
    "ln -s '/usr/lib/systemd/system/syslog-ng.service' '/etc/systemd/system/syslog.service'
    ln -s '/usr/lib/systemd/system/syslog-ng.service' '/etc/systemd/system/multi-user.target.wants/syslog-ng.service'"
    Since it doesn't exclusively say that something went wrong (at least as far as I can understand), I pondered the message a bit, but moved on to try and start dbus by issuing
    "systemctl enable dbus.service",
    to which I got the reply
    "The unit files have no [Install] section. They are not meant to be enabled using systemctl."
    This I can only assume is an error message of some sort, especially seeing as it says "not meant to be enabled using systemctl", but the wiki rather explicitly states that that is what I am supposed to do.
    I dare not move on (or attempt to start other daemons) without further advice, as I fear I might break my system. Any ideas as to how to solve this would be greatly appreciated.

    tcmdvm wrote:
    The message;
    "ln -s '/usr/lib/systemd/system/syslog-ng.service' '/etc/systemd/system/syslog.service'
    ln -s '/usr/lib/systemd/system/syslog-ng.service' '/etc/systemd/system/multi-user.target.wants/syslog-ng.service'"
    indicates that running "systemctl enable syslog.service" is now enabled.
    If you try running sytemtctl enable <whatever>.service and get
    "The unit files have no [Install] section. They are not meant to be enabled using systemctl." means there is no <whatever>.service file available to enable.
    The dbus.service as far as I know is already enabled when installing systemd and doesn't require any action.
    Ah, right, systemd is chatty (I'm of the old skool; if nothing is/goes wrong, a program should keep quiet).
    Oh ok, then I should dare more on.
    ZekeSulastin wrote:To be a bit more precise, it means the service is there but it's only used as a dependency for something else; the [Install] section of the file is what tells systemctl where to link it and such.  Also, where exactly in the wiki were you told explicitly to 'systemctl enable dbus.service'?  I can easily point you to the sections in both installation guides that tell you how to set things like /etc/localtime et. al (also `man 7 archlinux`), but not the one that said to manually enable dbus.
    Ah, I see; and well, I was told right here, going from the top, to "Enable Daemons formerly listed in rc.conf [...] For a translation of the daemons from /etc/rc.conf to systemd services, see: List of Daemons and Services.", and, using the list, dbus is mentioned there, as you can see. Since I started from the top, I did not know that you didn't need to enable that service. Perhaps it could be added to the descriptions of the relevant services in the Wiki which ones are autostarted?
    ZekeSulastin wrote:Lastly, I don't think trying to continue conversations from a closed thread is a very good idea, let alone doing it in a giant undivided wall of text that makes it quite difficult to pick out much any single topic.
    Meh, I directly refer to the relevant people, they can easily see their own old posts in the previous thread, etcetera... I think te ones who have something to say will be able to find my replies to their previous statements (or so I hope). For now, as everyone can see, I quote stuff (but man might I make some huge posts if I ever post again in the future, if I quote what I reply to).
    fsckd wrote:This is not really a technical support subforum. Moving from Arch Discussion to Newbie Corner.
    Ah ok, thanks (or perhaps a cautious thanks? Moving it to "newbie corner" might, after all, be a subtle insult...).
    tomegun wrote:It is not really possible to follow your message as you don't quote what you are replying to. Moreover, as the thread was closed I think that means we should stop the discussion ;-)
    Hmm, I think it means cop-out for lack or proper arguments/responses... But ok, I'll let it slide, for now (mainly as I can't do much else).
    tomegun wrote:You are not meant to enable dbus.service as it is enabled unconditionally. To check the enabled/disabled state of your services try "systemctl list-unit-files". "static" means that you are not supposed to enabled/disable it.
    Ah ok, thank you. Now, having abandoned all hope, I'll start configuring again and see how it goes... May the void protect me. If I die, grieve not for me, but remember me in the fight against hard-to-configure applications.
    (edit/addon)
    Actually, what am I supposed to do with "hwclock"? the List of Daemons only says that I shouldn't run that in tandem with ntpd, but I'm not running ntpd, so... How do I get hwclock with systemd?
    Edited for additional question.
    Last edited by incassum (2012-11-07 08:44:42)

  • Using Spry Vertical Navigation with Templates-Need to indicate current page

    Using Spry Vertical Navigation with the Dreamweaver templates.  Using editable attributes etc., the current page mennu item does not seem to be changing.  How do you indicate the. current page.

    Persistent Page Indicator on Site Wide CSS Menus:
    http://alt-web.com/Articles/Persistent-Page-Indicator.shtml
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

Maybe you are looking for

  • Is there a way to make new bookmarks appear at the top of a menu folder instead of the bottom?

    I know of an extension that will sort bookmarks for me by reverse-date-added but then newly added bookmarks will still be added to the bottom until resorted. Since the newest bookmarks are ones that we most often use, I'm not sure why the default is

  • Looking for a new graphics card for new display

    I recently purchased a 24" LCD monitor to increase my screen real estate. I was anticipating using the DVI connection on the monitor, but found out that the connection I have on the PM G4 Dual 1GHz is an ADC connector instead. Presently I'm using it

  • How to add new user status in Solman

    Hello, I wanted to add a new user status in Solman.i have added one new user status " reopen" . but when i checed it is showing as "no status". I have also checked the table TJ30T, in this table we have 2 entry for all other user status one is in eng

  • All the planned and scheduled appointment can display in  calendar view ?

    1.I want to do some functions. For one day all the planned and scheduled appointments  were displayed in the calendar view in backoffice . Whether SAP CRM standard provided this function? If yes, How to do? 2.Could Upper issue be achieved by per org.

  • ADOBE MEDIA CORE CS6

    A statement popped up that read, " Your Adobe Media Core CS6 has stopped working." Any suggestions?