PDA

View Full Version : Breadcrumb Menu Border?


Peter Cook
09-03-2016, 02:36 PM
Hi guys

I have been away from programming VB for a while and for the life of me cannot remember, how to remove the border around the breacrumb dropdown menu! I am getting a little bit of a headache now lol

If anyone can help with this basic question I would be so grateful! :confused:

Regards
Peter

MarkFL
09-03-2016, 02:51 PM
Can you provide a ink to your site? Then I can likely give you a CSS selector to remove the border. :)

Peter Cook
09-03-2016, 02:58 PM
I am only now starting on it again from scratch, so it's not up and running as such, http://www.setiweb.space/activity.php

MarkFL
09-03-2016, 03:03 PM
I don't see a border around your breadcrumb. Can you also post a screenshot with an indicator of the border you wish to remove?

Peter Cook
09-03-2016, 03:11 PM
See the image!

https://vborg.vbsupport.ru/external/2016/09/16.png

MarkFL
09-03-2016, 03:54 PM
Try this:

#navtabs .popupmenu ul {
border: 0 none;
height: auto;
margin: -2px;
}

Peter Cook
09-03-2016, 04:01 PM
To where would that be added?

--------------- Added 1472925885 at 1472925885 ---------------

Ah haha I just remembered where it was in the Style variable editor! Thanks for your help :)

webmastersun
09-05-2016, 12:11 AM
To where would that be added?

--------------- Added 1472925885 at 1472925885 ---------------

Ah haha I just remembered where it was in the Style variable editor! Thanks for your help :)

You can do that there or adding into additional.css as an another option.

Good luck!