ericvorheese
Forum Replies Created
-
Forum: Plugins
In reply to: Turn a file into a pluginOr can we modify a current htaccess plugin (like bulletproof security) to setup our htaccess file by default, and upload that to all the blogs?
Forum: Fixing WordPress
In reply to: Stupid QuestionHey falleri, I tried ur code but all it did was split the nav bar into 2 lines with tabs separated into each.
Here’s the css from my stylesheet for the menu –
/* =Menu
————————————————————– */#access {
margin-top:-1px;
margin-bottom:20px;
}
.skip-link {
display:none;
}
#menu {
padding:7px 0 8px 0;
overflow:hidden; /* clears the inner float */
}
#menu ul {
margin:0;
list-style:none;
clear:both;
}
#menu ul ul {
display:none;
}
#menu li {
display:inline;
}
#menu a {
display:block;
float:left;
margin:-10px 10px 0 0;
padding:1px 6px;
background:#000;
color:#fff;
text-decoration:none;
}
#menu a:hover {
background:#5C9BD1;
color:#fff;
border-color:#002BFF;
}
#menu .current_page_item a {
background:#5C9BD1;
color:#fff;
border-color:#002BFF;
}
#menu a:focus {
background:#4887BD;
color:#fff;
border-color:#2772B3;
}Here’s the php from my header.php for the div = menu –
<div id="menu"> <ul> <li class="page_item"><a href="https://xyz.com" title="About">About</a></li> <li class="page_item"><a href="https://xyz.com" title="Home">Home</a></li> <li class="page_item"><a href="https://xyz.com" title="Contact">Contact</a></li> </ul> </div>
Forum: Fixing WordPress
In reply to: Stupid QuestionThanks falleri! I will try this out right now and if it doesn’t work, I will provide the css code for the menu part
Much appreciated ??
Forum: Fixing WordPress
In reply to: Stupid QuestionI tried that in the style css, but all the tab properties are defined under one element – as ‘menu’. So changing the font-size under menu changes the font for all tabs. Similarly, when i try margins/padding, the entire menu moves as one block.
Thats why i wanted to edit via the header.php where I get to define links/titles for each individual tab within the menu.
For ex.
<li class="page_item"><a href="https://telugucinematoday.com" title="About">About</a></li>
I tried adding spaces after ‘About’ (
>About</a></li>
), but it doesn’t do anything – just like it isn’t doing anything here!Can I add something after the ‘About’ to get more space between this tab and the next?
Forum: Fixing WordPress
In reply to: Tabs in Nav BarI am using Thematic. Its a fantastic wordpress theme that hasn’t given me any real toruble so far, except for this.
Anyone? any help?