Jump to content

Dan007007

Members
  • Posts

    35
  • Joined

  • Last visited

Posts posted by Dan007007

  1. I found this under a template file .asp.....

    <!--Owl Carousel-->
    <script src="<%=absolutePath%>jscript/slider/owl.carousel.js" type="text/javascript"></script>
    <link href="<%=absolutePath%>jscript/slider/owl.carousel.css" rel="stylesheet" type="text/css" />
    <link href="<%=absolutePath%>jscript/slider/owl.theme.css" rel="stylesheet" type="text/css" />

  2. I think this is the coding below?????

    <script type="text/javascript">
        $(document).ready(function() {
            
            var owl = $(".top_products");
            owl.owlCarousel({
                itemsCustom: [
                    [0, 1],
                    [450, 1],
                    [451, 2],
                    [650, 3],
                    [850, 4],
                    [1200, 5]
                    ],
                lazyLoad: true
            });
            
        });
    </script>

  3. it has been like this for ages, any chance you could write a code I can try?? I can get the code there at the moment, maybe you could modify it, don'y worry i know how to change back if it goes wrong.

  4. As I'm new that all looks like Japanese to me, sorry. Can i ask you to put my website on your browser and make minimise the page more and more, you will see what I mean, I'll add a picture here if it lets me. Thanks for replying though, very good of you. It looks bad on mobiles also because screens are small.

     

    search bar moving.jpg

    search bar moving bad.jpg

  5. Hi, I have no web developer i sacked him! I can do basics, one thing i can't seem to do is on my website if you make the screen you are looking at small the search bar moves out of the place it is meant to be and goes over items below but it is not very visible there, the code I have is below.

     <div class="container">
            <div class="home_search">
                <h1>Search <%=siteName%></h1>
                <form id="search_form" action="<%=absolutePath%>search" method="get">
                <input type="text" class="search_box" name="keyword" value="<%=lcase(keyword)%>" placeholder="Search item number, brand or keyword" />
                <button class="search_btn" type="submit">Search</button>
                </form>
                <div class="recent_searches">
                    <div class="recent_header">Recent Searches:</div>
                    <%
                    if not rstemp.eof then
                    do while not rstemp.eof
                    %>
                    <a href="<%=absolutePath%>search?keyword=<%=replace(rstemp("keyword")," ","+")%>"><%=makeFriendly(pcase(rstemp("keyword")))%></a>
                    <%
                    rstemp.movenext
                    loop
                    end if
                    %>
                </div>
            </div> 

×
×
  • Create New...