Wordpress Themes - WP Forum at BFA
There will be no more development for Atahualpa (or any other theme), and no support. Also no new registrations. I turned off the donation system. I may turn the forum to read only if it gets abused for spam. Unfortunately I have no time for the forum or the themes. Thanks a lot to the people who helped in all these years, especially Larry and of course: Paul. Take care and stay healthy -- Flynn, Atahualpa developer, Sep 2021

Wordpress Themes - WP Forum at BFA » WordPress Themes » Atahualpa 3 Wordpress theme » Page & Category Menu Bars »

Category/Page Bar borders


  #1  
Old Oct 11, 2012, 09:02 AM
Todd
 
10 posts · Oct 2012
Lancaster, PA
I would like to change my borders so that they are only showing on the sides of the category name. I noticed that the options only allow you to have a full border, however I only want a border on the sides of each category/page title.

I have tried various ways of using the html/css inserts but have gotten no where. When I've tried that it has either stayed the same as the options has selected (full border) or (if i clear those options) then there is no border at all.
  #2  
Old Oct 11, 2012, 09:07 AM
lmilesw's Avatar
lmilesw
 
10,176 posts · Jul 2009
Central New York State USA
You can use a tool like Firebug with Firefox to determine the class of the item you want a left and right border on and then put the CSS in the CSS Inserts box.
__________________
~Larry (CNY Web Designs)
This site should be a membership site since it so full of good stuff.
Please consider donating which gives you access to even more good stuff.
  #3  
Old Oct 11, 2012, 09:42 AM
Todd
 
10 posts · Oct 2012
Lancaster, PA
I attempted this first:

Code:
div#menu1 {
	border-top-style:dotted #3ABB32;
	border-right-style:solid #000;
	border-bottom-style:dotted #3Abb32;
	border-left-style:solid #000;

}
It did not make any changes to the appearance. The #3abb32 is the background color of the page menu itself.
  #4  
Old Oct 11, 2012, 09:50 AM
Todd
 
10 posts · Oct 2012
Lancaster, PA
Then attempted:

Code:
div#menu1 ul.rMenu {
	border-top-style:solid;
	border-top-color:#3ABB32;
	border-right-style:solid 
	border-right-color:#000000;
	border-bottom-style:dotted 
	border-bottom-color: #3Abb32;
	border-left-style:solid 
	border-left-style:#000000;

}
This also changed nothing.
  #5  
Old Oct 11, 2012, 03:17 PM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
what is the url?
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
  #6  
Old Oct 11, 2012, 03:27 PM
Todd
 
10 posts · Oct 2012
Lancaster, PA
http://www.premiersoccerchat.com

I'm currently using a different theme and using the TestDrive plugin to configure Atahualpa before going live with the change.
  #7  
Old Oct 11, 2012, 04:02 PM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
you should think of building a test site as a subdomain where you can play with things. without seeing what you are trying there is not much advice I can give.
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
  #8  
Old Oct 11, 2012, 04:06 PM
Todd
 
10 posts · Oct 2012
Lancaster, PA
I'm not sure I even know how to go about setting up a subdomain, at least not quickly and easily.
  #9  
Old Oct 11, 2012, 04:40 PM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
Depending on the host, it can be quite easy.
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
  #10  
Old Oct 11, 2012, 05:44 PM
Todd
 
10 posts · Oct 2012
Lancaster, PA
Subdomain is set up, but it sounds incredibly complicated trying to get it all out as a test site to be seen.
Guess it's back to the trial and error for hours and hours until i get fed up with ata again and try some other theme.
  #11  
Old Oct 11, 2012, 06:18 PM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
Once you install wp it's easy to get to. Say your domain is xyz.com and you set up the sub domain as demo. To get to it you just use demo.xyz.com
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
  #12  
Old Oct 11, 2012, 06:45 PM
lmilesw's Avatar
lmilesw
 
10,176 posts · Jul 2009
Central New York State USA
You don't have a border width indicated and you can't mix a color with a style using the border style code. Also instead of seperate CSS lines for each border attribute you can use border shorthand. Here is what I would use per your first example.
HTML Code:
div#menu1 {
	border-top: 1px dotted #3ABB32;
	border-right: 1px solid #000;
	border-bottom: 1px dotted #3Abb32;
	border-left: 1px solid #000;
}
You may also have to add !important to the CSS in case other CSS needs to be overwritten. For example.
HTML Code:
div#menu1 {
	border-top: 1px dotted #3ABB32 !important;
	border-right: 1px solid #000 !important;
	border-bottom: 1px dotted #3Abb32 !important;
	border-left: 1px solid #000 !important;
}
__________________
~Larry (CNY Web Designs)
This site should be a membership site since it so full of good stuff.
Please consider donating which gives you access to even more good stuff.
  #13  
Old Oct 11, 2012, 07:19 PM
Todd
 
10 posts · Oct 2012
Lancaster, PA
the subdomain is setup as http://test.premiersoccerchat.com

I fixed the menus to the way I wanted them, now just need to figure out how to setup a third menu as a widget and get it to be listed identically to the way the other two menus are.
  #14  
Old Oct 11, 2012, 08:36 PM
Todd
 
10 posts · Oct 2012
Lancaster, PA
Since I fixed the menus to the way I wanted them I just went live with the page.

Just working on trying to get a header above the logo (using a top sidebar widget, somehow, don't know how yet) to have some additional info (about, etc) but want it looking like my other menus.

also attempting to get the footer links to be separated into columns so I can have a page column and a category column.

http://www.premiersoccerchat.com

For the menus I used the shorthand code and eventually figured out which css code section i needed to change.

Bookmarks



Similar Threads
Thread Thread Starter Forum Replies Last Post
Page bar, weird borders Rarabou Page & Category Menu Bars 1 Oct 4, 2010 10:02 AM
Adding borders to page bar nycscout Header configuration & styling 1 May 31, 2010 07:39 PM
How to get rid of dashed borders around page and category menus, v. 3.5.1 paulae Page & Category Menu Bars 4 May 30, 2010 12:03 PM
[SOLVED] New homepage widgets areas: borders persist on every page lhanft Sidebars & Widgets 2 Oct 11, 2009 09:14 PM


All times are GMT -6. The time now is 09:43 PM.


Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.