Newbie Question: How to create a gap between header and wrapper?

Hi everyone,
My wife and I are trying to figure this one out. We have tried double clicking on the wrapper in the "All Rules" menu, adding a top margin to the wrapper in the "Box" submenu, as well as changing the positioning of the wrapper in the "Positioning" menu, but this made both the wrapper and header move down. How to I make the wrapper move down while leaving the header in place, so as to create a gap in between the two? Thansk so much!

As snake states, a link to the page would be best. Usually margin top is what you would set. So if your wrapper is below your header, you would set the margin top in the css for the wrapper to be what you want the gap to be.
Usually a wrapper or container is what is holding the whole site, but this doesn't sound the case here. So something like this in your css.
.wrapper     {
    margin-top: 25px;
You would probably add the margin-top:25px to the existing css for that page.
If you can provide a link to the page, the very helpful people would be able to solve this for you rather easily.
Jim

Similar Messages

  • How to create shared folder between mac and windows

    how to create shared folder between mac and windows

    Us ean external drive formatted FAT32 or ExFat. Both OSx and Windows can read/write to the drive and both can use the same data files as long as you have a program that can open and save these files. For example, Word running both on OSx and on Windows will be able to work with the same document on the external drive.

  • How to create database link between oracle and SQL Server

    Hello Everyone,
    Here i have Oracle Database 9i and SQL Server 2005 databases.
    I have some tables in sql server db and i want to access from Oracle.
    How to create a database link between these two servers
    Thanks,

    Thanks for Everyone,
    I was struggle with this almost 10 days....
    I created Database link from Oracle to SQL Server
    Now it is fine.........
    Here i am giving my servers configuration and proceedure how i created the db link...@
    Using Generic Connectivity (HSODBC) we can create db link between Oracle and SQL server.
    Machine (1)
    DB Version : Oracle 9.2.0.7.0
    Operating System : HP-UX Itanuim 64 11.23
    IP : 192.168.0.31
    Host : abcdbt
    Machine (2)
    Version : SQL Server 2005
    Operating System : Windows server 2003 x86
    IP : 192.168.0.175
    Host : SQLDEV1
    User/PW : sa/abc@123! (Connect to database)
    Database : SQLTEST (exsisting)
    Table : T (“ T “ is the table existing in SQLTEST database with 10 rows)
    Prerequisites in Machine (2):
    a)     Oracle 10g software
    b)     User account to access SQL Server database (sa/abc@123!)
    c)     Existing SQL Server Database (SQLTEST)
    d) Tables (testing purpose) (T)
    Steps:
    1)     Install Oracle 10.2.0.1 (Only SW,No need of database) *(Machine 2)*
    2)     Create a DSN where your windows Oracle 10g SW resides *(Machine 2)*
    Control panel >> Administrative Tools >> Data Source (ODBC) >> System DSN ADD
    You can follow this link also.....
    http://www.databasejournal.com/features/oracle/article.php/3442661/Making-a-Connection-from-Oracle-to-SQL-Server.htm
    I created DSN as
    DSN name : SQLTEST
    User : SA/abc@123! (Existing user account)
    Host : 192.168.0.175 (machine 2)
    Already I have 1 database in SQL Server with the name SQLTEST
    You can create DSN with different name also (not same as db name also)
    3)     Create a hsodbc init file in $ORACLE_HOME\hs\admin *(Machine 2)*
    Create init<DSN NAME> file
    Ex: initSQLTEST
    Copy inithsodbc to initSQLTEST
    And edit
    initSQLTEST file
    HS_FDS_CONNECT_INFO = SQLTEST    <DSN NAME>*
    HS_FDS_TRACE_LEVEL = OFF*
    save the file....@
    4)     Configure Listener.ora *(Machine 2)*
    LISTENER_NEW =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.0.175)(PORT = 1525))
    SID_LIST_LISTENER_NEW =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = SQLTEST) *+< Here SQLTEST is DSN NAME >+*
    (ORACLE_HOME = G:\oracle 10g\oracle\product\10.2.0\db_1)
    (PROGRAM = hsodbc))
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = G:\oracle 10g\oracle\product\10.2.0\db_1)
    (PROGRAM = extproc) )
    :> lsnrctl start LISTENER_NEW
    5)     Configure tnsname.ora *(Machine 2)*
    SQLTEST11 =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.0.175)(PORT = 1525))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = SQLTEST))
    (HS=OK)
    :> tnsping SQLTEST11
    If No errors then conti….
    6)     Configure a file *(Machine 1)*
    Cd $TNS_ADMIN ($ORACLE_HOME/network/admin)
    Create a file
    $ vi TEST_abcdbt_ifile.ora
    something=
    (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST =192.168.0.175) (PORT=1525))
    (CONNECT_DATA=
    (SID=SQLTEST))
    (HS=OK)
    $ tnsping something
    $ sqlplus system/manager
    Your connected to Oracle database *(machine 1)*
    create database link xyz connect to “sa” identified by “abc@123!” using ‘SOMETHING’;
    select * from t@xyz;10 rows selected.
    Thanks,
    Edited by: ram5424 on Feb 10, 2010 7:24 PM

  • Newbie question: How to create a namespace and record filedate-retrieve

    Spanking new to Namespaces
    Looking for a way to place a .jpg as a smart object, then using Namespace, record the filedate of the .jpg
    Then, have the layer sense if the original .jpg is newer and change the color of the layer.
    Running into complications trying to do this with .jsx scripting alone.
    Reason: This way, if the .jpg has been updated on the file server, the artist will be able to easily see that.
    Don't want to add a panel and more work for the artist. Rather, have it all happen behind the scenes.

    Here is how I create a new namespace in the layer metadata for my panel
    // new namespace. Even though it looks like a web url it's not. It just needs to be unique.
    const ns= 'http://www.smartobjectlinks.com/1.0/';
    function setSOLinkMetadata( property, value ){
         if( activeDocument.activeLayer.isBackgroundLayer || !loadXMPLibrary()){
              alert( ErrStrs.CONVERT );
         } else {
              var xmp;
              if (value == "")
                   value = " ";     
              try{
                   xmp = new XMPMeta( activeDocument.activeLayer.xmpMetadata.rawData );
              } catch(e) {// no metadata so create new and add namespace
                   xmp = new XMPMeta();
                   var linkNS = new Namespace ( 'link', ns );
                   XMPMeta.registerNamespace ( linkNS, 'SOlink' );
              try{
                   xmp.setProperty(ns, property, value );
              } catch(e) {
                   alert( ErrStrs.FAILEDMETADATA + e);
              activeDocument.activeLayer.xmpMetadata.rawData = xmp.serialize();
         unloadXMPLibrary();
    If the file being linked has metadata you can use the ModifyDate in the XMP.
    function getfileDate( file ){
         var date = new String();
         try{
              loadXMPLibrary();
              var xmpf = new XMPFile( file.fsName, XMPConst.UNKNOWN,
                                       XMPConst.OPEN_FOR_READ );
              var xmp = xmpf.getXMP();
              xmpf.closeFile();
              date = new XMPDateTime( xmp.getProperty
                                  (XMPConst.NS_XMP, "ModifyDate").toString() );
         }catch(e){// fallback to OS file date
              date = new XMPDateTime ( file.created );
         date = date.toString();
         unloadXMPLibrary();
         return date;
    The hard part will be getting the layer to 'sense' when the original has been changed. If you don't want the user to trigger the test you will have to use an event like open.

  • How to decrease the gap between label and input field.. pls respnd

    hi friends,
    I am facing this problem since long time and couldnt get any solution...
    pls respnd,
    i need to decrease the gap between my input field and label.. its very much gap there..
    thanks in very advacne,
    niraja

    Hi WD ABAP,
    i am doing the same, created tcontainer, and just binded my node. i given matrix layout. But i dont know why it is coming like that.
    Also WDABAP, could you pls reply me to the other thread,
    about when im trying to read the dropdown value of subnode, the get_static_attribute or create_element method is going into my supplyfunction.
    supplyfunction - my code is to fill the dropdown. and due to this supply function triggering,
    my get_static_att or create_element is not reruting currenct row dropdown value.
    what am i doing wrong.. can u pls pls.. its kicking me. i have spent my whole weekend on this, but couldnt solve this.
    plsfnds :(((((
    Niraja

  • Gap between header and content in IE

    Hello All
    I subscribed to a post with this basic same question but I
    never got a notification if it got answered or not
    I all of a sudden have a gap between the header and content
    on this site
    http://www.michaelsondesign.com/guestVision/
    - I am not sure why , it started when I added to the menu on the
    left
    Any ideas?
    Thanks
    Rob

    Add this to your CSS
    img {vertical-align:top;}
    You cannot lose until you give up !!!
    "BOC_RUSH" <[email protected]> wrote in
    message
    news:fsn546$nrm$[email protected]..
    > Hello All
    >
    > I subscribed to a post with this basic same question but
    I never got a
    > notification if it got answered or not
    >
    > I all of a sudden have a gap between the header and
    content on this site
    >
    http://www.michaelsondesign.com/guestVision/
    - I am not sure why , it
    > started
    > when I added to the menu on the left
    >
    > Any ideas?
    >
    > Thanks
    >
    > Rob
    >
    >

  • How to create a connection between CRM and R73??

    Hi, I have a problem. I am working with CRM and in my program I have to access to some tables in R/3 to get some data, I have created a RFC function to get those data (it is created in R/3). In CRM there is a report that use that function but when I use it I get a Dump. I think it is because the connection are not established. I know that I have to go to the SM59 but I don't know how and where I have to create, and I don't know which do the Destination parameter must be.
    If anybody knows how to solve it...
    Thanks in advance

    Alejandro,
    Please go through this link below
    http://help.sap.com/saphelp_erp2005/helpdata/en/89/45aad99715462abdf09ec503e151e7/frameset.htm

  • OBIEE -- How to create a filter between current_date and 31 days pass

    Hello guys
    I was trying to put a filter on the date column and filter between timestampadd(sql_tsi_day,-31,current_date) and current_date
    I was successfully able to define both field on sql expression of the filter and I selected "is between"
    when I put this date column with measures and other columns then run report, I get a different error:
    State: HY000. Code: 10058. NQODBC SQL_STATE: HY000 nQSError: 10058 A general error has occurred. nQSError: 42043 An external aggregate is found in an outer query block. (HY000)
    SQL Issued: SELECT Product."Brand Name" saw_0, "Up Level"."Trial - level 12" saw_1, "Year"."Transaction Year" saw_2, "Year"."Transactoin Month" saw_3, "Year"."Transaction Date" saw_4, tranSale.count_of_transactions saw_5, Avg(tranSale.count_of_transactions by "Up Level"."Trial - level 12", "Year"."Transactoin Month", Product."Brand Name") saw_6 FROM tranSale_cube WHERE ("Up Level"."Trial - level 12" IN ('0', 'Product Upsell')) AND ("Year"."Transactoin Month" >= '2009 Feb') AND ("Year"."Transaction Date" BETWEEN timestampadd(sql_tsi_day,-31,current_date) AND current_date) ORDER BY saw_0, saw_1, saw_2, saw_3, saw_4
    I believe it must be something with the essbase that is not serving OBIEE well. Because I tried the same filter on a different environment not having essbase, it return me the right results..
    Could anyone help?
    Thanks

    Another example to look at to see historical data for x number of years in the past from current year can be found in this blog:
    http://oraclebizint.wordpress.com/2008/03/11/oracle-bi-ee-101332-rolling-yearmonth-and-date-filters-moving-window-filters/

  • NEWB question - How do I make my video Black and white?

    I've poked around the manual, google, and the forums. I'm sure the answer is MORE than obvious, but at this time....i cannot figure it out.
    How do i get to a settings/coolor bar with sliders that will allow me to make video B&W, control saturation and brightness?
    Thanks guys!

    GOOD NEWS! Thanks to you guys, I figured it out. Within the 3-way color corrector here is what I did (for future searchers):
    - Go the effects tab.
    - Go to Video Filters> Color Correction> 3-way color corrector.
    - Click and drag the filter on the the clip in the time line.
    - Now double-click the clip you just dragged the filter on to, this should be it up in the viewer up top.
    - No, click on the 3-way color correction tab.
    - You will see 3 color wheels. Ignore them for now and notice the slider underneath them, "Saturation" or "Sat". Take this slide and move it to the very left.
    You now have black and white video.

  • How to Create a link between SAP and extrnal web page?

    Hi All,
    Can anyone help me solve this requirement?
    Is it possible that when I double-click on the document flow of a delivery document, it should direct me to an external web page (ie www.google.com).
    Your reply would be greatly appreciated.
    Thank you very much in advance.
    Ranilo T. Castillo
    ABAP Programmer

    Hello Ranilo
    The function module you are looking for is: <b>PRGN_START_EXECUTE_MODULE</b>
    URL_TYPE = 'URL'               
    URL      = 'http://www.google.com'
    Regards
      Uwe

  • Gap between header and body

    Page:
    www.megamarketingtools.com/problem.html
    That small gap (looks like a black line) is driving me crazy.
    I searched these forums but the suggestions I found didn't
    do anything for me.
    Help, please.
    Thank you.

    bffinn wrote:
    Page:
    www.megamarketingtools.com/problem.html
    That small gap (looks like a black line) is driving me crazy.
    I searched these forums but the suggestions I found didn't
    do anything for me.
    Help, please.
    Thank you.
    Your code is screwed up. Try the amended version below:
    <!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>MegaMarketing One Time Offer</title>
    <link href="scripts/ototemp/Template8/Blue/style.css" rel="stylesheet" type="text/css" /> 
    <style type="text/css"> 
    <!-- 
    .copywrite { font-size: x-small; } 
    .moretext { font-size: 12px; } 
    --> 
    </style> 
    <link href="otostyle.css" rel="stylesheet" type="text/css" /> 
    </head> 
    <body> 
    <table width="750" border="0" align="center" cellpadding="0" cellspacing="0"> 
      <tr> 
      <td width="750" height="270" valign="bottom" background="scripts/ototemp/Template8/Blue/images/header.jpg" border="0"> </td>   
    </tr> 
      <tr> 
        <td align="left" valign="top" background="scripts/ototemp/Template8/Blue/images/page-inside-bg.jpg"> </td> 
        </tr> 
    </table> 
    </body> 
    </html>

  • How to create a connection between SAP BPC 10.0 to SAP BOBJ

    Hi friends,
    My client want see the reports in BOBJ which are built in SAP BPC. How to create the conncetion between BPC and BOBJ.
    1.Is there any guide to create such connection ?
    2.how the data feed to BOBJ reports?
    please help me ASAP.
    Regards,
    Saida Reddy G

    Hi,
    Check http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/8034121d-8419-2e10-229a-99ec678b64c5?QuickLink=index&…
    How to Use the EPM Connector to Visualize BPC Data via Dashboard Design (aka Xcelsius) | planingandconsolidation
    Hope it helps...
    regards,
    Raju

  • Space between header and body section

    Hi All,
    I have a RTF template in that i am displaying the header and body section , i have more than one pages in my report so in the first page the gap between header section and the contains start after that is fine, but for the rest of the pages the gap between header and contaisn is more , can you please guide me how to decrease the space.
    Ex:
    Page 1: Header section
    ABC CORPORATION
    JJJJJJJJJJJJJJJJJJJJJJJ
    -----------------PAGE ENDS---------------------------
    Page2:
    Page 1: Header section
    ABC CORPORATION
    JJJJJJJJJJJJJJJJJJJJJJJ ------------------This space is more i need to decrease
    -----------------PAGE ENDS---------------------------
    Thanks
    Deb

    check if u have any spaces after the for each or any logic u used before data table which have spaces in between.
    send me your sample xml and template i can try at my side.
    email : [email protected]

  • How do I define gap between tracks in playlists?

    how do I define gap between tracks in a playlist in iTunes? (So that the gaps will be a part of the playlist after syncronizing to an iPhone.)
    This is for tracks imported from LogicPro, not ripped from a CD.
    Thanks for answer

    Since iTunes has no such feature, the way to do it is to create short tracks of silence.  Add them to your iTunes library, and insert them as separators between other tracks in the playlist.  You can use the same track multiple times in the same regular playlist.
    I have not used Logic Pro, but I am fairly sure it can be used to create a short track of silence.

  • How to create the relationship between ESSBASE 11 and DM in OBIEE11

    Hi Experts,
    I have one requirement that there is one property table named 'Store Master' in DW,and it contains a lot of attribute, such as Open Date, Close Date, IS 24 Hour etc.
    But another data source is essbase and based on this source, I create all reports.
    In ESSBASE, it has one dimension and hierarchy Location, and it has four level, Country(L1),Region (L2),Province(L3),Store(L4)
    So I want to know how to create the relationship between Location (ESSBASE) and Store Master (DM).
    I try to create one relationship in physical layer between Gen4,Location and Store, then drag the open date and close date into Location Dimension in BMM,then Presentation Layer.
    When I drag column 'Open Date' ,'Gen4,Location ' and 'Sales' into reports, it will generate the following error message:
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 43113] Message returned from OBIS. [nQSError: 43119] Query Failed: [nQSError: 14020] None of the fact tables are compatible with the query request Dim Region.Store Open Date. (HY000)
    However, when I remove the column 'Open Date'. it will be ok.
    So what I missing the steps? Please help me. Thanks.

    >
    '2. Now, pull the 'Store' column from relational DB onto the Gen5, Location column from Essbase. This action now creates, two logical sources for your 'Store' column.'
    If the length from different data source is not same,such as 1001(DM),L_1001(ESSBASE), can I drag the 'Store' column from relational DB onto the Gen5, Location column from Essbase?
    I think it does not work.Right?Hi,
    I am not sure if you are talking about the length(as in varchar(128)) of the member value being different in different sources, or the member itself is different in both the sources.
    I am still assuming, that you are referring to the members not same in both the sources.If it is, the whole concept of federation is based on conforming dimensions. So, it needs that the same dimension information is present in both the sources and then only, you know we can analyze the numbers based on this dimension. So, either the dimension being different in both sources, or the members not present in both the dimensions might lead to incorrect numbers.
    So I select Store Attributes in relation DB and Location in ESSBASE in physical layer, then create the physical join, such as right("Hour Sales"."H_Sales".""."H_Sales"."Gen6,Location",4) = "Authorization".""."EDW"."T_EDW_MDM_STORE"."US_CODE", then drag the OPEN_DATE and CLOSE_DATE in relation DB to Location in ESSBASE in BMM,finially drag them into presentation layer.We create physical layer relationships, to send over the same relation to the underlying database during querying. So, creating a physical relationship between essbase cube and relation database would not help here.
    When you set up this federation, BI Server sends individual queries to each source and maps the conforming dimension members internally.
    Hope I was clear, and this helps.
    Thank you,
    Dhar

Maybe you are looking for

  • How do you change the figure legend text?

    In Numbers 3.0, I type in a value for the figure legend, but it automatically changes to something else. How do you handle figure legends in Numbers 3.0?

  • ORDER SETTLEMENT PROBLEM

    Hi all, i settled a production order let say 'X' through t code ko88 (this order is created by t code iw31) now again when i am tring to settle the same order throgh t code it is allowing me to settle though it is already settled 100% in production s

  • How to use (un) padded hash to verify signature

    Hi, Thanks to the person that posted the code for padding a Hash in the topic http://forum.java.sun.com/thread.jspa?forumID=9&threadID=657241 It helped a lot ! Now, I want to do the reverse. I want to verify that the signature created matches the cal

  • Message in alert log file during the startup of the DB

    Hi, i have two instances, i have the same warning in the alert log file during the startup of the DB: Oracle instance running on a system with low open file descriptor limit. Tune your system to increase this limit to avoid severe performance degrada

  • Failed to retrieve data set for spry:repeat

    Help! I have read all the posts and fixes in the forums, but none seem to be helping me. I have moved this coding from my homepage to a sub-page. It previously worked fine on the homepage. The coding is the same, however I get the same error message