dreamweaver css Owl-carousel problem

Good afternoon!

come again to ask for help on the css for Tablet and smartphone, I am desirous of a left margin in the carousel of the OWL, more am not able to attack some elements like the image below, I tried to search:

. OWL-.owl rap-outer carousel {margin left: 15px;},

but I can't change the desired margin, how? Please, ask for help. The image of children, that's where the carousel want to put a retreat to put arrows (right and left) on the carousel in chrome, as I can put it in dreamweaver does not lead to what either.

1)

css iphone4.JPG

1.2)

css iphone4-2.JPG

{(2) in chrome .owl-carousel .owl-wrapper-outer{overflow:hidden;position:relative;width:100% and "margin-left: 15px '}

css iphone4-1.JPG

2.1)

css iphone4-3.JPG

(3) in dreamweaver cm³

dreamwaver cc CSS.JPG

nothing happens

I've never used Owl-carousel.  Not familiar with it somehow. Have you tried to put some margins around the parent container?

style = "" left margin: 45px ">"

Your content

Your content

Your content

Your content

Your content

Your content

Your content

...

Tags: Dreamweaver

Similar Questions

  • my site is using dreamweaver cs4, I can copy all my and put them in dreamweaver cs6 without any problem?

    my site is using dreamweaver cs4, I can copy all my and put them in dreamweaver cs6 without any problem?

    The simplest way to use CS6 on a former site of CS4 on the same computer would be of...

    1. open CS4 and choose Site > Manage Sites

    2. Select the site and choose export

    3. This will create a your site settings .ste file (no site file is stored in this)

    4 close the CS4 and open CS6

    5 CS6 hit Site > Manage Sites > import to bring these parameters from the .ste file

    This will give you the same exact settings (FTP and otherwise) of CS4 in CS6 while using the same files the.

    If you use another computer together, you will need to make a copy of your local site on the new machine folder, and then export/import the .ste as above with an extra step possible Reassociation the local site on the new machine folder, if the structure/location of the file is not the same between machines.

  • My design dreamweaver css code is not correctly copy on my external program to send emails.

    I use a template and put the code in the program that I actually send the email through. I used a template, dreamweaver and css code is not all come through. When I receive the test e-mail in my Inbox, some parts are correct, but others are just completely false. I tried to figure out how to solve this problem, but I'm still new to dreamweaver and coding in general.

    Chances are that you try to process an html email as if it were a normal html page and left some of your css in thesection is stripped out of your e-mail client.

    It is difficult to say without seeing the code that you are handling well.

    HTML emails have a different set of rules than the normal html pages. Message from Nancy O here, explains a good part of it: HTML email & Newsletter blasts - http://alt-web.com/

  • CC of Dreamweaver may have a problem with Dreamweaver CS6 compatibility?

    I installed Dreamweaver CC on my laptop (Windows 7 OS).  I am able to build new web pages using the checkerboard to fluid.  But when I try to open previously designed web pages that have been built using Dreamweaver CS6, Dreamweaver CC breaks down.

    I was told today in the cat, by Technical Support, it was a problem of compatibility between Dreamweaver CC and Dreamweaver CS6 (for grid of fluid).  This can be confirmed?  I have no problem to return and rebuild previously designed fluid grid of web pages.  I just want to know that there is no fix/work around available?

    Problem solved.  It lacked the brace "}" involving the Media Queries page .css.  (Please see my response to Arindam_G in the Discussion 'Crash Total (CC) on the attempt of fluid to create checkerboard!').

    Thanks for the help of your group.

  • Positioning CSS or DW problem?

    I have problems with CSS positioning after spending several hours of reading and trial and error.  I'm starting to think that Dreamweaver is broken, and thoughts of reloading cross my mind.

    My desire is to have a background image "beneath" my page wrap div, essentially as a border surrounding it.  I posted this image of 'background' as relative position and therefore my wrap div page as absolute positioning.  The wrap of the page was given a background color and a line of text to allow me to 'see' where I am to get the correct positioning. I think that the background color of the page div wrap "show" but it is not. (?)

    I placed my palette, as we'll call it, with margins, while he was trying to put my envelope of page using the top, right, bottom and left through the CSS dialog box.  What are the values used, the div is in the lower left corner of the browser window and refuses to move.

    #palette {}
    background: url(images/pallete.png) no-repeat;
    Width: 1200px;
    height: 1400px.
    margin: 100px auto;
    position: relative;
    }

    #page wrap {}
    position: absolute;
    background: #C06;
    height: 1100px;
    Width: 960px;
    top: 100px;
    right:-120px;
    }

    It got so that the changes I've made to the CSS at this stage will not trigger even a refresh of the Panel styles CSS?  What gives?

    Thank you.

    I've never used "Live Code" before and could set more #page for my taste, but it's an approximate position, so to speak, I can only approximate its center within #palette.  I started thinking that I have the success, until I go to the browser view, where the #page position seems to pass.

    You try to use HTML as a word processor, and it's the absolute wrong approach (no pun intended)!

    Location of the item an absolute positioning is calculated based on the location of its nearest positioned ANCESTOR.  An "ancestor" is a container element, not an adjacent element (which would be a 'brother').  So, if you want to than your element to absolute positioning out of the location of a relatively positioned element, it must be a child (or descendant) of this relatively positioned element.  In other words, to make #page work against #palette, he must be inside #palette.

    If there are alternatives to ensure the positioning other than my current method, I would be interested to learn about it.  I'm not aware of the disadvantages mentioned with using this type of positioning, could you give some details please?

    There is an excellent alternative without using the positioning at all - it is called "best practices".   The disadvantages of using absolute positioning for all are:

    1. because the absolute position elements are removed from the flow of code on the page, they are immune to travel in other parts of page not positioned due to changes in browser window size or screen text size changes.

    2. because #1 is the case, and given that display text size changes can cause the container to change height, if this container is positioned absolutely, its text content may overlap other content to the screen.  More positioned in absolute terms of containers of text the worse this effect becomes quickly, producing a unusable, overlapping mess.

    3 in absolute position items on the screen regardless of where the items appear in the code, and as a result, it is entirely possible to have two parts of the text which are meaningful semantic when taken as a unit separated by a bit of code, or other pieces of text.  Thus, pages built with absolute positioning text containers are usually not semantically sensitive, which means that they would not succeed well when it is run by a system of assistance of the screen.

    4. in view of all these things, the pages that contain elements of balance and frequently positioned elements go wandering as width of the viewport is changed.

    As a result, the method most likely to be chosen by an inexperienced user due to its apparent simplicity is also the absolute worst possible approach to the construction of the page.

    Oh, by the way, the values of positioning below were obtained through 'slide' div = page in position.  I wouldn't rather Code Live, but taken into concrete values in the future.

    The approach of processing in action!  The only way to make the connection of concrete values is to have a provision already laid down on paper before you start.

    Tell more about how you want your page to look at (I don't know what you mean exactly on centering #page #palette 'up', but if you mean "before" then consider this -

    This is my page

    (Note that I deleted all the positioning, as well as all heights - of Villa is a bad idea to declare explicit heights on elements that contain text, once again because of possible overflow issues)

  • Hand coded CSS, Dreamweaver CSS, long hand, short hand CSS palettes?

    I am new to CSS and coding by hand am and my hand coded CSS works but I got it from a book and it was coded in hand short syntx.

    I tried to write the CSS in Dreamweaver and it dose not work... so I tried using the palettes of DW that dose also do not work.

    I think the DW dose does not have the background color and background image at the same time but hand coded thi is also not allowed why?

    / * My HTML code * /.

    < ! DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict / / IN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd" > ""

    < html >

    < head >

    < title > < / title >

    < link rel = "stylesheet" type = "text/css" href = "test.css" / >

    < / head >

    < body >

    < form id = "comment form" action = "/" >

    < fieldset >

    < label for 'name' = > name < / label >

    < input id = "name" type = "text" / >

    < / fieldset >

    < fieldset >

    < label for 'Email' = > Email < / label >

    < input id = "email" type = "text" / >

    < / fieldset >

    < fieldset >

    < label for 'comment' = > comments < / label >

    < textarea id = "Comment" rows = "10" cols = "10" > < / textarea >

    < / fieldset >

    < / make >

    < / body >

    < / html >

    / * My CSS that works * /.

    fieldset #comment-entry form,

    Comment # form textarea {} fieldset

    width: 400 PX;

    padding: 5px;

    -font size: 1.4em;

    border: none;

    background: #e2e1d7 url(img/input-bg.gif) top of horizontally to the left.

    }

    / * CSS that the dose does not work * /.

    fieldset #comment-entry form,

    Comment # form textarea {} fieldset

    Width: 400 PX;

    padding: 5px;

    font size: 1.4em;

    background-color: #e2e1d7;

    background-image: url(img/input-bg.gif);

    background-repeat: repeat-x;

    background-position: left top;

    }

    Hello

    I forgot the explanation (it's the problem with cut - paste - post).

    In the dreamweaver dialog box to select all the items, but if you start to type ahead of the dialog box displays the following selections do not appear.

    Try adjusting the delay time of code hints in your preferences.

    PZ

  • Basic Dreamweaver, CSS. Need help to start, where to start?

    Hi all

    I'm relatively new to web design and dreamweaver - I took a class for more than a year and remember some of the basics, but it must be put to the test now. My boss asked to update the company's Web site, and I need to know the best way to go about it.

    I know that the original site was created with dreamweaver - I have a .css file (which, if I remember corectly, is the file I open really with dreamweaver, right?), as well as the additional files/folders. The problem, however, is that the company's computers is not dreamweaver on it, and my laptop - which does not have the program - has no access to network drives, where the files are located.

    Can I just transfer the files from the network drive > zip drive > my laptop and then work on the site from here? If so, what file I actually would open in dreamweaver - the .css?

    If it is against the use of my own laptop good and that they are, can I update the site using an open-source program? If so, any recommendations?

    I know that these are fundamental issues, but once I started I know I'll be good to go. Thanks for any help, we appreciate it!

    As I said before, Dreamweaver is a program based on the site. The basic idea is that you create an exact copy of the live site on your local hard drive. Make the changes or to create new pages in your Dreamweaver site. When you are satisfied with the way in which the pages locally, you connect to the live server and download new or updated files up-to-date. That's all.

    If you create a new file or new file, Dreamweaver creates copies of these files and folders on the server if you select in the files Panel, and then click Put icon (which looks like an arrow pointing upwards). As long as the root of the site in your Dreamweaver site definition contains the files and folders in the same hierarchy on the online site, everything will be transferred to the right place. The root of the site is the top level of the site. Let's say that the home page of your site is http://www.example.com/index.html, index.html must be in the root of your Dreamweaver site. If you have a page at http://www.example.com/products/widgets.html, widgets.html must be in a folder called products inside your Dreamweaver site root.

    The principle works with Dreamweaver is very simple. Simply, it stores a local copy of the site. The difficult part is the design of the site and style it with CSS.

  • CSS and TaskFlow problem

    Hello

    I have problem with styling my application files using custom css and taskflow, I find these two could not work together.

    Take a look at my file feature.xml - MAF:

    MAF.jpg

    As you see it is a unique feature that is named "test" with two pages of amx, called "untitled1.amx" id "lymphocytotoxicite.1" and "untitled2.amx" with the id "test.2", each of them includes css file in resources/css/and there are named taskflow "ViewController-task - flow.xml ' with the id"test.3"they (amx and taskflow files) located in the feature file, as you can see on the tab Applications in JDeveloper.

    So lets talk about my problem, there are two situations buggy:

    1. When the workflow is listed first in the list of the contents of the feature. Navigation between the pages of result: working, but there is no style of css files.
    2. When the workflow is listed in any other place than the first. Result: style of css files is present, but the navigation doesn't work.

    I found workaround using Word to Word and insert the style custom, but it is slow and not acceptable.

    I have also deployed on several other machines:

    • Dell Precision T1700, Windows 7
    • Dell Precision T1700, Ubuntu 14.04 (mine)
    • MacBook Pro, Mac OS x 10.11

    And the result is the same.

    I also uploaded my project on gdrive.

    Thanks in advance.

    Greetings,

    Boris

    Hello

    looked at the sample and indeed the problem comes from your configuration. You have defined 3 content for a unique feature of MAF. A function can only show unique content at a time. To determine the content to show you want to use constraints for the defined for content. A usecase for this is where you want to optimize the user interface, for example when rendering on a smartphone differently than when it is rendered on a tablet. The content that is on top is content that is displayed if there is no defined constraints which would decide on the others. So if you have a task flow on top then the other views are not visible. And for the workflow you do not set the CSS to use (which explains why the page doesn't display colored). When a page is displayed at the top, then navigation is controlled by the adfc-mobile - config.xml, which, in your test case is empty so that no navigation can occur.

    Frank

  • site made with Dreamweaver and Fireworks download problems

    I created a site using Dreamweaver and Fireworks (both through creative cloud). When I'm working on files in a program, there is no problem. Even when I preview the files in a web browser, I don't see any problem. Once the site is downloaded, however, a white rectangle appears on the image that shows what page you are rather than the image that is supposed to be there. I have double and triple checked all my work files and I am not find all errors. The homepage is the only page that it doesn't have to. I deleted and re-uploaded twice to see if I may have missed something, and I still have questions. I even rebuilt files. Nothing moves. If someone could give advice, I would be very happy.

    The URL is www.victoriasurliuga.com

    Joint is a picture showing this on a single page.

    IMG_2805.JPG

    I see a number of problems.  Not least of which is the fact that there is no REAL content anywhere on this site.  It's just from the images.  Now, consider this.  Images of the text cannot be "seen" by screen readers, translators or indexed by search engines.  If people turn off images to save their mobile data plans, they see absolutely nothing on this web site.  It is very sad and a waste of valuable web real estate.

    I'll assume that you are not a professional Web Designer & Fireworks appeared to be an easy way to make your web site.  But it's a graphical application.  It is not a replacement for software like Dreamweaver or Muse of real web creation.  You have to start over.  Next time use FW for graphics only.  Use DW or MU to build your web pages and content.

    And to answer your question about the missing image.  This path points to the files on your local hard drive that you see.

    file:///users/Danielle/desktop/Surliuga%20Website/home/images/bio_r2_c4.PNG

    Nancy O.

  • Dreamweaver CS6 - SWF file problem.

    I use Dreamweaver CS6, I inserted a SWF file in my index.php located on localhost (XAMPP). When I try to preview my page (on chrome or IE, or Dreamweaver Live), it asks Flash Player 16. I installed it but still ask for it. All solutions?

    Have you tried to load a test page to your Web site? Preview Flash locally is hit or miss.... unless what I remember. If it works on your site using multiple browsers, then I think that you cannot ignore the problem of local insight.

  • The stylesheet/CSS with display problem avisports collection site

    Hi guys,.

    I (finally) managed to get a version of the management assessment and systems of working capital and also managed to publish the site "avisports" sample that comes with the Download Sites WebCenter.

    Only one problem: while the content of the site and pictures to the loading section, there is no CSS style applied to anything.

    Something to note:

    (1) I tried to repost. That didn't seem to do anything.

    (2) two CSS files are referenced in the avisports - 'all.css' and «form.css» homepage When I try to access these files directly, I get a 404 (file not found) error.


    Any ideas on what could be the cause?

    Much appreciated!

    -DeAngelo Lampkin

    Looks like the avisports sampling site expects to find these CSS in the form of static files under the Web application, they are not managed as assets within Sites and therefore are not publishable. In an installation of tomcat for example they are found under

    webapps/CS/avisports/CSS/LT7. CSS
    webapps/CS/avisports/CSS/Form.CSS
    webapps/CS/avisports/CSS/All.CSS

    There are 72 files under webapps/cs/avisports, for most of the images, css and javascript. If you copy this avisports file to an equivalent location within the webapp deployed on the instance of delivery, but then the avisports site should find them.

    Phil

  • Use of DreamWeaver CSS Desinger to?

    I subscribe CS6 cloud creative and saw the new CSS designer feature which I want to use.

    I am now confused with the Adobe product lines. As a subscriber of creative cloud Adobe said I always have access to the latest version of my products. It turns out that the new CSS designer is only available in DreamWeaver CC. I don't see anywhere how to download DreamWeaver CC or update my existing Version of CS. Not only Adobe has rectified the existing version of CS6 in the past two months two times in regards to the fluid layout and its golden grid which is very confused now they also diverted some features in the new version of CC.

    Can someone plase tell me this disorder and how can I clean.

    As a Web Designer working with delicate design, I'd love to check out all the new features.

    Thank you

    CC products will be available from next Monday. The rest is irrelevant. Reread the announcemnts correctly.

    Mylenium

  • View Dreamweaver code letter spacing problem

    Hi all

    This morning when I started DreamWeaver I saw something change.

    As you can see in the image below in mode code, the letters spacing is became really larger than normal.

    In the image below, I made a piece of code with my dreamweaver upstairs and downstairs with one of my friends.

    When I try to change the font in the Preferences menu (Verdana, for example) seems to fix the problem but when I change again on new mail the problem come back.

    What can I do?

    For me, it's really frustrating to work with this problem and I do not understand why it bothers me so much,


    Thanks for the help guyes!

    Manual.

    a.jpg

    I have never talk on a dash problem, but on a letter spacing problem I solved by applying a restoration of the system configuration.

    No one knows the reason for this problem?

  • Safari &amp; CSS rollover behavior problem

    Hello

    I have a navigation bar with working capital and active CSS (CSS3 including easing) settings that are not appear in Safari.  I suspect it has to do with the id selectors, but havn't been able to determine who is at the origin of the problem.  It works great in IE9 and FF4 and degrades well in IE8.  But for a reason, even the simple color attribute does not have the button in Safari.

    Here is a link to see what I mean: http://www.juliepoguebarnes.com/bsr

    Please help a confused Designer.  Any help is appreciated

    -Julie

    @julie

    I was litle time looking at your page and by a part of the documentation of the iOS.  There, I found the answer.

    First, let's look at this piece of CSS:

    ul.topnav li a:hover {
         display: block;
         color: #000;
         width: 100%;
         visibility: visible;
         text-decoration: none;
         height: 49px;
         -webkit-transition: background 500ms ease;
         -moz-transition: background 500ms ease;
         -o-transition: background 500ms ease;
         transition: background 500ms ease;
         -webkit-box-shadow: inset 1px 1px 1px 1px rgba(0, 0, 15, .2);
         -moz-box-shadow: inset 1px 1px 1px 1px rgba(0, 0, 15, .2);
         box-shadow: inset 1px 1px 1px 1px rgba(0, 0, 15, .2);
         background-color: #C7BBAD;
    
    }
    

    The first problem is that the transition is set when the transition occurs.  For all the webkit examples I could find, you must set the transition before the action.  So we will reduce these lines.  I also deleted some lines because they were identical to what has been defined in the normal state and they were so duplicate.

    What I ended up with was:

    ul.topnav li a:hover {
         color: #000;
         background-color: #C7BBAD;
         -webkit-box-shadow: inset 1px 1px 1px 1px rgba(0, 0, 15, .2);
         -moz-box-shadow: inset 1px 1px 1px 1px rgba(0, 0, 15, .2);
         box-shadow: inset 1px 1px 1px 1px rgba(0, 0, 15, .2);
    }
    

    Then we place the cut lines in the original statement of the link:

    ul.topnav li a{
         line-height: 3.5em;
         display:block;
         -webkit-transition: background 500ms ease;
         -moz-transition: background 500ms ease;
         -o-transition: background 500ms ease;
         transition: background 500ms ease;
    }
    

    And there you have it.  He now works in Chrome, Safari, and Firefox to my tests (on a Mac, so I don't mean to Windows/IE).

    @jpiracci

    The link you posted did not have a mention of the CSS3 transition.  Can you please send your affected link?

  • Dreamweaver css beginner

    trying to learn more about CSS in Dreamweaver.

    First thing I notice that differs by an html page, it's CSS pages started by this 'code ' -.

    @charset "utf-8";

    / * CSS document * /.

    What is the devil?

    and if I want to write some CSS, I should write before or after this code?

    And why is there no 'Design' in CSS view, as it is in HTML?

    Thank you!!

    If anyone knows any real basic simple tutorials or books that I can benefit,

    Please let me know. Thanks again!

    None of this code is required to write some CSS.

    And why is there no 'Design' in CSS view, as it is in HTML?

    Because there is nothing to display in Design view.

    CSS contains only text formatting instructions so that the browser knows how to display an HTML page.

    Without an HTML page, there is nothing to show. CSS is just a bunch of CSS rules. When a CSS page is linked to an HTML page, the HTML code comes to life (becomes pleasantly formatted) in Design view, and in browsers.

Maybe you are looking for