Recent Posts
SeC Gaming
the Lounge
New Lounge Topic
New Gaming Topic
We've moved to Discord

You are not connected. Please login or register

Anyone familiar with Wordpress?

2 posters

Go down  Message [Page 1 of 1]

Chewy

Chewy

I could use some help with some shit. I'm trying to find out how to add new sidebars and shit and add custom widgets to them, but all I can find out how to do is go to the editor and handcode them in myself. Not really ideal because I'm trying to make this shit maintainable by someone who doesn't know any PHP or HTML.

So if anyone has any experience with templates let me know, I'd appreciate it a bunch. It's for charity as well so you get some good karma for helping.

Epyk MD

Epyk MD

if it is sub domain off of a main site, then in most cases ive found you cant add any add-ons.

Chewy

Chewy

Not a subdomain, just a main site and directories.

There's already a widget for displaying a left nav that displays all child records. I just can't find out how to make one for a right nav as well.

Epyk MD

Epyk MD

make your layout 3 columns, then you can add items to the left and right, most themes should tell you which place holders are for which side.

Chewy

Chewy

Well I'm already using a customized theme which I don't know where it came from. Is there a way to switch from 2 column to 3 column?

Epyk MD

Epyk MD

if you look in the control panel you should see an area that syas theme options

Chewy

Chewy

There's Appearance -> Themes which gives me the option to customize, but the customize options are pretty scarce, nothing about adding new columns that I can see.

Epyk MD

Epyk MD

what theme are you using?

Chewy

Chewy

It's one made specifically for this website, I doubt it's publicly available. Called homelessveteransproject.

Epyk MD

Epyk MD

can you post the css?

Chewy

Chewy

Yeah:

Code:
/****RESET CSS******/
html, body, div, span, object, h1, h2, h3, h4, p, blockquote, a, font, img, strong, sub, sup, tt, var, ol, ul, li, form, label, table, caption, tbody, tr, th, td, cite, address, .MsoNormal{
   margin: 0;
   padding: 0;
   border: 0;
   outline: 0;
   font-size: 100%;
   vertical-align: baseline;
   font-style:normal;
}


/* =============================================================================
  Base
  ========================================================================== */

/*
 * 1. Correct text resizing oddly in IE6/7 when body font-size is set using em units
 *    http://clagnut.com/blog/348/#c790
 * 2. Force vertical scrollbar in non-IE
 * 3. Remove Android and iOS tap highlight color to prevent entire container being highlighted
 *    www.yuiblog.com/blog/2010/10/01/quick-tip-customizing-the-mobile-safari-tap-highlight-color/
 * 4. Prevent iOS text size adjust on device orientation change, without disabling user zoom
 *    www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/
 */

html { font-size: 100%; overflow-y: scroll; -webkit-overflow-scrolling: touch; -webkit-tap-highlight-color: rgba(0,0,0,0); -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; }

body { margin: 0; font-size: 12px; line-height: 1.231; background:url(img/bg.jpg) repeat;}

body, button, input, select, textarea { font-family: Verdana, Geneva, sans-serif; color: #222; }

/*
 * These selection declarations have to be separate
 * No text-shadow: twitter.com/miketaylr/status/12228805301
 * Also: hot pink!
 */

::-moz-selection { background: #8a9b87; color: #fff; text-shadow: none; }
::selection { background: #8a9b87; color: #fff; text-shadow: none; }


/* =============================================================================
  Links
  ========================================================================== */

a { color: #00e; }
a:visited { color: #551a8b; }
a:focus { outline: thin dotted; }

/* Improve readability when focused and hovered in all browsers: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active { outline: 0; }


/* =============================================================================
  Typography
  ========================================================================== */

abbr[title] { border-bottom: 1px dotted; }

b, strong { font-weight: bold; }

blockquote { margin: 1em 40px; }

hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; }

small { font-size: 85%; }

/* Position subscript and superscript content without affecting line-height: gist.github.com/413930 */
sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
sup { top: -0.5em; }
sub { bottom: -0.25em; }


/* =============================================================================
  Lists
  ========================================================================== */

ul, ol { margin: 1em 0; padding: 0 0 0 40px; }


/* =============================================================================
  Embedded content
  ========================================================================== */

/*
 * Improve image quality when scaled in IE7
 * code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/
 */

img { border: 0; -ms-interpolation-mode: bicubic; }

/*
 * Correct overflow displayed oddly in IE9
 */

svg:not(:root) {
    overflow: hidden;
}


/* =============================================================================
  Forms
  ========================================================================== */

form { margin: 0; }
fieldset { border: 0; margin: 0; padding: 0; }

/*
 * 1. Correct color not inheriting in IE6/7/8/9
 * 2. Correct alignment displayed oddly in IE6/7
 */

legend { border: 0; *margin-left: -7px; padding: 0; }

/* Indicate that 'label' will shift focus to the associated form element */
label { cursor: pointer; }

/*
 * 1. Correct font-size not inheriting in all browsers
 * 2. Remove margins in FF3/4 S5 Chrome
 * 3. Define consistent vertical alignment display in all browsers
 */

button, input, select, textarea { font-size: 100%; margin: 0; vertical-align: baseline; *vertical-align: middle; }

/*
 * 1. Define line-height as normal to match FF3/4 (set using !important in the UA stylesheet)
 * 2. Correct inner spacing displayed oddly in IE6/7
 */

button, input { line-height: normal; *overflow: visible; }

/*
 * 1. Display hand cursor for clickable form elements
 * 2. Allow styling of clickable form elements in iOS
 */

button, input[type="button"], input[type="reset"], input[type="submit"] { cursor: pointer; -webkit-appearance: button; }

/*
 * Consistent box sizing and appearance
 */

input[type="checkbox"], input[type="radio"] { box-sizing: border-box; }
input[type="search"] { -moz-box-sizing: content-box; -webkit-box-sizing: content-box; box-sizing: content-box; }

/*
 * Remove inner padding and border in FF3/4
 * www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/
 */

button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; }

/* Remove default vertical scrollbar in IE6/7/8/9 */
textarea { overflow: auto; vertical-align: top; }

/* Colors for form validity */
input:valid, textarea:valid {  }
input:invalid, textarea:invalid { background-color: #f0dddd; }


/* =============================================================================
  Tables
  ========================================================================== */

table { border-collapse: collapse; border-spacing: 0; }


/* =============================================================================
  Primary styles
  Author:
  ========================================================================== */



#splash_container {
width:932px;
height:932px;
background-color:#000;
border:0;
margin:auto;
Outline:none;
float:left;
}

#flag {
background:url(http://www.homelessvetsproject.org/wp-content/uploads/2011/11/flag_extended.jpg) no-repeat;
width:100%;
height:612;
margin:150 0 0 0;
outline:0;
}

#wrapper{
   text-align:left;
   margin:0 auto;
   width: 932px;
   height:auto;
}
   #wrapper #header{
      background:url(img/header2.png) no-repeat;
      height:120px;
      width: 820px;
      padding:0 42px 0 70px;
   }
   #wrapper #header #logo{
      float:left;
      display:inline;
      margin:20px 0 0 0;
      width:160px;
      height:77px;
   }
      #logo a{
         width:160px;
         height:77px;
         display:block;
      }
   #wrapper #header #nav{
      float:right;
      display:inline;
      width:660px;
   }
      #nav #top-nav{
         margin-top:25px;
         float:right;
      }
         #nav #top-nav ul{
            margin:0;
            float:right;
         }
         #nav #top-nav ul li{
            float:left;
            display:inline;
            padding:0 6px;
            border-right:1px #542e08 solid;
         }
         #nav #top-nav ul li a{
            font-size:12px;
            color:#542e08;
            text-decoration:none;
         }
            #nav #top-nav ul li a:hover{
               border-bottom:1px #542e08 solid;
            }
      #nav #bottom-nav{
         margin-top:40px;
         float:right;
      }
         #nav #bottom-nav ul{
            margin:0;
         }
         #nav #bottom-nav ul li{
            float:left;
            display:inline;
            padding:0 7px;
            border-right:2px #5f7354 solid;
         }
            #nav #bottom-nav ul li a{
               font-size:14px;
               font-weight:bold;
               color:#5f7354;
               text-decoration:none;
            }
               #nav #bottom-nav ul li a:hover{
                  border-bottom:1px #5f7354 solid;
               }

   #home-mid-contain{
      width:932px;
      margin-top:-10px;
   }
      #home-mid-contain #banner{
         width:713px;
         height:374px;
         float:left;
         display:inline;
      }
         #home-mid-contain #banner p{
            text-align:center;
         }
         #home-mid-contain #banner a{
            width:713px;
            height:374px;
            display:block;
            text-decoration:none;
         }
      #home-mid-contain #banner-blocks{
         width:219px;
         height:370px;
         float:left;
         display:inline;
      }
         #home-mid-contain #banner-blocks .home-banner-block{
            width:219px;
            height:122px;
            background:url(img/homeBannerBlocks.png) no-repeat;
         }
            #home-mid-contain #banner-blocks .home-banner-block a{
               width:219px;
               height:122px;
               display:block;
            }
            #home-mid-contain #banner-blocks .home-banner-block a#bBlock-One{
               background:url(img/bannerBlockImgs/ourMission.png) no-repeat;
            }
               #home-mid-contain #banner-blocks .home-banner-block a#bBlock-One:hover{
                  background:url(img/bannerBlockImgs/ourMissionOver.png) no-repeat;
               }
            #home-mid-contain #banner-blocks .home-banner-block a#bBlock-Two{
               background:url(img/bannerBlockImgs/stories.png) no-repeat;
            }
               #home-mid-contain #banner-blocks .home-banner-block a#bBlock-Two:hover{
                  background:url(img/bannerBlockImgs/storiesOver.png) no-repeat;
               }
            #home-mid-contain #banner-blocks .home-banner-block a#bBlock-Three{
               background:url(img/bannerBlockImgs/aboutTheHVP.png) no-repeat;
            }
               #home-mid-contain #banner-blocks .home-banner-block a#bBlock-Three:hover{
                  background:url(img/bannerBlockImgs/aboutTheHVPOver.png) no-repeat;
               }
            
            

   #three-feeds{
      width: 865px; /*932*/
      margin:0 auto;

   }
   #three-feeds div{
      width:270px;
      border-right:2px #5f7354 solid;
      margin:0 8px;
   }
   #three-feeds div img.alignright{
      float:right;
      margin:0 0 10px 10px;
   }
   #three-feeds div img.alignleft{
      float:left;
      margin:0 10px 10px 0;
   }
   #three-feeds div img.aligncenter{
      float:none;
      margin:0 25% 10px 25%;
   }
   
   #three-feeds #feed-three{
      border:none;
   }
   #three-feeds div img{
      margin:0 5px 5px 0;
      border:1px #FFF solid;
   }
   #three-feeds div a{
      color:#542e08;
      text-decoration:none;
      border-bottom:1px #542e08 solid;
   }
      #three-feeds div a:hover{
         border:none;
      }
      #three-feeds h2{
         color:#542e08;
         width:133px; /*153*/
         height:36px; /*51*/
         display:block;
         background:url(img/feed-header.png);
         padding:15px 0 0 20px;   
         margin-left:-15px;
      }
      #three-feeds h2:hover{
         color:#6d826c;   
      }
      #three-feeds #feed-one{
         width:254px;
         height:200px;
         padding:0 8px;   
         float:left;
         display:inline;
         color:#FFF;      
      }
      #three-feeds #feed-two{
         width:254px;
         height:200px;
         padding:0 8px;
         float:left;
         display:inline;   
         color:#FFF;      
      }
      #three-feeds #feed-three{
         width:254px;
         height:200px;
         padding:0 8px;
         float:left;
         display:inline;   
         color:#FFF;      
      }

      #default-inside-contain{
         width:880px;
         padding:0 20px 0 32px;
         color:#FFF;
      }
      #breadcrumbs{
         width:932px;
         color:#000;
         margin:-8px 0 0 -35px;
         padding:0;
      }
         #breadcrumbs ul{
            margin:0;
         }
         #breadcrumbs ul li{
            float:left;
            display:inline;
            margin:0 5px 0 0;
         }
            #breadcrumbs ul li a{
               color:#000;
               border-bottom:1px #000 solid;
               text-decoration:none;
            }
            #breadcrumbs ul li a:hover{
               color:#000;
               border:none;
            }
      #inside-header{
         width:924px;
         height:57px;
      }
      #inside-header h1{
         margin-left:-8px;
      }
      #default-inside-colone{
         float:left;
         display:inline;
         background:#FFF;
         min-height:530px;
         width:155px;
         -webkit-border-radius: 10px;
         -moz-border-radius: 10px;
         border-radius: 10px;
         margin-right:30px;
         padding:10px;
      }
      #default-inside-colone ul{
         margin:0;
         padding:0;
         list-style-type:none;
      }
         #default-inside-colone ul li{
            margin:0 0 10px 0;
         }
            #default-inside-colone ul li a{
               color:#542e08;
               text-decoration:none;
               border-bottom:1px #542e08 solid;
            }
               #default-inside-colone ul li a:hover{
                  border:none;
               }
      #default-inside-coltwo{
         float:left;
         display:inline;
         width:675px;
         font-family:Verdana, Geneva, sans-serif;
      }
         #default-inside-coltwo .contentImg{
            width:301px;
            height:232px;
            background:url(img/contentImg.png) no-repeat;
         }
            #default-inside-coltwo img{
               border:none;
               text-decoration:none;
            }
            #default-inside-coltwo img.alignright{
               float:right;
               margin:0 0 10px 10px;
            }
            #default-inside-coltwo img.alignleft{
               float:left;
               margin:0 10px 10px 0;
            }
            #default-inside-coltwo img.aligncenter{
               float:none;
               margin:0 25% 10px 25%;
            }
         
         #default-inside-coltwo a{
            color:#542e08;
            text-decoration:none;
            border-bottom:1px solid #542e08;
         }
            #default-inside-coltwo a:hover{
               border:none;
            }
         #default-inside-coltwo p{
            font-size:11px;
            margin:10px 0;
         }
         #default-inside-coltwo hr{
            border:none;
            border-bottom:2px #FFF solid;
            background:none;
         }
      #default-inside-coltwo h1{
         font-size:22px;
         color:#FFF;
         font-weight:bold;
         margin:10px 0;
      }
      #default-inside-coltwo h2{
         font-size:18px;
         color:#FFF;
         font-weight:bold;
         margin:10px 0;
      }
      #default-inside-coltwo h3{
         font-size:16px;
         color:#FFF;
         font-weight:bold;
         margin:10px 0;
      }
      #default-inside-coltwo h4{
         font-size:14px;
         color:#FFF;
         font-weight:bold;
         margin:10px 0;
      }
      #default-inside-coltwo ol, #default-inside-coltwo ul{
         color:#542e08;
      }

   #footer{
      border-top:2px #FFF solid;
      padding-top:5px;
      margin-top:15px;
      color:#FFF;
   }
   #footer ul{
      text-align:center;
   }
   #footer p{
      text-align:center;
   }
   #footer ul li{
      display:inline;
      list-style:none;
      margin:0 5px;
   }
   #footer ul li a{
      color:#FFF;
      text-decoration:none;
      border-bottom:1px #FFF solid;
   }
      #footer ul li a:hover{
         border:none;
      }




/* =============================================================================
  Non-semantic helper classes
  Please define your styles before this section.
  ========================================================================== */

/* For image replacement */
.ir { display: block; text-indent: -999em; overflow: hidden; background-repeat: no-repeat; text-align: left; direction: ltr; }
.ir br { display: none; }

/* Hide for both screenreaders and browsers:
  css-discuss.incutio.com/wiki/Screenreader_Visibility */
.hidden { display: none; visibility: hidden; }

/* Hide only visually, but have it available for screenreaders: by Jon Neal.
  www.webaim.org/techniques/css/invisiblecontent/  &  j.mp/visuallyhidden */
.visuallyhidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }

/* Extends the .visuallyhidden class to allow the element to be focusable when navigated to via the keyboard: drupal.org/node/897638 */
.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; }

/* Hide visually and from screenreaders, but maintain layout */
.invisible { visibility: hidden; }

/* Contain floats: nicolasgallagher.com/micro-clearfix-hack/ */
.clearfix:before, .clearfix:after { content: ""; display: table; }
.clearfix:after { clear: both; }
.clearfix { zoom: 1; }



/* =============================================================================
  PLACEHOLDER Media Queries for Responsive Design.
  These override the primary ('mobile first') styles
  Modify as content requires.
  ========================================================================== */

@media only screen and (min-width: 480px) {
  /* Style adjustments for viewports 480px and over go here */

}

@media only screen and (min-width: 768px) {
  /* Style adjustments for viewports 768px and over go here */

}


/* =============================================================================
  Print styles.
  Inlined to avoid required HTTP connection: www.phpied.com/delay-loading-your-print-css/
  ========================================================================== */
 
@media print {
  * { background: transparent !important; color: black !important; text-shadow: none !important; filter:none !important; -ms-filter: none !important; } /* Black prints faster: sanbeiji.com/archives/953 */
  a, a:visited { color: #444 !important; text-decoration: underline; }
  a[href]:after { content: " (" attr(href) ")"; }
  abbr[title]:after { content: " (" attr(title) ")"; }
  .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; }  /* Don't show links for images, or javascript/internal links */
  pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
  thead { display: table-header-group; } /* css-discuss.incutio.com/wiki/Printing_Tables */
  tr, img { page-break-inside: avoid; }
  img { max-width: 100% !important; }
  @page { margin: 0.5cm; }
  p, h2, h3 { orphans: 3; widows: 3; }
  h2, h3{ page-break-after: avoid; }
}

Epyk MD

Epyk MD

Was that all of it?

Chewy

Chewy

As far as the CSS, yeah.

There's about 10 PHP files in the editor though.

Epyk MD

Epyk MD

Ahh.

I don't think thersles much that can be done with out editing your pup than.

Sponsored content



Back to top  Message [Page 1 of 1]

Permissions in this forum:
You cannot reply to topics in this forum