Jump to content

MediaSvcsUnlimited

Members
  • Posts

    25
  • Joined

  • Last visited

MediaSvcsUnlimited's Achievements

Member

Member (2/5)

0

Reputation

2

Community Answers

  1. Hi, on http://www.mediaservicesunlimited.com/bixler/homepage.php I'm trying to adjust the spacing on the submenu class but neither padding-top or margin-top works. if I can get some help I would really appreciate function headerInfo() { return <<<HEREDOC <header> <nav> <ul> <li><a href="#">Home</a></li> <li><a href="#">About Us</a> <ul> <li class="submenu"><a href="#">Agents</a></li> <li class="submenu"><a href="#">Locations</a></li> </ul> <li><!--end of about us menu list --> <li><a href="#">Services</a></li> <li><a href="quote.php" tabindex="4" accesskey="Q">Get A Quote</a></li> <li><a href="#">Contact</a> <ul> <li class="submenu"><a href="pay-my-bill.php">Pay My Bill</a></li> <li class="submenu"><a href="contact.php">Cotasct Us</a></li> </ul> </nav> <figure id="logo"> <img src="assets/bixlerlogo.png" width="304" height="88" alt=""/> </figure> <h3>Service Beyond The Contract </h3> </header> HEREDOC; } nav { background-color:#000000; padding-top:2%; width:40%; height:27px; margin-top:2%; margin-left:auto; margin-right:auto; padding-left:3%; } nav a { color:red; } nav ul { list-style-type:none; } nav > ul > li { } nav > ul li a { background-color:#000000; } nav li { float:left; margin-right:3%; } nav > ul > li > ul { display:none; position:absolute; } nav > ul > li:hover > ul { display:block; } nav ul ul li { display:block; width:60px; } .submenu { width:200px; } .submenu a { padding-top:2%; } .submenu a:hover { background-color:red; color:#000000; }
  2. I don't know what changed but it's working now.
  3. Hi, can someone help me understand why the navar isn't horizontal? <!doctype html> <html> <head> <meta charset="utf-8"> <title>Bootstrap 3.3.6 Starter</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <style type="text/css"> nav { background-color:#000000; padding-top:2%; width:34%; /*height:27px;*/ margin-top:2%; margin-left:auto; margin-right:auto; padding-left:3%; } nav ul li { list-style-type:none; display:inline; width: 400px; position:relative; } nav a { background-color:#000000; display:block; text-decoration:none; color:red; } nav ul ul { /*submenus under nav */ display:none; } nav li:hover .submenu { display:block; } </style> </head> <body> <nav> <ul> <li><a href="#">Home</a></li> <li><a href="#">About Us</a> <ul class="submenu"> <li><a href="#">Agents</a></li> <li><a href="#">Locations</a></li> </ul> </li><!--end of about us menu list --> <li><a href="#">Services</a></li> <li><a href="quote.php" tabindex="4" accesskey="Q">Get A Quote</a></li> <li><a href="contact.php" tabindex="5" accesskey="C">Contact</a></li> </ul> </nav> </body> </html>
  4. I don't understand this, but PHP wanted return <<<HEREDOC not echo <<<HEREDOC
  5. I added these two lines and still getting a blank page. ini_set('display_errors', 1); error_reporting(E_ALL);
  6. First, I am so sorry. That was a very stupid mistake on my end. I corrected that and now I'm getting a blank page.
  7. I think I see what you mean, but I'm still getting a call to undefined function headerInfo() function headerInfo() { <<<HEREDOC <header> <nav> <ul> <li><a href="#">Home</a></li> <li><a href="#">About Us</a> <ul> <li><a href="#">Agents</a></li> <li><a href="#">Locations</a></li> </ul> <li><!--end of about us menu list --> <li><a href="#">Services</a></li> <li><a href="services.php" tabindex="3" accesskey="S">Services</a></li> <li><a href="quote.php" tabindex="4" accesskey="Q">Get A Quote</a></li> <li><a href="contact.php" tabindex="5" accesskey="C">Contact</a></li> </ul> </nav> <figure id="logo"> <img src="assets/bixlerlogo.png" width="304" height="88" alt=""/> </figure> <h3>Service Beyond The Contract </h3> </header> HEREDOC; }
  8. Hi, when you have a call to undefined function error, that usually means either you misspelled the function name or the function file isn't attached to the page, right? Can someone help me understand why I'm getting that error? The function names are spelled the same and the function file is attached so I'm not understanding what 's wrong. <php require_once('functions.php'); ?> <!doctype html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Untitled Document</title> <meta name="keywords" content=""> <meta name="description" content=""> <link rel = "stylesheet" href = "Bixler.css"> <style type="text/css"> </style> </head> <body> <?php headerInfo();?> <article> </article> <aside> </aside> <footer> <div id="contactInfo"> Bixler Insurance <br/> 1043 South 13th St. <br /> Decatur, IN 46733<br /> Phone: (260)-724-3438 </div> <div id="eocialMedia"> social media icons </div> <div id="servicesList"> list of services </div> </footer> </body> </html> <?php function headerInfo() { <<<HEREDOC <header> <nav> <ul> <li><a href="#">Home</a></li> <li><a href="#">About Us</a> <ul> <li><a href="#">Agents</a></li> <li><a href="#">Locations</a></li> </ul> <li><!--end of about us menu list --> <li><a href="#">Services</a></li> <li><a href="services.php" tabindex="3" accesskey="S">Services</a></li> <li><a href="quote.php" tabindex="4" accesskey="Q">Get A Quote</a></li> <li><a href="contact.php" tabindex="5" accesskey="C">Contact</a></li> </ul> </nav> <figure id="logo"> <img src="assets/bixlerlogo.png" width="304" height="88" alt=""/> </figure> <h3>Service Beyond The Contract </h3> </header> HEREDOC; /*end of headerInfo function */ /*start of footerInfo function */ function footerInfo() { <<<HEREDOC <footer> <div id="contactInfo"> Bixler Insurance <br/> 1043 South 13th St. <br /> Decatur, IN 46733<br /> Phone: (260)-724-3438 </div> <div id="eocialMedia"> social media icons </div> <div id="servicesList"> list of services </div> </footer> } HEREDOC; /*end of footerInfo function */ ?>
  9. ah I see the problem now! Thanks so much for the help
  10. Hi, I'm trying to do a dropdown menu with CSS. The dropdown menu appears whether the mouse is over the menu or not. if someone could help me figure out what 's wrong, I would really appreciate it. z<php require_once('functions.php'); ?> <!doctype html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Untitled Document</title> <meta name="keywords" content=""> <meta name="description" content=""> <link rel = "stylesheet" href = "Bixler.css"> <style type="text/css"> nav { padding-top:2%; width:30%; height:27px; margin-left:auto; margin-right:auto; } nav ul { list-style-type:none; } nav > ul li a { padding:50px; } nav li { float:left; } nav > ul > li > ul { display:none; position:absolute; } nav > ul > li:hover > ul { display:block; } #logo { width:304px; margin-left:auto; margin-right:auto; } h3 { color:red; text-align:center; } #contactInfo { float:left; } #servicesList, #eocialMedia { float:right; width: 33%; } article { float:left; width:35%; height:45%; margin-left:10%; background-color:#FFFFFF; } aside { float:right; width:30%; height:35%; margin-right:10%; background-color:#FFFFFF; } footer { background-color:#000000; overflow:auto; color:#C4C4C4; clear:both; } </style> </head> <body> <header> <nav> <ul> <li><a href="#">Home</a></li> <li><a href="#">About Us</a></li> <ul> <li><a href="#">Agents</a></li> <li><a href="#">Locations</a></li> </ul> <li><a href="#">Services</a></li> <li><a href="services.php" tabindex="3" accesskey="S">Services</a></li> <li><a href="quote.php" tabindex="4" accesskey="Q">Get A Quote</a></li> <li><a href="contact.php" tabindex="5" accesskey="C">Contact</a></li> </ul> </nav> <figure id="logo"> <img src="assets/bixlerlogo.png" width="304" height="88" alt=""/> </figure> <h3>Service Beyond The Contract </h3> </header> <article> </article> <aside> </aside> <footer> <div id="contactInfo"> Bixler Insurance <br/> 1043 South 13th St. <br /> Decatur, IN 46733<br /> Phone: (260)-724-3438 </div> <div id="eocialMedia"> social media icons </div> <div id="servicesList"> list of services </div> </footer> </body> </html>
  11. Hi, can someone help me understand how to get the marketing and website portfolio headings to be the same on http://mediaservicesunlimited.com/test/portfolio.html <!doctype html> <html> <head> <meta charset="utf-8"> <title>Untitled Document</title> <style type="text/css"> .samples { background-color: #419DAF; width: 160PX; height: 150px; float:left; margin-left:8%; margin-right:2%; } #marketingPortfolio { margin-right:5%; } #websitePortfolio { margin-top:0px; margin-left:30%; } .portfolioHeading { font-family:'satisfy', cursive; color: #419DAF; margin-left:5%; } </style> </head> <body> <div id = "marketingPortfolio"> <h3 class="portfolioHeading">Marketing Portfolio </h3> <div class ="samples"> <h5>Press Release Sample </h5> <a href="../ssets/Benefit_Dinner_Press_Release.jpg"> <img height="150" width="150" src="../assets/Benefit_Dinner_Press_Release.jpg"></a><p class="description">This press release announced Helping Hands annual benefit dinner. </p> </div> <div class ="samples"> <h5>Marketing Material Sample </h5><A HREF=" ../asets/murder_mystery_invite.jpg"> <IMG HEIGHT="150" WIDTH="150" SRC="../assets/murder_mystery_invite.jpg" ></A><p class="description">The design of this invitation was created using Adobe InDesign. Click on the image to see the front and back of the invitation. </p> </div> </div> <div id="websitePortfolio"> <h3 class="portfolioHeading">Website Portfolio </h3> <div class ="samples"> </div> <div class ="samples"> </div> </div> </body> </html>
  12. Hi, floating elements has always been a struggle for me and I can't figure out how to align the portfolio samples horizontally on http://mediaservicesunlimited.com/marketing-services.php. Can I please get some help? <?php require_once('functions.php'); ?> <!doctype html> <html> <head> <meta charset="utf-8"> <title>marketing services for small businesses </title> <link href="MSU.css" rel="stylesheet" type="text/css"> <link href='https://fonts.googleapis.com/css?family=Satisfy' rel='stylesheet' type='text/css'> <style type="text/css"> article { width: 80%; background-color: #FFFFFF; margin-left: auto; margin-right: auto; padding: 2%; } #mainContent { background-color:#284a50; width:100%; padding-top:2%; padding-bottom:2%; } h3 { color:#284a50; } .portfolioHeading { font-family:'satisfy', cursive; color: #419DAF; margin-left:5%; } .samples { background-color: #419DAF; width: 150PX; height: 150px; /* float:left; margin-right:5%; */ } .samples:hover { top: 0px; bottom: 0px; } .samples p { visibility:hidden; } .samples:hover p { visibility:visible; } h5 { margin-bottom:0%; margin-top:0%; color:#FFFFFF; } .portfolioSamples { /* margin-left:10%; */ } footer { clear:both; } #marketingPortfolio { float:left; } #websitePortfolio { /* float:right;*/ } </style> </head> <body> <?php logoMenu();?> <div id="mainContent"> <article> <h3> Quality Marketing Services </h3> Running an organization, of any size is rough, but it's especially hard for small businesses and non-for-profits. As the leader, you wear so many hats! You are the salesperson, producer of the product, and sometimes you have to do all the marketing work as well. Wouldn't it be nice if you could hand off the marketing tasks to someone else, without having to do them and/or hiring a full-time marketing staff? <br /><br />Well, fortunately there is! Media Services Unlimited is a full-service marketing and creative company specifically geared towards small businesses and non-for-profits. We handle all the marketing tasks, so you can focus on producing high-qualiy products, pleasing your consumers, and growing your organization! </article> </div> <div id="marketingPortfolio"> <h3 class="portfolioHeading">Marketing Portfolio </h3> <div class="portfolioSamples"> <article class="samples" style="float:left; margin-left:10%;" > <h5>Marketing Material Sample </h5><A HREF="assets/murder_mystery_invite.jpg"> <IMG HEIGHT="150" WIDTH="150" SRC="assets/murder_mystery_invite.jpg"></A><p class="description">The design of this invitation was created using Adobe InDesign. Click on the image to see the front and back of the invitation. </p> </article> <article class="samples" style="float:left"; > <h5>Press Release Sample </h5> <a href="assets/Benefit_Dinner_Press_Release.jpg"> <img height="150" width="150" src="assets/Benefit_Dinner_Press_Release.jpg"></a><p class="description">This press release announced Helping Hands annual benefit dinner. </p> </article> </div> </div> <div id="websitePortfolio"> <h3 class="portfolioHeading">Website Portfolio </h3> <div class="portfolioSamples"> <article class="samples" style="float:right"; > <a href="assets/Helping_Hands_Website_Screenshots.jpg"><img height="150" width="150" src="assets/Helping_Hands_Website_Screenshots.jpg"></a> </article> </div> <article class="samples" style="float:right";> <a href="assets/auntievics.jpg"><img height="150" width="150" src="assets/auntievics.jpg"></a> <span><a href="auntievics.com" target="_blank">Auntie Vics</a></span> </article> </div> <?php footer();?> </body> </html>
  13. Can someone help me figure out why the green background that the word portfolio is in, isn't extending past the portfolio examples on http://mediaservicesunlimited.com/homeTest.php <?php require_once('functions.php'); ?> <!doctype html> <html> <head> <meta charset="utf-8"> <title>Marketing services for small businesses</title> <meta name="keywords" content="marketing activities, social media management, video editing "> <meta name="description" content="Media Services Unlimited is a marketing agency that focuses on assisting small businesses and nonprofits with their marketing activities. "> <link href='https://fonts.googleapis.com/css?family=Satisfy' rel='stylesheet' type='text/css'> <script type="text/javascript" src="http://www.linkbuildingservices4sites.com/resources/slide-show.js"></script> <link rel = "stylesheet" href = "MSU.css"> <!--[if It IE 9]> <script src="http://html5shiv.googlecode-.com/svn/trunk/html5.js"> </script> <![endif]--> <style type="text/css"> .front { padding-top:1%; width:7%; margin-left:auto; margin-right:auto; } #intro { width: 100%; background-color:#04AC8F;/*6AA076;#73A57F;*/ padding-bottom: 2%; } h1 { color: #FFFFFF; font-family: 'satisfy', cursive; font-style: normal; font-weight: 400; font-size: 2em; text-shadow: 0px 0px; margin-left: 4%; padding-top: 2%; } #portfolio { width:100%; background-color:#295A55; } #testimonyHeading { color:#2296A7; font-family: 'satisfy', cursive; margin-left:5%; } #portfolioHeading { color:#FFFFFF; font-family: 'satisfy', cursive; margin-left:5%; padding-top:2%; } article { width:80%; background-color:#FFFFFF; margin-left:auto; margin-right:auto; padding:2%; } .flip3D { width: 30%; height:100px; float:left; margin:10px; margin-left:auto; margin-right:auto; padding-left: 12%; } .flip3D > .front { position:absolute; transform:perspective(600px) rotateY(0deg); background-color: #FFFFFF; width:30%; height:100px; border-radius:7px; backface-visibility:hidden; transition:transform .5s linear 0s; } .flip3D > .back { position:absolute; transform: perspective(600px) rotateY(180deg); background-color:#FFFFFF; width:30%; height:100px; border-radius: 7px; backface-visibility: hidden; transition: transform .5s linear 0s; } .flip3D:hover > .front { transform: perspective(600px) rotateY(-180deg); }.flip3D:hover > .back { transform: perspective(600px) rotateY(0deg); } #testimonies { height:6em; width:40%; margin-right:auto; margin-left:auto; text-align:center; padding-left:10%; padding-right:10%; padding-bottom:2%; padding-top:2%; background-color:#cae7eb; } li { list-style-type:circle; } #portfolio { clear:both; } #portfolioSamples { width: 100%; margin-left:auto; margin-right:auto; background-color: red; /*#295A55;*/ } .quotes { display:none; } footer { clear: both; margin-top:50px; } .skills { list-style-type:none; } </style> <link href="MSU.css" rel="stylesheet" type="text/css"> <link href="jQueryAssets/jquery.ui.core.min.css" rel="stylesheet" type="text/css"> <link href="jQueryAssets/jquery.ui.theme.min.css" rel="stylesheet" type="text/css"> <link href="jQueryAssets/jquery.ui.button.min.css" rel="stylesheet" type="text/css"> <link href="jQueryAssets/jquery.ui.tabs.min.css" rel="stylesheet" type="text/css"> <!--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.11.1.min.js" type="text/javascript"></script> <script src="jQueryAssets/jquery.ui-1.10.4.button.min.js" type="text/javascript"></script> <script src="jQueryAssets/jquery.ui-1.10.4.tabs.min.js" type="text/javascript"></script> <script>var __adobewebfontsappname__="dreamweaver"</script><script src="http://use.edgefonts.net/bad-script:n4:default;arbutus:n4:default;allan:n7:default.js" type="text/javascript"></script> <script type="text/javascript"> var slideArray = new Array() slideArray[0]= "Mindy was a great employee. She was always on-point, task driven, and greatly assisted in our sales efforts. Our business is very challenging and competitive, but Mindy helped us to overcome obstacles and succeed whenever possible. <br /> Jon Landua EarthCoolor"; slideArray[1]= "We chose Mindy because of her creativity, professionalism and ability to \"beat the clock\". We were pleased with the finished marketing projects she completed on behalf of our fundraiser!\" Wells Community Boys & Girls Club"; slideArray[2]= "Mindy did an outstanding job working with our sales team. Her hard work and intuitive approach were valuable assets in helping us achieve our sales goals.\” Kim Price EarthColor"; function textSlideShow() { var total_slides; total_slides=Math.floor(Math.random()*slideArray.length) document.getElementById('testimonies').innerHTML=slideArray[total_slides]; setTimeout("textSlideShow()",3000); } </script> </head> <body> <?php logoMenu();?> <div id="intro"> <h1>Meeting all your marketing needs. . . </h1> <article> Media Services Unlimited (MSU) was founded by Indiana entrepreneur Mindy Thomas to offer a variety of creative services to small business owners and not-for-profit organizations that cannot afford their own in-house marketing staff. Here are just some of the services offered by our company:<br> <ul> <li>Web design </li> <li>Web content management</li> <li>Search engine optimization </li> <li>Social media management</li> <li>Video editing</li> <li>Marketing material creation </li> <li>Creative writing</li> </ul> Let Media Services Unlimited handle your marketing so you can concentrate on the other important aspects of operating and growing your organization! <!--Running a business, of any size, is rough, but it's especially rough for small businesses. as an owner of a small business, you wear so many hats! You are the salesperson, the producer of the product, and sometime you have to do all the marketing work. Wouldn't it be nice if there was a way to hand the marketing tasks to someone else, and not have to hire a full-time marketing staff? Well, fortunately there is! Media Services Unlimited is a full-service marketing company specifically geared towards small businesses. We handle all the marketing tasks, so you can focus on producing high-quality products and your customers! --> </article> </div> <h2 id="testimonyHeading">Testimonies </h2> <div id="testimonies"> <script type="text/javascript" language="javascript">textSlideShow();</script></div> <div id="portfolioSamples"> <div id = "portfolio"> <h2 id="portfolioHeading"> Portfolio </h2> <div class ="flip3D"> <div class ="front"> Website Portfolio </div> <div class ="back"> <ul> <li class="skills"><a href="assets/Helping_Hands_Website_Screenshots.jpg" target="_blank">Website Design</a></li> <li class="skills">Content Management </li> <li class="skills">SEO</li> </ul> </div> <!--end of back class --> </div><!--end of flip3d--> <div class ="flip3D"> <div class ="front"> Marketing Portfolio </div> <div class ="back"> <ul> <li class="skills"><a href="assets/murder_mystery_invite.jpg" target="_blank">Marketing Material Creation</a></li> <li class="skills" >Social Media Management </li> <li class="skills">Creative Writing </li> <li class="skills">Video Editing </li> </ul> </div> <!--End of back class --> </div><!--end of portfolio div --> </div><!--end of portfolioSamples --> <?php footer(); ?> </body> </html>
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.