New Topic

Customization (My Website)

Home › Forum › Customization › Customization (My Website)

This topic contains 100 replies, has 3 voices, and was last updated by  StartupWP 5 years, 6 months ago.

Viewing 25 posts - 26 through 50 (of 101 total)
  • Author
    Posts
  • #881

    uendi
    Participant

    Hello StartupWP,

    Really thank you very much for your advise. I have uploaded the given php (functions and footer) through FTP, but the new widget area still not appear. I can’t figure out why ?

    Thanks.

    #884

    StartupWP
    Keymaster

    Okay, please share the entire contents of your child theme’s stylesheet, functions.php and footer.php, and anything else you might have customized. You can use http://pastebin.com/ if it’s easier.

    Then we’ll see if we can make sure everything is organized correctly in one neat child theme for you.

    #885

    uendi
    Participant

    Hello StartupWP,

    Below all these are my customize code, functions.php and footer.php :

    1. Customize code

    /* Header */
    body { margin-top: 6%; }
    #branding { margin-bottom: 30px; }

    /* Menu Background */
    #wrapper nav #s { background: none repeat scroll 0 0 #FFFFFF; width: 180px; }
    nav li.current-menu-item a, nav li.current_page_item a { color: #FFFFFF; text-shadow: 1px 1px 1px #333333; border-radius: 5px !important; }
    nav { background: linear-gradient(#DBB84D 0%, #DBB84D 50%, #B88A00 100%) repeat scroll 0 0 transparent; }
    nav ul li a { border-right: 0 none; padding: 0 25px; }

    /* Sub Menu Dropdown Background */
    nav ul li:hover ul li a:hover, nav ul ul li:hover ul li a:hover, nav ul ul ul li:hover ul li a:hover { background: linear-gradient(#171717 0%, #171717 50%, #454545 100%) !important; border-right: 0 none; border-left: 0 none; border-top: 0 none; border-bottom: 0 none; }
    nav ul li:hover a { background: linear-gradient(#009DD5 0%, #009DD5 50%, #33D0FF 100%) repeat scroll 0 0 transparent; border-radius: 5px 5px 5px 5px; }
    nav ul li:hover ul li a, nav ul ul li:hover ul li a, nav ul ul ul li:hover ul li a { border: 0 none; opacity: 1; }
    nav ul li a:hover { border: 0px solid #000; box-shadow: none; }

    /* Page Title */
    .entry-title { display: none; }

    /* Page Edit */
    .post-edit-link { display: none; }

    /* Left Sidebar */
    .widget-title { border-bottom: 0 none; font-size: 15px; font-weight: bold; font-family: arial, tahoma, sans-serif; color: #584A1F; padding: 13px; margin: 5px 0; }
    .widget-container { padding: 5px 10px; width: 270px; margin: 1px -19px; min-height: 690px; box-shadow: 10px 10px 5px #888888, -8px -8px #F4F4F4, 0px 0px 5px 5px #B88A00; border-top-right-radius: 5px; border-bottom-right-radius: 5px; }
    .widget-container a { font-size: 13px; font-family: arial, tahoma, sans-serif; color: #584A1F; margin: 5px 0; padding: 5px; text-decoration: none; display: block; }
    .widget-area { line-height: 20px; }
    .widget-area a {line-height: 40px; }
    #menu-my-categories-menu li { list-style: none outside none; color: #584A1F; line-height: 10px; }
    #menu-my-categories-menu li a { border-top: 2px dotted #584A1F; display: inline-block; margin: 1px 0; padding: 2px 5px; width: 80%; line-height: 25px; }
    #menu-my-categories-menu li a:after { content: “>>”; padding: 10px; font-size: 10px; }
    #menu-my-categories-menu li li a:after { content: “>>”; padding: 0 0 0 13px; font-size: 10px; }
    #menu-my-categories-menu .sub-menu { display: none !important; }

    /* Contact Form 7 (Submit Button) */
    #content input[type=”submit”], #content input[type=”reset”], #container #searchsubmit, .button, #new-topic { background: none repeat 0 0 #AAAAAA; border: 0 none;
    box-shadow: none; }

    /* Contact Form 7 (Insert Color Asterisk) */
    .aster { color: #FF0000 }

    /* Footer Menu Background */
    footer { background: linear-gradient(#DBB84D 0%, #DBB84D 50%, #B88A00 100%) repeat scroll 0 0 transparent; height: 60px; padding: 1px 0 35px; border-radius: 5px 5px; }
    footer a, #copyright { color: #584A1F; text-shadow: none !important; font-size: 12px; }

    2. Functions.php

    <?php
    add_action( ‘widgets_init’, ‘startup_widgets_init_child’ );
    function startup_widgets_init_child() {
    register_sidebar( array (
    ‘name’ => __(‘Footer Widget Area 2’, ‘startup’ ),
    ‘id’ => ‘footer-widget-area-2’,
    ‘before_widget’ => ‘<li id=”%1$s” class=”widget-container %2$s”>’,
    ‘after_widget’ => ““,
    ‘before_title’ => ‘<h3 class=”widget-title”>’,
    ‘after_title’ => ‘</h3>’,
    ) );
    }
    ?>

    3. Footer.php

    <?php $options = get_option(‘startup_options’); ?>
    <div class=”clear”></div>
    </div>
    <footer>
    <div id=”footer-sidebar”>
    <?php if ( is_active_sidebar(‘footer-widget-area-2’) ) : ?>
    <div id=”fsidebar” class=”widget-area”>
    <ul class=”sid”>
    <?php dynamic_sidebar(‘footer-widget-area-2’); ?>

    <div class=”clear”></div>
    </div>
    <?php endif; ?>
    </div>
    <?php if ( has_nav_menu( ‘footer-menu’ ) ) : ?>
    <div id=”fmenu”><?php wp_nav_menu( array( ‘theme_location’ => ‘footer-menu’, ‘depth’ => ‘1’ ) ); ?></div>
    <?php endif; ?>
    <div id=”copyright”>
    <?php
    if ($options[‘copyright’]!=””) echo do_shortcode( $options[‘copyright’]); else echo sprintf( __( ‘%1$s %2$s %3$s. All Rights Reserved.’, ‘startup’ ), ‘©’, date(‘Y’), esc_html(get_bloginfo(‘name’)) );
    if ( $options[‘credit’] ){ echo ‘ ‘ . sprintf( __( ‘Proudly Built with %1$s and %2$s.’, ‘startup’ ), ‘StartupWP‘, ‘WordPress‘ ); }
    ?>
    </div>
    </footer>
    <div id=”footer-sidebar”>
    <?php if ( is_active_sidebar(‘footer-widget-area’) ) : ?>
    <div id=”fsidebar” class=”widget-area”>
    <ul class=”sid”>
    <?php dynamic_sidebar(‘footer-widget-area’); ?>

    <div class=”clear”></div>
    </div>
    <?php endif; ?>
    </div>
    </div>
    <?php wp_footer(); ?>
    </body>
    </html>

    Thanks.

    #886

    StartupWP
    Keymaster

    Okay, here you go:

    https://startupwp.com/downloads/support/startuppro-child%28uendi%29.zip

    Just tested and it’s working.

    We’ve left a blank line before and after the widget code in footer.php, so you know what chunk of code to move around if you want different placement.

    #887

    uendi
    Participant

    Hello StartupWP,

    Thank you so much for your help. From the Appearance => Widget, I can see “Footer Widget Area 2” is just on top of Side Widget Area.

    Now I am thinking to shift the Footer Widget Area 2 to place just below Footer Widget Area, so I move the code from the top to the bottom, but it is not moving at all when I refer to the Appearance => Widget again.

    Footer.php

    <?php $options = get_option(‘startup_options’); ?>
    <div class=”clear”></div>
    </div>
    <footer>
    <?php if ( has_nav_menu( ‘footer-menu’ ) ) : ?>
    <div id=”fmenu”><?php wp_nav_menu( array( ‘theme_location’ => ‘footer-menu’, ‘depth’ => ‘1’ ) ); ?></div>
    <?php endif; ?>
    <div id=”copyright”>
    <?php
    if ($options[‘copyright’]!=””) echo do_shortcode( $options[‘copyright’]); else echo sprintf( __( ‘%1$s %2$s %3$s. All Rights Reserved.’, ‘startup’ ), ‘©’, date(‘Y’), esc_html(get_bloginfo(‘name’)) );
    if ( $options[‘credit’] ){ echo ‘ ‘ . sprintf( __( ‘Proudly Built with %1$s and %2$s.’, ‘startup’ ), ‘StartupWP‘, ‘WordPress‘ ); }
    ?>
    </div>
    </footer>
    <div id=”footer-sidebar”>
    <?php if ( is_active_sidebar(‘footer-widget-area’) ) : ?>
    <div id=”fsidebar” class=”widget-area”>
    <ul class=”sid”>
    <?php dynamic_sidebar(‘footer-widget-area’); ?>

    <div class=”clear”></div>
    </div>
    <?php endif; ?>
    </div>
    </div>

    <div id=”footer-sidebar”>
    <?php if ( is_active_sidebar(‘footer-widget-area-2’) ) : ?>
    <div id=”fsidebar” class=”widget-area”>
    <ul class=”sid”>
    <?php dynamic_sidebar(‘footer-widget-area-2’); ?>

    <div class=”clear”></div>
    </div>
    <?php endif; ?>
    </div>

    <?php wp_footer(); ?>
    </body>
    </html>

    Thanks.

    #888

    StartupWP
    Keymaster

    It doesn’t matter where it appears under Appearance > Widgets, this is just the stacking order in the admin, it does not correlate to the live site. It’s shown first because the child theme loads first.

    Other than that, you can pretty much move the <div id="footer-sidebar"> code wherever you want within the body.

    Perhaps you’re having a styling issue that we can help with?

    #893

    uendi
    Participant

    Hello StartupWP,

    Thank you for your help as at the meantime, I have not decided what styling do I need for the footer area yet.

    Today, I have a few questions :

    1. Is regarding of my footer menu, please refer to this http://prntscr.com/1bs11f ?

    2. Jquery Mega Menu. I am trying to set up the navigation dropdown menu by using this plugin. As I follow their instruction menu by adding a code to this functions.php and
    header.php, the code for :

    Functions.php
    <?php
    add any new or customised functions here
    if ( function_exists(‘register_sidebar’) ){
    register_sidebar(array(
    ‘name’ => ‘my_mega_menu’,
    ‘before_widget’ => ‘<div id=”my-mega-menu-widget”>’,
    ‘after_widget’ => ‘</div>’,
    ‘before_title’ => ”,
    ‘after_title’ => ”,
    ));
    }
    ?>

    Header.php
    <?php /* Widgetized sidebar */
    if ( !function_exists(‘dynamic_sidebar’) || !dynamic_sidebar(‘my_mega_menu’) ) : ?><?php endif; ?>

    After adding in the code to this header.php and trying to save it, but it appears this sentence :

    Warning: Cannot modify header information – headers already sent by (output started at /home/uendic5/public_html/wp-content/themes/startuppro-child/functions.php:16) in
    /home/uendic5/public_html/wp-includes/pluggable.php on line 876

    May I know what it’s mean ?

    Thank you.

    #896

    StartupWP
    Keymaster

    1. Looks like you’ve put your site into maintenance/under construction mode again. If you open it up we should be able to write up the CSS.

    2. Not sure this is something we’d know how to address. You should be able to get better information here:

    http://wordpress.org/support/plugin/jquery-mega-menu

    #897

    uendi
    Participant

    Hello StartupWP,

    Thank you for your reply.

    1. My site is on live now.

    2. Jquery Mega Menu I have sent my enquiry to their forum and still waiting for the reply. If I don’t use this plugin, is it still available to set up this design without the image by
    using Css code? Besides, editing any header and functions code.

    Thanks

    #900

    StartupWP
    Keymaster

    1. Sorry to say it, it now looks like http://prntscr.com/1bs11f isn’t loading or the image is missing?

    2. Unfortunately no, don’t think it would be easy without this plugin or simply using CSS. You might be able to contact the developer(s) directly and possible hire them to setup the plugin for you:

    http://www.designchemical.com/

    #903

    uendi
    Participant

    Hello StartupWP,

    1. Refer to the first same question dated 28 June 2013, this is the screenshot again http://prntscr.com/1d9irv ?

    2. How to adjust dotted line http://prntscr.com/1d9j3z ?

    3. For sidebar background color, I want the dark brown from right slowing spread to the left as it turns to light brown, refer to the example http://prntscr.com/1d9kaj ?

    4. I saw quite a number of sites have this type of arrow cursor http://prntscr.com/1d9khb, I search everywhere and including w3school site, I’m unable to get the code, is it available to get
    from you ?

    5. I remember I have asked you once regarding the search button code http://prntscr.com/1c5d56, are you able to help ?

    6. Is there any way to get a plugin for use to block the dangerous cookie like CouponDropDown ?

    Thank you.

    #904

    StartupWP
    Keymaster

    1. In the order the requests appear in the screenshot:

    #copyright {
      margin-top: 10px;
    }

    and

    footer li {
      border-right: 1px solid #666666;
      display: inline-block;
      margin: 0;
      padding: 1px 5px 1px 2px;
    }

    and

    For the follow us section, add the following to your custom copyright wording area:

    <div id="followus">
    . . . YOUR FACEBOOK/TWITTER CODE HERE . . .
    </div>
    © 2013 Uendi.com. All Rights Reserved.

    Then some CSS:

    #followus{float:right}

    2. Try:

    #menu-my-categories-menu .sub-menu {
      display: block !important;
      margin-left: 0 !important;
    }

    3. Use:

    .widget-container {
      background: linear-gradient(90deg, #DBB84D 0%, #DBB84D 50%, #B88A00 100%) repeat scroll 0 0 transparent;
      box-shadow: 0 0 5px #CCCCCC inset;
      margin: 5px -10px;
      min-height: 750px;
      padding: 8px 10px;
      width: 270px;
    }

    4. You’ll want to find an arrow image that you like and then use:

    #menu-my-categories-menu li a:before {
      content: url("http://uendi.com/wp-content/themes/startuppro/images/arrow-right.png") !important;
      font-size: 10px;
      padding: 0 10px 0 1px;
    }

    5. What are the details again please.

    6. Looks like this might be a computer issue, not WordPress related:

    http://botcrawl.com/how-to-remove-coupondropdown-adware-and-uninstall-the-coupondropdown-extension/

    #908

    uendi
    Participant

    Hello StartupWP,

    Thank you so much.

    1. Footer Area. There is an item you have missed out, please refer http://prntscr.com/1dfyl8 ?

    By the way, how to alignment the inline further a little bit from “Privacy Policy” ?

    2. <div id=”followus”>
    . . . YOUR FACEBOOK/TWITTER CODE HERE . . .
    </div>
    © 2013 Uendi.com. All Rights Reserved.

    For this part, I not really understand as I need to add them to the Appearance => StartupPro Options, followed by wording area. After that, I add in the Facebook share image and also
    Facebook profile URL, but it appears on the top right corner ?

    And how to insert the text “Follow Us On” at the footer area (refer to the last request post) ?

    3. #menu-my-categories-menu li a:before {
    content: url(“http://uendi.com/wp-content/themes/startuppro/images/arrow-right.png") !important;
    font-size: 10px;
    padding: 0 10px 0 1px;
    }

    For this part, if I’m unable to download the image arrow I like from somewhere, this code cannot be added, right ?

    4. Refer to the last request post no item 5 (http://prntscr.1c5d56), I would like to have a search box with text ” Search …..” and search icon on it ?

    Thank you.

    #909

    uendi
    Participant

    Hello StartupWP,

    5. I have one more last question for today, I have inserted an Easy Table plugin and would like to have a big box surround the table with the title “All Categories”. I have added in this code :

    [tab]
    [tabgroup=”All Categories”]

    [/tab]
    [/tabgroup]

    However, it’s not working at all. Please refer http://prntscr.com/1dikw5.

    Thanks.

    #911

    StartupWP
    Keymaster

    1. Let’s add the !important declaration to make sure the styles take:

    footer li {
      border-right: 1px solid #666666 !important;
      display: inline-block !important;
      margin: 0 !important;
      padding: 1px 5px 1px 2px !important;
    }

    To move the whole footer menu left:

    #menu-my-footer-menu {
      margin-right: 100px;
    }

    2. Apologies, assumed you had a different social code you intended for this area, here’s the code for your Facebook icon:

    <a href="http://www.facebook.com/uendicom" id="social-facebook"><img src="http://uendi.com/wp-content/themes/startuppro/images/social/facebook.png" alt="Facebook"></a>

    3. Alternatively, you can use any HTML entity here:

    #menu-my-categories-menu li a:before {
      content: ">" !important;
      font-size: 10px;
      padding: 0 10px 0 1px;
    }

    Checkout:

    http://www.danshort.com/HTMLentities/index.php?w=arrow

    4. Let’s start with:

    body nav #s {
      background: url("images/find.png") no-repeat scroll right center #fff;
    }

    You’ll need to find a magnifying glass icon you want to use. Checkout:

    http://findicons.com/

    5. Sorry, where’s the exact page you’ve added this to? Not seeing it.

    #912

    uendi
    Participant

    Hello StartupWP,

    Thank you for your excellent guide.

    1.

    Firstly, I have inserted an image to Facebook Share Image URL, followed by Facebook Profile URL and finally the above code given yesterday. Refer to the site, I can see two facebook icon appears on the top right corner. My main purpose is to have the facebook icon in the right bottom corner of the footer menu. Please advise.

    2. Lets say I have an arrow.png and a magnify glass.png dowload to my computer. From there, may I know how to upload to my site, as from the StartupPro option, there is no option to do it. Don’t tell me I need to upload from FileZilla ?

    3. Sorry, where’s the exact page you’ve added this to? Not seeing it.

    It’s under Store page. You just click on it and you will see the table.

    Thank you.

    #913

    StartupWP
    Keymaster

    1. Simply remove the social profile theme options and just add the following to the copyright wording area instead:

    <div id="followus">
    <strong>Follow Us On:</strong><br />
    <a href="http://www.facebook.com/uendicom" id="social-facebook"><img src="http://uendi.com/wp-content/themes/startuppro/images/social/facebook.png" alt="Facebook" /></a>
    </div>
    © 2013 Uendi.com. All Rights Reserved.

    And I believe you already added:

    #followus{float:right}

    2. Find the Media link in your WP admin main menu, you can upload images there and grab their URLs. Also, we’ve actually gone ahead and implemented a magnifying glass icon to the search field and it will be in the next update, if you’d like to simply wait for that.

    3. Try:

    .page-id-563 #content {
      width: 96%;
    }
    .page-id-563 .entry-content > p:nth-child(2) {
      background: none repeat scroll 0 0 #EEEEEE;
      margin: 20px 0;
      padding: 10px;
    }
    #916

    uendi
    Participant

    Hello StartupWP,

    1. For footer menu, I would like to move the texts further down, please refer http://prntscr.com/1dvd7g ?

    2. How to move the facebook icon further down a little bit ?

    3. Apologised as I miss out one thing, that is how to make a border/box , please refer http://prntscr.com/1dvdqx ?

    4. I have noticed that the slider appeared on every page. Is it available to let the slider appear only on home page ?

    5. From my mobile, I can see the navigation menu bar of my site is black in color, the footer menu is transparent and the header is white which totally different from my setting. Is there any way
    can change it ?
    :
    Thank you.

    #918

    StartupWP
    Keymaster

    1. Change:

    #menu-my-footer-menu {
      margin-right: 783px;
    }

    to:

    #menu-my-footer-menu {
      display: block;
      padding: 15px 20px 0;
      text-align: left;
      width: 100%;
    }

    Adjust the padding as needed.

    2. Use:

    #social-facebook {
      display: inline-block;
      margin: 10px 5px 10px 0;
    }

    3. Update:

    .page-id-563 .entry-content > p:nth-child(2) {
      background: none repeat scroll 0 0 #EEEEEE;
      margin: 20px 0;
      padding: 10px;
    }

    to:

    .page-id-563 .entry-content > p:nth-child(2) {
      background: none repeat scroll 0 0 #EEEEEE;
      border-bottom: 2px solid #666666;
      border-top: 2px solid #666666;
      margin: 20px 0;
      padding: 10px;
    }

    And add:

    .page-id-563 .entry-content {
      border: 2px solid;
      margin: 20px 0 0;
      padding-bottom: 20px;
      text-align: justify;
    }
    .page-id-563 .entry-content > p:nth-child(1) {
      display: none;
    }

    4. Use:

    #slider{display:none}
    .home #slider{display:block}

    5. Not able to recreate, can you provide screenshots of what you’re seeing.

    #932

    uendi
    Participant

    Hello StartupWP,

    1. Refer to your request screenshot for item no 5 dated 06 July 2013, http://prntscr.com/1f3siq, why is it different from PC ?

    2. I have inserted my own customize search icon, may I know how to make it clickable ?

    3. How to adjust the spacing gap between Contact Us and Privacy Policy to be a bit nearer http://prntscr.com/1f3t1v ?

    4. How to change the “Follow Us On” font-weight to normal, http://prntscr.com/1f3tf4 ?

    5. I have inserted a plugin, everything is OK, but there is one problem that I unable to solve it. I have set a code for box-shadow { 5px 9px 10px rgba(50, 50, 50,0.5); }, and from there, I can see the extra part which I want to get rid of, is it available to ? http://prntscr.com/1f3v5x

    Thanks.

    #935

    StartupWP
    Keymaster

    1. Because the design is responsive to screen size. This can be disabled by increasing the layout’s min-width:

    Appearance > StartupPro Options > Custom Styles > Minimum Layout Width > Set to 1000

    2. Try:

    nav #searchsubmit {
      background: none repeat scroll 0 0 transparent;
      border: 0 none;
      color: transparent;
      display: block;
      font-size: 0;
      height: 23px;
      left: 100%;
      margin-left: -28px;
      position: absolute;
      width: 21px;
    }

    3. Use:

    footer li {
      border-right: 1px solid #BF9619 !important;
      display: inline-block !important;
      margin: 0 !important;
      padding: 1px 5px 1px 2px !important;
    }

    4. In your Copyright Wording area, remove the <strong>..</strong> tags from around it.

    5. Change:

    #menu-my-mega-menu li .sub-container .sub {
      background: none repeat scroll 0 0 #FFFFFF;
      border-color: #DBB84D #B88A00 #B88A00 #DBB84D;
      border-style: solid;
      border-width: 1px;
    }

    to:

    #menu-my-mega-menu li .sub-container {
      background: none repeat scroll 0 0 #FFFFFF;
      border-color: #DBB84D #B88A00 #B88A00 #DBB84D;
      border-style: solid;
      border-width: 1px;
      margin-left: 2px;
    }
    #940

    uendi
    Participant

    Hello StartupWP,

    Refer to your reply for item no :

    1. Appearance > StartupPro Options > Custom Styles > Minimum Layout Width > Set to 1000

    I have adjusted it to 1000 even 320, there is no difference at all.

    2. Can I change the text in the search box to be sharp and clear with color instead of transparent and the hover from grey to brown http://prntscr.com/1fcd0k ?

    3. footer li {
    border-right: 1px solid #BF9619 !important;
    display: inline-block !important;
    margin: 0 !important;
    padding: 1px 5px 1px 2px !important;

    I have added the !important!, but it’s still not what I want. I have tried to adjust the margin, padding and display, I can’t get it, http://prntscr.com/1fcdis ?

    Thanks.

    #946

    StartupWP
    Keymaster

    1. There in your theme options you need to check the box to turn on Custom Styles, but actually since you’re using a child theme, probably better just to use:

    body, #wrapper{min-width:1000px !important}

    2. Try:

    #wrapper nav #s {
      color: #666666 !important;
    }

    3. Try updating to:

    footer li {
      border-right: 1px solid #BF9619 !important;
      display: inline-block !important;
      margin: 0 !important;
      min-width: 58px !important;
      padding: 1px 5px 1px 2px !important;
    }
    #947

    uendi
    Participant

    Hello StartupWP,

    Refer to your advise for item no:

    1. I have check the box and also turn on custom styles. I have added this code body, #wrapper{min-width:1000px !important;} but it is still the same. Anyway, is it available to use a plug in ?

    2. You have missed out one portion http://prntscr.com/1fpaut, that is how to change the background grey to brown ?

    Thanks.

    #948

    StartupWP
    Keymaster

    1. In addition to the CSS already provided, try adding:

    @media all and (max-width:320px){*{width:inherit !important;max-width:none !important}}

    It’ll get you a little closer, but we’ll need to make some official changes to get it just right.

    In the meantime, you might also go straight to Appearance > Editor > Stylesheet in your admin and remove all @media styles as a temp fix.

    2. Not seeing what you’re seeing, but try:

    #wrapper nav #s {
      background: url("images/find.png") no-repeat scroll right center #B88A00;
      border: medium none;
      border-radius: 5px 5px 5px 5px;
      box-shadow: 1px 1px 1px #000000 inset;
      color: #888888;
      height: 13px;
      width: 200px;
    }
    #wrapper nav #s:focus {
      background: none repeat scroll 0 0 transparent;
    }
Viewing 25 posts - 26 through 50 (of 101 total)

The topic ‘Customization (My Website)’ is closed to new replies.