• I need to make the following global changes to https://whartonhcc.org/ and would appreciate any help:

    1. Remove the RSS feed from the nav menu
    2. Remove the extra nav menu box where RSS feed existed
    3. Edit template to allow right table border
    4. Any way to remove the white grid line between table cells on the home page and Meet the Officers page?
    5. These changes effect all pages of the website. On the Career page, https://whartonhcc.org/career/, I have the following code input, but my cell borders are not appearing:

      <table width="100%" cellpadding="0" cellspacing="0">
      	<tr>
      		<td style="background-color: #adcae0;" border="1" bordercolor="#000066" width="250" ><p><strong>Recent employers include:</strong></p>
      <ul><li>Abbott Laboratories</li>
      <li>Amgen</li>
      <li>Athenahealth</li>
      <li>Boston Consulting Group</li>
      <li>Credit Suisse</li>
      <li>CVS Caremark</li>
      <li>Deloitte Consulting Genentech</li>
      <li>Humana</li>
      <li>Johnson & Johnson McKesson</li>
      <li>McKinsey & Company</li>
      <li>Medtronic</li>
      <li>Novartis</li>
      <li>Pfizer</li>
      <li>SR One</li>
      </ul></td>
      		<td width="5" > </td>
      		<td style="background-color: #adcae0;" border="1" bordercolor="#000066" ><p><strong>On-site Company Visits:</strong> Members of the Health Care Club are often instrumental in helping to coordinate visits to health care specific companies during the regional Job Treks / Day-on-the-Jobs. Fall 2010 treks visited Boston, New York, Philadelphia, and San Francisco.</p>
      
      <p><strong>Company Coffee Chats and Info Sessions: </strong>The Health Care Club career chairs work with company recruiters and representatives to plan coffee chats near campus exclusively for Health Care Club members.</p>
      
      <p><strong>Resume Reviews:</strong> The Health Care Club coordinates resume reviews for first year students interested in resume advice from second year Wharton students who have recently returned from summer internships.</p>
      
      <p><strong>Interview Preparation:</strong> The Health Care Club compiles company overviews in addition to industry and company-specific interview questions. Members have access to all current and past material. Second year students are widely available with advice. The Health Care Club coordinates interview prep groups for those with common career interests. In these small groups, members share interview tips, industry experiences, industry trends.</p>
      
      <p><strong>Mock Interviews:</strong> The Health Care Club offers mock interview services by experienced second years for those first and second year club members seeking additional practice and feedback.</p>
      <p> <br></p>
      </td>
      	</tr>
      </table>

      I think those are my only issues before I can finalize the website. Any assistance you can provide is greatly appreciated.

      Thanks,
      Brandy

Viewing 12 replies - 1 through 12 (of 12 total)
  • Thread Starter brandyd2011

    (@brandyd2011)

    I have completed item #1, but I still need to get rid of the extra box in the nav menu that contained RSS feed.

    1. The first thing you will have to do is find where the RSS is being called i would guess that it may be in your header file or your index. its hard to say without seeing the actual template however the easiest way would be to look for <div class="rss" > ... </div>. the inside probably has this php function

    https://codex.www.ads-software.com/WordPress_Feeds

    if you just delete from the start to end div that should remove the rss link.

    2. I assume you are referring to the Breadcrumb that looks like “Home > Career” this is probably located within your index or page files again hard to say without seeing the actual theme files but it should be positioned in a <div class="breadcrumb"> ... </div> again simply deleting from the start to end div tags will remove this.

    3. looking at this it looks like you have a border however it #FFFFFF which is white so it is blending in with your background.
    I would probably use the following css

    border-right: 1px solid #00000ff the first number is the width of the border the second is the style and final is the color.

    4. the grid lines because you are using tables are structural (basically an empty table cell) so to get rid of it the easiest would be to use a custom template file.

    https://codex.www.ads-software.com/Template_Hierarchy

    this will help you create a template file only called at certain times

    creating this file and then tweaking the table to collapse or remove the td with width 5 should resolve this.
    page-{slug}.php

    hope this helps.

    Thread Starter brandyd2011

    (@brandyd2011)

    Item #2 is also complete. I only need help adding the right table border to the template.

    Thanks!

    Thread Starter brandyd2011

    (@brandyd2011)

    Thanks, aphill. I was able to remove the RSS feed and adjust the nav menu width to remove the extra box.

    Where would I add the CSS in the style.css file? The code is pasted below:

    /*
    ------------------------------------------------------------------------
    Theme Name: 	WP Remix
    Author URI:		https://www.premiumthemes.net/
    Description:   	The WordPress Master Theme. One Theme, Many Possiblities
    Version:       	3.0
    Author:        	R5 Ltd And R.Bhavesh
    Author URI:    	https://www.r5ltd.co.uk and https://cssace.com
    ------------------------------------------------------------------------
    
    Support:       WP Remix, https://wpremix.com/support
    Updated:       June 11, 2009
    Copyright:     (c) 2009 WP Remix
    
    All rights reserved.
    */
    
    @import url("css/misc.css");		/* css reset - do not edit this */
    @import url("css/dropmenu.css");	/* styling dropdown menu */
    @import url("css/homepages.css");	/* styling homepage templates */
    @import url("css/innerpages.css");	/* styling innerpage templates */
    @import url("css/blog-common.css");		/* styling blog */
    @import url("css/header.css");		/* header option styling blog */
    @import url("css/sidebars.css");		/* styling blog */
    @import url("css/footer.css");		/* footer option */
    @import url("css/blog.css");		/* styling blog */
    @import url("css/color-default.css");		/* styling color schemes css  */
    
    body {
    text-align:center;
    font: 12px Arial, Helvetica, sans-serif;
    }
    /* Links -----------------------------------------------------------------------*/
    a {
    outline:none;
    }
    ul {
    list-style:none;
    }
    .clear {
    clear:both;
    }
    .bold {
    font-weight:bold;
    }
    p.aright {
    text-align:right;
    }
    .italic {
    font-style:italic;
    }
    /* section alignment --------- */
    
    .alignleft {
    float:left;
    }
    .alignright {
    float:right;
    }
    /* image alignment left, right & center --------- */
    
    .imgleft {
    float:left;
    margin:0 12px 12px 0;
    padding:3px;
    }
    .imgright {
    float:right;
    margin:0 0 12px 12px;
    padding:3px;
    }
    .imgleft_n {
    float:left;
    margin:0 40px 12px 0;
    padding:3px;
    }
    .img_center {
    margin:10px 0;
    padding:5px;
    }
    code {
    font-size:12px;
    }
    /* blog & content css common ---------------------------------------------------- */
    
    h1 {
    font-size:28px;
    font-weight:400;
    margin:0 0 12px;
    padding:0 0 5px;
    }
    h2 {
    font-size:22px;
    font-weight:400;
    margin:0 0 8px;
    padding:0;
    }
    h2 a {
    text-decoration:none;
    }
    h2 a:hover {
    text-decoration:none;
    }
    h3 {
    font-size:18px;
    font-weight:400;
    margin:0 0 10px;
    padding:0;
    }
    h4 {
    font-size:16px;
    font-weight:700;
    margin:15px 0 5px;
    padding:0 0 5px;
    }
    h5 {
    font-size:14px;
    font-weight:700;
    margin:0 0 10px;
    padding:0;
    }
    h6 {
    font-size:12px;
    font-weight:700;
    margin:5px 0;
    padding:0 0 5px;
    }
    p {
    font-size:12px;
    line-height:18px;
    margin:0 0 12px;
    }
    p a {
    text-decoration:none;
    }
    
    ul {
    font:12px Arial, Helvetica, sans-serif;
    margin:0 0 15px 6px;
    padding:0;
    }
    ul li ul {
    margin:8px 0 5px;
    padding:0;
    }
    ol {
    line-height:18px;
    font-size:12px;
    background:none;
    margin:0 0 0 5px;
    padding:0 0 10px 20px;
    }
    ol li {
    background:none;
    list-style-type:decimal;
    margin:0 0 5px;
    padding:0;
    }
    ol li ol {
    margin:8px 0 5px 24px;
    padding:0;
    }
    blockquote {
    	background:url(images/quote2.png) no-repeat;
    	background-position:5px 8px;
    	margin-bottom:10px;
    	font:bold 12px Arial, Helvetica, sans-serif;
    	line-height:18px;
    	padding:5px 0px 5px 30px;
    	margin-bottom:10px;
    }
    blockquote p { font:bold 12px Arial, Helvetica, sans-serif;  }
    .clientname {
    	font-size:11px; font-weight:normal; color:#666;
    	margin-bottom:12px;
    }
    
    li,ul li ul li {
    line-height:18px;
    margin:0 0 5px;
    padding:0 0 0 12px;
    }
    /* instruction elements -------------------------------------- */
    address {
    font-style:italic;
    }
    p.alert,p.download,p.info,p.note {
    margin:10px 0 0;
    padding:10px 10px 10px 36px;
    }
    p.alert {
    padding:10px 10px 10px 36px;
    }
    
    /* STRUCTURE ----------------------------------*/
    #header {
    height:80px;
    margin:0 auto;
    }
    #content-wrap {
    overflow:hidden;
    height:100%;
    }
    #wrapper {
    text-align:left;
    width:840px;
    margin:0 auto;
    padding:0 10px;
    overflow:hidden;
    height:100%;
    }
    #main {
    overflow:hidden;
    clear:both;
    }
    #main .subcolumns {
    width:400px;
    }
    #content {
    width:820px;
    padding-bottom:10px;
    }
    #content2 {
    width:820px;
    }
    #content, #content2 {
    float:left;
    }
    #sidebar {
    width:0px;
    margin-bottom:15px;
    }
    #sidebar2 {
    width:0px;
    margin-bottom:15px;
    }
    #sidebar, #sidebar2 {
    float:right;
    }
    
    #footer {
    clear:both;
    overflow:hidden;
    text-align:left;
    height:100%;
    width:840px;
    margin:0 auto;
    padding:5px 10px;
    }
    #sidebar span {
    font-size:12px;
    }
    #content .subcolumns,#sidebar .subcolumns {
    width:280px;
    }
    /* Header Section  ----------------------------------*/
    #header .logo {
    font:25px "Arial Black", Arial, Helvetica, sans-serif;
    color:#fff;
    margin-top:5px;
    text-transform:uppercase;
    float:left;
    }
    #header .h_left {
    float:left;
    /*width:320px;*/
    }
    #header .description {
    font:12px Arial, Helvetica, sans-serif;
    clear:both;
    margin-top:-5px;
    }
    /* ------------------------------  footer ---------------------------------------  */
    
    #footer p {
    font-size:12px;
    line-height:20px;
    float:left;
    font-family:Arial, Helvetica, sans-serif;
    margin:5px 0;
    padding:0;
    }
    #footer span {
    margin-top:-8px;
    font-size:11px;
    padding-left:1px;
    }
    #footer span a {
    text-decoration:none;
    }
    #footer span a:hover {
    text-decoration:none;
    }
    #flinks {
    list-style:none;
    float:right;
    }
    #flinks li {
    display:inline;
    line-height:26px;
    text-align:right;
    padding:0 5px;
    }
    #flinks li a {
    font-size:11px;
    text-decoration:none;
    }
    #flinks li a:hover {
    display:inline;
    }
    /* TOP SEARCH FORM -----------------------------------------------------------------------*/
    #search {
    float:right;
    margin-top:20px;
    width:205px;
    height:21px;
    padding:2px 0 0 15px;
    }
    * html #search {
    width:208px;
    overflow:hidden;
    }
    #search .s {
    font:12px Arial, Helvetica, sans-serif;
    width:170px;
    float:left;
    margin-right:5px;
    padding:2px;
    }
    #searchform .sgo {
    width:26px;
    height:23px;
    margin:-2px 0 0;
    }
    /* Root = Horizontal, Secondary = Vertical ------------------------------------------------ */
    
    #nav {
    width:782px;
    height:28px;
    position:relative;
    margin:0 auto 5px;
    }
    
    /* breadcrumb start -----------------------------------------------------------------------*/
    
    #content-wrap .breadcrumb{
    font:10px Arial, Helvetica, sans-serif;
    text-transform:uppercase;
    text-align:left;
    clear:both;
    line-height:25px;
    padding-left:5px;
    margin-bottom:10px;
    }
    a.button {
    margin-bottom:8px;
    font-weight:700;
    font-size:12px;
    padding:3px 15px 3px 10px;
    }
    
    .submit {
    margin-bottom:8px;
    font-weight:700;
    font-size:12px;
    cursor:pointer;
    padding:3px 15px 3px 10px;
    }
    .postads {
    text-align:center;
    overflow:hidden;
    height:100%;
    margin-bottom:25px;
    }
    .small { font-size:11px; color:#666; }
    .small a { color:#666; }
    .small a:hover { color:#000; }
    
    /*------- Demo  ---------*/
    
    #demotop { background:#000; height:50px; overflow:hidden; }
    #demotop-in { width:860px; margin:0 auto;  }
    #demotop-in h5 { float:left; font:bold 14px Georgia, "Times New Roman", Times, serif; color:#fff; margin:0; padding:8px 0 0 0; }
    #demotop-in p { font-size:11px; color:#9f9f9f; clear:both;  float:left; }
    
    .img_button {
    	position:relative;
    	display:block;
    	font-size:12px;
    }
    .img_button span {
    	height:100%;
    	width:100%;
    	position:absolute;
    	bottom:0;
    	left:0;
    	cursor:pointer;
    }
    .img_button span a {
    	display:block;
    }
    
    .b_purchasedownload2 {
    	top:9px;
    	right:0;
    	float:right;
    }
    .b_purchasedownload2 span, .b_purchasedownload2 span a {
    	background:url(images/b_purchasedownload2.png) no-repeat;
    }
    .b_purchasedownload2 span a, .b_purchasedownload2 {
    	width:190px;
    	height:32px;
    }
    .b_purchasedownload2 span:hover {
    	background-position:0 -32px;
    }
    
    /* NEW 2.7 */
    .thread-alt {
    	background-color: #f8f8f8;
    }
    .thread-even {
    	background-color: white;
    }
    .depth-1 {
    border: 1px solid #ddd;
    }
    
    .even, .alt {
    
    	border-left: 1px solid #ddd;
    }
    .commentlist li ul li {
    	font-size: 1em;
    }
    #commentform {
    	margin: 5px 10px 0 0;
    	}
    #respond:after {
    		content: ".";
    	    display: block;
    	    height: 0;
    	    clear: both;
    	    visibility: hidden;
    	}
    .commentlist li ul li {
    	margin-right: -5px;
    	margin-left: 10px;
    }
    .children { padding: 0; }

    Thanks for your help.

    Brandy

    Ok to put the css into the css file we will need to add a class to the <td> that you want the border on so that we can target it.

    so go to whatever <td> you want and add class="border-right" to the td element.

    now at the very bottom of your css file add the following line.

    td.border-right{border-right: 1px solid #0000ff;}

    the td tells the css we want a td and the . means class all the td’s with class border right will then have a right border of whatever you specify the settings to be.

    Hope that makes sense

    Thread Starter brandyd2011

    (@brandyd2011)

    Thanks. I added the line to the CSS file and added the class to the td element on the homepage, however I still don’t have a border.

    What page and element are you trying to add it to?

    I am looking on the career page and can’t find the new class.

    Thread Starter brandyd2011

    (@brandyd2011)

    I’m on the homepage, https://whartonhcc.org/.

    <table border="1" bordercolor="#000066" style="background-color:#ADCAE0" width="100%" cellpadding="0" cellspacing="0">
    	<tr>
    		<td class="border-right"><p>The Health Care Club organizes professional, academic, and social activities for all Wharton graduate students who are interested in exploring opportunities in the health care, pharmaceutical, biotechnology, IT, services, and medical device organizations.  Members share their curiosity and experiences regarding current issues facing hospitals, physicians, managed care, industry, financers, government, and more.</p>
    </td>
    </tr>
    <table border="1" bordercolor="#000066" style="background-color:#ADCAE0" width="100%" cellpadding="3" cellspacing="0">
    	<tr>
    		<td class="border-right"><p>Annual Events Include:</p><p><ul>
    	<li>Industry Focused Small Group Lunches and Dinners</li>
    	<li>HCC Exclusive Dinners and Coffee Chats with Companies across the Industry</li>
    	<li>Career Treks</li>
    	<li>Opportunities to Observe Surgeries at Penn Hospital</li>
    	</ul></p></td>
    		<td><p><ul>
    <li>Lunch and Learn Series with Alumni</li>
    	<li>Speaker Series with Industry Professionals</li>
    	<li>Resume and Interview Prep</li>
    	<li>Annual Booze Cruise, Holiday Party, happy hours and other social events!</li>
    </ul></p></td>
    	</tr>
    </table>
    
    <table border="0" bordercolor="" style="background-color:#000066" width="100%" cellpadding="3" cellspacing="3">
    	<tr>
    		<td class="border-right"><center><a href="https://whartonhcc.org/wp-content/uploads/2011/01/stent_v1.jpg"><img class="size-full wp-image-333 aligncenter" title="stent_v1" src="https://whartonhcc.org/wp-content/uploads/2011/01/stent_v1.jpg" alt="" width="249" height="192" /></a></center></td>
    		<td><center><a href="https://whartonhcc.org/wp-content/uploads/2011/01/dna_v1.jpg"><img class="size-full wp-image-333 aligncenter" title="dna_v1" src="https://whartonhcc.org/wp-content/uploads/2011/01/dna_v1.jpg" alt="" width="249" height="192" /></a></center></td>
    		<td><center><a href="https://whartonhcc.org/wp-content/uploads/2011/01/ecg_v1.jpg"><img class="size-full wp-image-333 aligncenter" title="ecg_v1" src="https://whartonhcc.org/wp-content/uploads/2011/01/ecg_v1.jpg" alt="" width="249" height="192" /></a></center></td>
    	</tr>
    </table>

    My bad i read too fast.

    add #content before the line i gave you

    #content td.border-right{border-right: 1px solid #0000ff;}

    Thread Starter brandyd2011

    (@brandyd2011)

    OK. Thanks, that worked. I just need to add the element on the other pages.

    On the career page, I want the border to be left, right, top and bottom. I had to add a center column that’s blank, so I can’t put the border on the entire table. Should I add the same td.border for left, top and bottom to the css?

    if you do a

    #content td.border{border: 1px solid #0000ff}

    that will put all four borders on the element you give class=”border”

    Thread Starter brandyd2011

    (@brandyd2011)

    Perfect. Thanks so much.

Viewing 12 replies - 1 through 12 (of 12 total)
  • The topic ‘Need help tweaking template’ is closed to new replies.